{"info":{"_postman_id":"e65e6c07-11eb-4b28-8c68-9cd02c58dcfc","name":"Collabor8 Subsurface Unified API ","description":"<html><head></head><body><h1 id=\"collabor8-subsurface-unified-apis\">Collabor8 Subsurface Unified API's</h1>\n<p>The following test suite demonstrates the usage of the unified API as exposed through Azure. This package describes the most common usages for the new API.</p>\n<p>Usage of the Unified API's is a two-fold operation where it starts with authentication using OAUTH2 and then the token as recieved from this operation is used to authenticate the subsequent calls.</p>\n<p>Some key signatures of the Collabor8 Subsurface unified API's are:</p>\n<ul>\n<li>All API's follows a restful approach where file handling if needed is done using standard form based file posts.</li>\n<li>All API's uses OAUTH2 for authentication and required a bearer token specified in the http headers.</li>\n<li>All API's relating to validation and publishing of standard report data, used the same service url and different data types are distinguished using different report type headers.</li>\n<li>All API's that involves publishing of physical report files utilises form based file upload</li>\n<li>All API's relating to querying uses <a href=\"https://graphql.org\">GraphQL</a> as a standard technology driver</li>\n</ul>\n<h2 id=\"how-this-documentation-suite-is-built-up\">How this documentation suite is built up</h2>\n<p>The documentation test suite is built up using example of common operations. If you see that you are missing some obvious example of things you would like to have documented or have example of e.g. \"How to query for data X?\" plase do not hesitate to contact us at <a href=\"https://mailto:ep-domain@norog.no\">ep-domain@norog.no</a>.</p>\n<h3 id=\"generic\">Generic</h3>\n<p>All examples and documentation is built up to be fully testable including examples of request and expected response from the system. All examples builts on real live interaction with the system, hence the example of responses coming back is expected response from a live system.</p>\n<h3 id=\"authentication\">Authentication</h3>\n<p>This section describes common operations associated with needed authentication to use all services. All other examples of requests has a prerequisite that the user is authentication.</p>\n<h3 id=\"publishing-and-validating---daily-production-reports\">Publishing and validating - Daily Production Reports</h3>\n<p>Description of how to publish and validate daily production reports. All samples requires that authentication has been done first.<br>Calling the Validation service will only validate that the report is valid without storing it.</p>\n<h3 id=\"publishing-and-validating---monthly-production-reports\">Publishing and validating - Monthly Production Reports</h3>\n<p>Description of how to publish and validation monthly production reports. All samples requires that authentication has been done first.<br>Calling the Validation service will only validate that the report is valid without storing it.</p>\n<h3 id=\"publishing-and-validating---daily-drilling-reports\">Publishing and validating - Daily Drilling Reports</h3>\n<p>Description of how to publish daily drilling report. All samples requires that authentication has been done first.<br>Calling the Validation service will only validate that the report is valid without storing it.</p>\n<h3 id=\"querying-for-data\">Querying for data</h3>\n<p>Example how to query for different types of data.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Collabor8 Subsurface Unified API's","slug":"collabor8-subsurface-unified-apis"}],"owner":"6729398","collectionId":"e65e6c07-11eb-4b28-8c68-9cd02c58dcfc","publishedId":"SWLh5mUj","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"38D430"},"publishDate":"2024-09-18T05:24:41.000Z"},"item":[{"name":"Authentication","item":[{"name":"Get AAD token - Succesful authentication","event":[{"listen":"test","script":{"id":"dc505307-d2df-498d-85ed-c2563e017918","exec":["pm.globals.set(\"bearerToken\", pm.response.json().access_token);"],"type":"text/javascript"}}],"id":"816d5484-7a65-4e11-857a-e13081e81062","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","type":"text","value":"client_credentials"},{"key":"client_id","type":"text","value":"{{Azure-Client-Id}}"},{"key":"client_secret","type":"text","value":"{{Azure-Client-Secret}}"},{"key":"resource","type":"text","value":"{{ResourceId-Azure}}"}]},"url":"https://login.microsoftonline.com/{{TenantId-Azure}}/oauth2/token","description":"<p>The following is a sample of a succesful authentication against the Unified Azure API.</p>\n<p>The request requires the following to be placed in the http header following standard OAUTH2 mechanisms and specification.</p>\n<ul>\n<li>client_id</li>\n<li>grant_type</li>\n<li>client_secret</li>\n<li>resource</li>\n</ul>\n<p>The http request should be a post with the above http parameters filled out against the url: <a href=\"https://login.microsoftonline.com/%7B%7BTenantId-Azure%7D%7D/oauth2/token\">https://login.microsoftonline.com/{{TenantId-Azure}}/oauth2/token</a>. Where the {{TenantId-Azure}} is supplied from Norsk olje og gass.</p>\n<p>In the sample request below things marked in <strong>{{Value}}</strong> e.g. <strong>{{Azure-Client-Id}}</strong> is entries that should be replaced by values as supplied from Norsk olje og gass.</p>\n<p>The request that comes back if authentication is succesful will contain an access_token (see example response) that can be used for subsequent authentication against the actual API's and then this should be supplied as a bearer token the http header for calls for exposed services.</p>\n","urlObject":{"protocol":"https","path":["{{TenantId-Azure}}","oauth2","token"],"host":["login","microsoftonline","com"],"query":[],"variable":[]}},"response":[{"id":"772e724b-231f-4400-9d6d-4ccf81faabbe","name":"Get AAD token - Succesful authentication","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","type":"text","value":"client_credentials"},{"key":"client_id","type":"text","value":"XXX"},{"key":"client_secret","type":"text","value":"XXX"},{"key":"resource","type":"text","value":"X"}]},"url":"https://login.microsoftonline.com/{{TenantId-Azure}}/oauth2/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-ms-request-id","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"token_type\": \"Bearer\",\n    \"expires_in\": \"3600\",\n    \"ext_expires_in\": \"3600\",\n    \"expires_on\": \"1574107996\",\n    \"not_before\": \"1574104096\",\n    \"resource\": \"RESOURCEID\",\n    \"access_token\": \"CCCTOKEN\"\n}"}],"_postman_id":"816d5484-7a65-4e11-857a-e13081e81062"},{"name":"Get AAD token - Failed authentication with invalid client id","event":[{"listen":"test","script":{"id":"dc505307-d2df-498d-85ed-c2563e017918","exec":[""],"type":"text/javascript"}}],"id":"fd5417f7-110b-4f3e-8383-04fda9c861fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","type":"text","value":"client_credentials"},{"key":"client_id","type":"text","value":"UNKNOWN_CLIENT_ID"},{"key":"client_secret","type":"text","value":"UNKNOWN_SECRET"},{"key":"resource","type":"text","value":"{{ResourceId-Azure}}"}]},"url":"https://login.microsoftonline.com/{{TenantId-Azure}}/oauth2/token","description":"<p>The following is a sample of a failed authentication against the Unified Azure API when using an invalid client id.</p>\n","urlObject":{"protocol":"https","path":["{{TenantId-Azure}}","oauth2","token"],"host":["login","microsoftonline","com"],"query":[],"variable":[]}},"response":[{"id":"eef6f2b4-bfbf-43da-8e4f-9eca0a7f822a","name":"Get AAD token - Failed authentication","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","type":"text","value":"client_credentials"},{"key":"client_id","type":"text","value":"UNKNOWN_CLIENT_ID"},{"key":"client_secret","type":"text","value":"UNKNOWN_SECRET"},{"key":"resource","type":"text","value":"xxxx"}]},"url":"https://login.microsoftonline.com/xxxxxx/oauth2/token"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"unauthorized_client\",\n    \"error_description\": \"AADSTS700016: Application with identifier 'UNKNOWN_CLIENT_ID' was not found in the directory. This can happen if the application has not been installed by the administrator of the tenant or consented to by any user in the tenant. You may have sent your authentication request to the wrong tenant.\",\n    \"error_codes\": [\n        700016\n    ],\n    \"timestamp\": \"2019-11-18 19:29:56Z\",\n    \"trace_id\": \"asdfdfsdf\",\n    \"correlation_id\": \"dfsdfsdf\",\n    \"error_uri\": \"https://login.microsoftonline.com/error?code=700016\"\n}"}],"_postman_id":"fd5417f7-110b-4f3e-8383-04fda9c861fc"},{"name":"Get AAD token - Failed authentication invalid client credentials","event":[{"listen":"test","script":{"id":"dc505307-d2df-498d-85ed-c2563e017918","exec":[""],"type":"text/javascript"}}],"id":"e87c7c83-6acf-4b8c-9a62-fd9b6ace81e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","type":"text","value":"client_credentials"},{"key":"client_id","type":"text","value":"{{Azure-Client-Id}}"},{"key":"client_secret","type":"text","value":"UNKNOWN_SECRET"},{"key":"resource","type":"text","value":"{{ResourceId-Azure}}"}]},"url":"https://login.microsoftonline.com/{{TenantId-Azure}}/oauth2/token","description":"<p>The following is a sample of a failed authentication against the Unified Azure API when using an invalid client secret.</p>\n","urlObject":{"protocol":"https","path":["{{TenantId-Azure}}","oauth2","token"],"host":["login","microsoftonline","com"],"query":[],"variable":[]}},"response":[{"id":"cab913fa-2ccb-42f5-86f4-8fb518d1269e","name":"Get AAD token - Failed authentication","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","type":"text","value":"client_credentials"},{"key":"client_id","type":"text","value":"xxxx"},{"key":"client_secret","type":"text","value":"UNKNOWN_SECRET"},{"key":"resource","type":"text","value":"xxxx"}]},"url":"https://login.microsoftonline.com/xxxxx/oauth2/token"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"invalid_client\",\n    \"error_description\": \"AADSTS7000215: Invalid client secret is provided.\",\n    \"error_codes\": [\n        7000215\n    ],\n    \"timestamp\": \"2019-11-18 19:31:17Z\",\n    \"trace_id\": \"3234qwer\",\n    \"correlation_id\": \"34234234\",\n    \"error_uri\": \"https://login.microsoftonline.com/error?code=7000215\"\n}"}],"_postman_id":"e87c7c83-6acf-4b8c-9a62-fd9b6ace81e4"}],"id":"8487a6b6-6d59-4224-bfcb-da2db49ff6bb","description":"<h1 id=\"examples-of-authentication\">Examples of authentication</h1>\n<p>The authentication for the unified API services all utilise OAUTH2 as a standard way of authenticating incoming calls. </p>\n<p>Authentication needs to be done towards the supplied Azure AD tenant that is used as part of authenticating against EPIM API services.</p>\n<p>To authenticate against Azure one needs to specify the following information as part of the request headers and if succesful a bearer token will be returned to the caller (as shown in the sample requests)</p>\n<ul>\n<li>grant_type - should be client_credentials</li>\n<li>client_id - supplied from Norsk olje og gass</li>\n<li>client_secret - supplied from Norsk olje og gass</li>\n<li>resource - supplied from Norsk olje og gass</li>\n</ul>\n","event":[{"listen":"prerequest","script":{"id":"3ed5acd6-a153-4626-ac03-7f70360a5a8d","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"551b50f0-9428-44be-acf6-27e86e6092b6","type":"text/javascript","exec":[""]}}],"_postman_id":"8487a6b6-6d59-4224-bfcb-da2db49ff6bb"},{"name":"Publishing and validating - Daily Production Reports","item":[{"name":"Sample succesful requests","item":[{"name":"Validate - Succesful validation of daily production report version 2.0 xml report file","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":[""],"type":"text/javascript"}}],"id":"9917cdcf-b677-47ef-bfcb-3b908c8f1c9c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"description":"<p>The OAUTH2 token as recieved from the authentication process</p>\n","key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"description":"<p>The report type to publish in this case it is a daily production report version 2</p>\n","key":"Report-Type","type":"text","value":"DPR20"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"},{"description":"<p>The subscription key for the calling company as supplied from Norsk Olje og gass</p>\n","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"formdata","formdata":[{"description":"<p>The file reference to the file that should be published. In this sample it is a generated sample data for Åsgard containing no real data </p>\n","key":"file","type":"file","src":"api-documentation/dpr20/SAMPLE_ÅSGARD_DPR_20.xml"}]},"url":"{{ValidateAPI}}","description":"<p>An example how to send a request to the unified api validation service and where the recieving system validates the file and reports back a succesful validation result.</p>\n<ul>\n<li><strong>{{ValidateAPI}}</strong> - should be replaced by the URL as supplied from Norsk Olje og gass</li>\n<li><strong>{{bearerToken}}</strong> - is the authorization OAUTH2 token as recieved from the authentication process</li>\n<li><strong>{{opcSubscriptionKey}}</strong> - is api key as recieved from Norsk Olje og gass</li>\n</ul>\n","urlObject":{"host":["{{ValidateAPI}}"],"query":[],"variable":[]}},"response":[{"id":"b0eb2009-2171-4850-8c9d-f0f703520cb3","name":"Validate - Succesful validation of daily production report version 2.0 xml report file","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer xxxxx","description":"The OAUTH2 token as recieved from the authentication process","type":"text"},{"key":"Report-Type","value":"DPR20","description":"The report type to publish in this case it is a daily production report version 2","type":"text"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"Ocp-Apim-Subscription-Key","value":"xxxx","description":"The subscription key for the calling company as supplied from Norsk Olje og gass","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"The file reference to the file that should be published. In this sample it is a generated sample data for Åsgard containing no real data ","key":"file","type":"file","src":"/C:/temp/api-documentation/dpr20/SAMPLE_ÅSGARD_DPR_20.xml"}]},"url":"xxx"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"fileName\": \"SAMPLE_ÅSGARD_DPR_20.xml\",\n    \"fileReferenceId\": \"00000000-0000-0000-0000-000000000000\",\n    \"pdfReferenceId\": null,\n    \"isReportFinal\": false,\n    \"reportType\": \"dpr20\",\n    \"success\": true,\n    \"resultCount\": 32,\n    \"results\": [\n        {\n            \"ruleName\": \"All reports must have a title\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must contain report version\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must have Title field\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must contain report status\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must contain installation with uidRef attribute\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must contain field /object/name\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"/context/installation field must exist\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"/context/installation uidRef must match factpages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"/objects/object/flow must contain uid attribute\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"installation uidRef must be a number\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"installationReport/installation uidRef must be a number\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"installation uidRef must be a number\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"uidRef of platform must be a number\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"installationReport/installation uidRef must be a number\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"uidRef of installation must be a number\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"uidRef of wellbore must be a number\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of wellName must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"uidRef of installation must be a number\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"uidRef of wellbore must be a number\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of platform must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of well must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Version number must be correct\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"All reports must follow the XML schema. If this fails: [RH-16] The markup in the document following the root element must be well-formed\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Version number must be correct\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": null\n        }\n    ],\n    \"accessReport\": {\n        \"hasAccess\": true,\n        \"hasCorrectRole\": true,\n        \"missingAccesses\": [],\n        \"additionalInformation\": \"\",\n        \"all\": [\n            {\n                \"item1\": \"6506/12-R-4 H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"6506/12-R-3 Y2H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"6506/12-R-3 Y1H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"6506/12-R-2 H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"6506/11-F-4 H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"6506/11-F-3 H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"6506/11-F-2 H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"6506/11-E-3 H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"6407/2-Z-4 H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"6407/2-Z-3 H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"MORVIN\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"MIKKEL\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"ÅSGARD\",\n                \"item2\": true\n            }\n        ]\n    }\n}"}],"_postman_id":"9917cdcf-b677-47ef-bfcb-3b908c8f1c9c"},{"name":"Publish - Succesful publishing of a daily production report version 2.0 file","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","",""],"type":"text/javascript"}}],"id":"181a0d8a-37ff-4e3e-aaca-2de502099f8a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"description":"<p>The OAUTH2 token as recieved from the authentication process</p>\n","key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"description":"<p>The report type to publish in this case it is a daily production report version 2</p>\n","key":"Report-Type","type":"text","value":"DPR20"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"},{"description":"<p>The subscription key for the calling company as supplied from Norsk Olje og gass</p>\n","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"formdata","formdata":[{"description":"<p>The file reference to the file that should be published. In this sample it is a generated sample data for Åsgard containing no real data </p>\n","key":"file","type":"file","src":"/C:/temp/api-documentation/dpr20/SAMPLE_ÅSGARD_DPR_20.xml"}]},"url":"{{PublishAPI}}","description":"<p>An example of how to publish a daily production report version 2.0 and responding respons from the unified API.</p>\n<ul>\n<li><strong>{{ValidateAPI}}</strong> - should be replaced by the URL as supplied from Norsk Olje og gass</li>\n<li><strong>{{bearerToken}}</strong> - is the authorization OAUTH2 token as recieved from the authentication process</li>\n<li><strong>{{opcSubscriptionKey}}</strong> - is api key as recieved from Norsk Olje og gass</li>\n</ul>\n","urlObject":{"host":["{{PublishAPI}}"],"query":[],"variable":[]}},"response":[{"id":"ef6173fc-4429-4504-a243-f4ae6c34ea10","name":"Publish - Succesful publishing of a daily production report version 2.0 file","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer xxx","description":"The OAUTH2 token as recieved from the authentication process","type":"text"},{"key":"Report-Type","value":"DPR20","description":"The report type to publish in this case it is a daily production report version 2","type":"text"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"Ocp-Apim-Subscription-Key","value":"xxx","description":"The subscription key for the calling company as supplied from Norsk Olje og gass","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"The file reference to the file that should be published. In this sample it is a generated sample data for Åsgard containing no real data ","key":"file","type":"file","src":"/C:/temp/api-documentation/dpr20/SAMPLE_ÅSGARD_DPR_20.xml"}]},"url":""},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"fileName\": \"SAMPLE_ÅSGARD_DPR_20.xml\",\n    \"fileReferenceId\": \"4c7cc9c6-a4b7-4029-9416-5d63229bb3b1\",\n    \"pdfReferenceId\": null,\n    \"isReportFinal\": false,\n    \"reportType\": \"dpr20\",\n    \"success\": true,\n    \"resultCount\": 32,\n    \"results\": [\n        {\n            \"ruleName\": \"All reports must have a title\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must have Title field\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must contain report status\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must contain installation with uidRef attribute\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must contain report version\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"/context/installation field must exist\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must contain field /object/name\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"/objects/object/flow must contain uid attribute\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"installationReport/installation uidRef must be a number\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"/context/installation uidRef must match factpages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"installationReport/installation uidRef must be a number\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"installation uidRef must be a number\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"installation uidRef must be a number\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"uidRef of platform must be a number\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"uidRef of wellbore must be a number\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"uidRef of installation must be a number\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of wellName must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"uidRef of wellbore must be a number\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"uidRef of installation must be a number\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of platform must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of well must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Version number must be correct\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"All reports must follow the XML schema. If this fails: [RH-16] The markup in the document following the root element must be well-formed\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Version number must be correct\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": null\n        }\n    ],\n    \"accessReport\": {\n        \"hasAccess\": true,\n        \"hasCorrectRole\": true,\n        \"missingAccesses\": [],\n        \"additionalInformation\": \"\",\n        \"all\": [\n            {\n                \"item1\": \"6506/12-R-4 H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"6506/12-R-3 Y2H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"6506/12-R-3 Y1H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"6506/12-R-2 H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"6506/11-F-4 H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"6506/11-F-3 H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"6506/11-F-2 H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"6506/11-E-3 H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"6407/2-Z-4 H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"6407/2-Z-3 H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"MORVIN\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"MIKKEL\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"ÅSGARD\",\n                \"item2\": true\n            }\n        ]\n    }\n}"}],"_postman_id":"181a0d8a-37ff-4e3e-aaca-2de502099f8a"}],"id":"2ede0931-dbf6-4578-b40b-1a3f36d1491f","description":"<p>The following collection of requests contains examples of hot to interact with the unified api to publish daily production report data and how the system will respond upon succesful processing of the data</p>\n","event":[{"listen":"prerequest","script":{"id":"c7116484-60b7-4c5b-bcd7-d55560c06c38","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f4989a64-6b88-4f4b-983b-84df9a14e363","type":"text/javascript","exec":[""]}}],"_postman_id":"2ede0931-dbf6-4578-b40b-1a3f36d1491f"},{"name":"Sample failure situations","item":[{"name":"Publish - Failed publishing of a daily production report version 2 due to xml schema errors","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":[""],"type":"text/javascript"}}],"id":"fcfbefb6-d341-4efd-933f-c66d131bb81d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"description":"<p>The OAUTH2 token as recieved from the authentication process</p>\n","key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"description":"<p>The report type to publish in this case it is a daily production report version 2</p>\n","key":"Report-Type","type":"text","value":"DPR20"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"},{"description":"<p>The subscription key for the calling company as supplied from Norsk Olje og gass</p>\n","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"formdata","formdata":[{"description":"<p>The file reference to the file that should be published. In this sample it is a generated sample data for Åsgard containing no real data but where the file is not according to the defined DPR 2.0 standard</p>\n","key":"file","type":"file","src":"api-documentation/dpr20/SAMPLE_ÅSGARD_DPR_20_WITH_XML_SCHEMA_ERRORS.xml"}]},"url":"{{PublishAPI}}","description":"<p>An example how to send a request to the unified api publish service and where the recieving system validates the file and reports back a failed xml schema validation result.</p>\n<ul>\n<li><strong>{{ValidateAPI}}</strong> - should be replaced by the URL as supplied from Norsk Olje og gass</li>\n<li><strong>{{bearerToken}}</strong> - is the authorization OAUTH2 token as recieved from the authentication process</li>\n<li><strong>{{opcSubscriptionKey}}</strong> - is api key as recieved from Norsk Olje og gass</li>\n</ul>\n<p>In case of any errors as identified in the service the response back will include a status <strong>success</strong> attribute where it will state <strong>false</strong> in case of an error.\nThe response back will also include an array of validation rules the data has gone through in the results element. Each validation rule will contain a name of the rule (<strong>ruleName</strong>) that was excuted and a status for the execution captured in the <strong>success</strong> element.</p>\n<p>In this example it is the xml schema validation rule that fails to validate that the incoming data is according to the daily production report standard. This is captured in the example in the rule:\"All reports must follow the XML schema\" where the success element has a status false.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n   \"ruleName\": \"All reports must follow the XML schema. If this fails: [RH-16] The markup in the document following the root element must be well-formed\",\n   \"success\": false,\n   \"message\": [\n        \"XML schema validation failed: The kind element is invalid - The value 'not a valid flow kind' is invalid according to its datatype ReportingFlow - The Enumeration constraint failed.\",\n        \"XML schema validation failed: The kind element is invalid - The value 'not a valid product' is invalid according to its datatype ReportingProduct - The Enumeration constraint failed.\"\n    ]\n}\n</code></pre>","urlObject":{"host":["{{PublishAPI}}"],"query":[],"variable":[]}},"response":[{"id":"2e47eced-0464-49b4-90ec-84c8563f28d0","name":"Publish - Failed publishing of a daily production report version 2 due to xml schema errors","originalRequest":{"method":"POST","header":[{"description":"The OAUTH2 token as recieved from the authentication process","key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"description":"The report type to publish in this case it is a daily production report version 2","key":"Report-Type","type":"text","value":"DPR20"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"},{"description":"The subscription key for the calling company as supplied from Norsk Olje og gass","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"formdata","formdata":[{"description":"The file reference to the file that should be published. In this sample it is a generated sample data for Åsgard containing no real data but where the file is not according to the defined DPR 2.0 standard","key":"file","type":"file","src":"/C:/temp/api-documentation/dpr20/SAMPLE_ÅSGARD_DPR_20_WITH_XML_SCHEMA_ERRORS.xml"}]},"url":"{{PublishAPI}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":"appId=cid-v1:b3cd985b-9ef8-4b6a-8751-714f67ebcf8d"},{"key":"Date","value":"Wed, 20 Nov 2019 12:04:23 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"fileName\": \"SAMPLE_ÅSGARD_DPR_20_WITH_XML_SCHEMA_ERRORS.xml\",\n    \"fileReferenceId\": \"0b699a92-a12b-4ca1-bd60-c51dfa6ae4ce\",\n    \"pdfReferenceId\": null,\n    \"isReportFinal\": false,\n    \"reportType\": \"dpr20\",\n    \"success\": false,\n    \"resultCount\": 32,\n    \"results\": [\n        {\n            \"ruleName\": \"Report must have Title field\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"All reports must have a title\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must contain report version\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must contain report status\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must contain installation with uidRef attribute\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"/context/installation uidRef must match factpages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"/context/installation field must exist\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must contain field /object/name\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"/objects/object/flow must contain uid attribute\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"installation uidRef must be a number\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"installationReport/installation uidRef must be a number\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"installation uidRef must be a number\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"installationReport/installation uidRef must be a number\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"uidRef of platform must be a number\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"uidRef of installation must be a number\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"uidRef of wellbore must be a number\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of wellName must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"uidRef of installation must be a number\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"uidRef of wellbore must be a number\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of platform must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of well must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Version number must be correct\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"All reports must follow the XML schema. If this fails: [RH-16] The markup in the document following the root element must be well-formed\",\n            \"success\": false,\n            \"message\": [\n                \"XML schema validation failed: The kind element is invalid - The value 'not a valid flow kind' is invalid according to its datatype ReportingFlow - The Enumeration constraint failed.\",\n                \"XML schema validation failed: The kind element is invalid - The value 'not a valid product' is invalid according to its datatype ReportingProduct - The Enumeration constraint failed.\"\n            ]\n        },\n        {\n            \"ruleName\": \"Version number must be correct\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": null\n        }\n    ],\n    \"accessReport\": {\n        \"hasAccess\": true,\n        \"hasCorrectRole\": true,\n        \"missingAccesses\": [],\n        \"additionalInformation\": \"\",\n        \"all\": [\n            {\n                \"item1\": \"6506/12-R-4 H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"6506/12-R-3 Y2H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"6506/12-R-3 Y1H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"6506/12-R-2 H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"6506/11-F-4 H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"6506/11-F-3 H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"6506/11-F-2 H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"6506/11-E-3 H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"6407/2-Z-4 H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"6407/2-Z-3 H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"MORVIN\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"MIKKEL\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"ÅSGARD\",\n                \"item2\": true\n            }\n        ]\n    }\n}"}],"_postman_id":"fcfbefb6-d341-4efd-933f-c66d131bb81d"},{"name":"Publish - Failed publishing of a daily production report version 2 due to naming errors","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":[""],"type":"text/javascript"}}],"id":"b0e6d745-399e-4d9d-a26c-5bb6ed194915","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"description":"<p>The OAUTH2 token as recieved from the authentication process</p>\n","key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"description":"<p>The report type to publish in this case it is a daily production report version 2</p>\n","key":"Report-Type","type":"text","value":"DPR20"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"},{"description":"<p>The subscription key for the calling company as supplied from Norsk Olje og gass</p>\n","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"formdata","formdata":[{"description":"<p>The file reference to the file that should be published. In this sample it is a generated sample data for Åsgard containing no real data but where the file contains naming references that is not according to the NPD naming nomenclature</p>\n","key":"file","type":"file","src":"api-documentation/dpr20/SAMPLE_ÅSGARD_DPR_20_WITH_NAME_ERRORS.xml"}]},"url":"{{PublishAPI}}","description":"<p>An example how to send a request to the unified api publish service and where the recieving system validates the file and reports back that not all wells and field names are according to the NPD fact pages meta data.</p>\n<ul>\n<li><strong>{{ValidateAPI}}</strong> - should be replaced by the URL as supplied from Norsk Olje og gass</li>\n<li><strong>{{bearerToken}}</strong> - is the authorization OAUTH2 token as recieved from the authentication process</li>\n<li><strong>{{opcSubscriptionKey}}</strong> - is api key as recieved from Norsk Olje og gass</li>\n</ul>\n<p>In case of any errors as identified in the service the response back will include a status <strong>success</strong> attribute where it will state <strong>false</strong> in case of an error.\nThe response back will also include an array of validation rules the data has gone through in the results element. Each validation rule will contain a name of the rule (<strong>ruleName</strong>) that was excuted and a status for the execution captured in the <strong>success</strong> element.</p>\n<p>In this example it is the xml data that is sent that contains invalid name references (in this case on the installationReport/installation element) as e.g. name on wells, wellbores, fields ++ should be according to the NPD fact pages. Below is a sample of the validation rule that fails and this is marked with a success=false.  </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n        \"ruleName\": \"Name of installation must match NPD factpages\",\n        \"success\": false,\n        \"message\": [\n            \"invalid facility name This is not a valid platform name\\n\"\n        ]\n}\n</code></pre><p>If a data entity contains an invalid name (example of a data entity from the xml files are e.g. //facility/name) validation will fail due to that access control is checked up-front prior to data validation, hence if e.g. an invalid wellbore name is specified it will state that you have no access to the system.</p>\n","urlObject":{"host":["{{PublishAPI}}"],"query":[],"variable":[]}},"response":[{"id":"b67c779e-5189-4098-9811-b29315c56727","name":"Publish - Failed publishing of a daily production report version 2 due to naming errors","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer xxxx","description":"The OAUTH2 token as recieved from the authentication process","type":"text"},{"key":"Report-Type","value":"DPR20","description":"The report type to publish in this case it is a daily production report version 2","type":"text"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"Ocp-Apim-Subscription-Key","value":"xxxx","description":"The subscription key for the calling company as supplied from Norsk Olje og gass","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"The file reference to the file that should be published. In this sample it is a generated sample data for Åsgard containing no real data but where the file contains naming references that is not according to the NPD naming nomenclature","key":"file","type":"file","src":"/C:/temp/api-documentation/dpr20/SAMPLE_ÅSGARD_DPR_20_WITH_NAME_ERRORS.xml"}]},"url":""},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"fileName\": \"SAMPLE_ÅSGARD_DPR_20_WITH_NAME_ERRORS.xml\",\n    \"fileReferenceId\": \"08cf5e01-b0b7-4c00-9eec-011101874bef\",\n    \"isReportFinal\": false,\n    \"reportType\": \"dpr20\",\n    \"success\": false,\n    \"resultCount\": 32,\n    \"results\": [\n        {\n            \"ruleName\": \"All reports must have a title\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must have Title field\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must contain report status\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must contain installation with uidRef attribute\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"/context/installation uidRef must match factpages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"/context/installation field must exist\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must contain field /object/name\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"/objects/object/flow must contain uid attribute\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"installation uidRef must be a number\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"installationReport/installation uidRef must be a number\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"installation uidRef must be a number\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"installationReport/installation uidRef must be a number\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must contain report version\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"uidRef of wellbore must be a number\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"uidRef of platform must be a number\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"uidRef of installation must be a number\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"uidRef of wellbore must be a number\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"uidRef of installation must be a number\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Name of wellName must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of platform must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of well must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": false,\n            \"message\": [\n                \"invalid facility name This is not a valid platform name\\n\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Version number must be correct\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"All reports must follow the XML schema. If this fails: [RH-16] The markup in the document following the root element must be well-formed\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Version number must be correct\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": null\n        }\n    ],\n    \"accessReport\": {\n        \"hasAccess\": true,\n        \"hasCorrectRole\": true,\n        \"missingAccesses\": [],\n        \"additionalInformation\": \"\",\n        \"all\": [\n            {\n                \"item1\": \"6506/12-R-4 H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"6506/12-R-3 Y2H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"6506/12-R-3 Y1H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"6506/12-R-2 H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"6506/11-F-4 H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"6506/11-F-3 H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"6506/11-F-2 H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"6506/11-E-3 H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"6407/2-Z-4 H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"6407/2-Z-3 H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"MORVIN\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"MIKKEL\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"ÅSGARD\",\n                \"item2\": true\n            }\n        ]\n    }\n}"}],"_postman_id":"b0e6d745-399e-4d9d-a26c-5bb6ed194915"},{"name":"Publish - Failed publishing of a daily production report version 2 due to usage of invalid ids for field entities","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":[""],"type":"text/javascript"}}],"id":"82e048b1-d2cf-44ad-a7a9-15dbead19f61","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"description":"<p>The OAUTH2 token as recieved from the authentication process</p>\n","key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"description":"<p>The report type to publish in this case it is a daily production report version 2</p>\n","key":"Report-Type","type":"text","value":"DPR20"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"},{"description":"<p>The subscription key for the calling company as supplied from Norsk Olje og gass</p>\n","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"formdata","formdata":[{"description":"<p>The file reference to the file that should be published. In this sample it is a generated sample data for Åsgard containing no real data but where the file contains naming references that is not according to the NPD naming nomenclature</p>\n","key":"file","type":"file","src":"api-documentation/dpr20/SAMPLE_ÅSGARD_DPR_20_WITH_INVALID_FIELD_ID.xml"}]},"url":"{{PublishAPI}}","description":"<p>An example how to send a request to the unified api publish service and where the recieving system validates the file and reports back that not all a field ids are according to the NPD fact pages meta data.</p>\n<ul>\n<li><strong>{{ValidateAPI}}</strong> - should be replaced by the URL as supplied from Norsk Olje og gass</li>\n<li><strong>{{bearerToken}}</strong> - is the authorization OAUTH2 token as recieved from the authentication process</li>\n<li><strong>{{opcSubscriptionKey}}</strong> - is api key as recieved from Norsk Olje og gass</li>\n</ul>\n<p>In case of any errors as identified in the service the response back will include a status <strong>success</strong> attribute where it will state <strong>false</strong> in case of an error.\nThe response back will also include an array of validation rules the data has gone through in the results element. Each validation rule will contain a name of the rule (<strong>ruleName</strong>) that was excuted and a status for the execution captured in the <strong>success</strong> element.</p>\n<p>In this example it is the xml data that is sent that contains invalid field id as e.g. ids on wells, wellbores, fields ++ should be according to the NPD fact pages. Below is a sample of the validation rule that fails and this is marked with a success=false.  </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n        \"ruleName\": \"/context/installation uidRef must match factpages\",\n        \"success\": false,\n        \"message\": [\n            \"The field does not match the required value\\n[RH-19] Invalid Field name Invalid field id 234332\"\n        ]\n}\n</code></pre>","urlObject":{"host":["{{PublishAPI}}"],"query":[],"variable":[]}},"response":[{"id":"3d344b0c-be61-46fd-a663-b0a5fb9d5088","name":"Publish - Failed publishing of a daily production report version 2 due to usage of invalid ids for field entities","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer xxxx","description":"The OAUTH2 token as recieved from the authentication process","type":"text"},{"key":"Report-Type","value":"DPR20","description":"The report type to publish in this case it is a daily production report version 2","type":"text"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"Ocp-Apim-Subscription-Key","value":"xxxx","description":"The subscription key for the calling company as supplied from Norsk Olje og gass","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"The file reference to the file that should be published. In this sample it is a generated sample data for Åsgard containing no real data but where the file contains naming references that is not according to the NPD naming nomenclature","key":"file","type":"file","src":"/C:/temp/api-documentation/dpr20/SAMPLE_ÅSGARD_DPR_20_WITH_INVALID_FIELD_ID.xml"}]},"url":"{{PublishAPI}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"fileName\": \"SAMPLE_ÅSGARD_DPR_20_WITH_INVALID_FIELD_ID.xml\",\n    \"fileReferenceId\": \"d032cfdb-5034-49a3-b356-1906bc05c2b9\",\n    \"isReportFinal\": false,\n    \"reportType\": \"dpr20\",\n    \"success\": false,\n    \"resultCount\": 32,\n    \"results\": [\n        {\n            \"ruleName\": \"Report must contain report version\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"All reports must have a title\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must have Title field\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must contain report status\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must contain installation with uidRef attribute\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"/context/installation field must exist\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must contain field /object/name\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"/objects/object/flow must contain uid attribute\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"/context/installation uidRef must match factpages\",\n            \"success\": false,\n            \"message\": [\n                \"The field does not match the required value\\n[RH-19] Invalid Field name Invalid field id 234332\"\n            ]\n        },\n        {\n            \"ruleName\": \"installation uidRef must be a number\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"installationReport/installation uidRef must be a number\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"installation uidRef must be a number\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"installationReport/installation uidRef must be a number\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"uidRef of platform must be a number\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"uidRef of installation must be a number\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"uidRef of wellbore must be a number\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of wellName must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"uidRef of installation must be a number\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"uidRef of wellbore must be a number\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of platform must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of well must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Version number must be correct\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"All reports must follow the XML schema. If this fails: [RH-16] The markup in the document following the root element must be well-formed\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Version number must be correct\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": null\n        }\n    ],\n    \"accessReport\": {\n        \"hasAccess\": true,\n        \"hasCorrectRole\": true,\n        \"missingAccesses\": [],\n        \"additionalInformation\": \"\",\n        \"all\": [\n            {\n                \"item1\": \"6506/12-R-4 H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"6506/12-R-3 Y2H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"6506/12-R-3 Y1H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"6506/12-R-2 H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"6506/11-F-4 H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"6506/11-F-3 H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"6506/11-F-2 H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"6506/11-E-3 H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"6407/2-Z-4 H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"6407/2-Z-3 H\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"MORVIN\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"MIKKEL\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"ÅSGARD\",\n                \"item2\": true\n            }\n        ]\n    }\n}"}],"_postman_id":"82e048b1-d2cf-44ad-a7a9-15dbead19f61"},{"name":"Publish - Failed publishing of a daily production report version 2 due to usage of invalid wellbore name","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":[""],"type":"text/javascript"}}],"id":"8e08b6c0-ca99-466d-a6a4-b46564412ffa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"description":"<p>The OAUTH2 token as recieved from the authentication process</p>\n","key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"description":"<p>The report type to publish in this case it is a daily production report version 2</p>\n","key":"Report-Type","type":"text","value":"DPR20"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"},{"description":"<p>The subscription key for the calling company as supplied from Norsk Olje og gass</p>\n","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"formdata","formdata":[{"description":"<p>The file reference to the file that should be published. In this sample it is a generated sample data for Åsgard containing no real data but where the file contains naming references that is not according to the NPD naming nomenclature</p>\n","key":"file","type":"file","src":"api-documentation/dpr20/SAMPLE_ÅSGARD_DPR_20_WITH_INVALID_FIELD_ID.xml"}]},"url":"{{PublishAPI}}","description":"<p>An example how to send a request to the unified api publish service and where the recieving system validates the file and reports back that not all a field ids are according to the NPD fact pages meta data.</p>\n<ul>\n<li><strong>{{ValidateAPI}}</strong> - should be replaced by the URL as supplied from Norsk Olje og gass</li>\n<li><strong>{{bearerToken}}</strong> - is the authorization OAUTH2 token as recieved from the authentication process</li>\n<li><strong>{{opcSubscriptionKey}}</strong> - is api key as recieved from Norsk Olje og gass</li>\n</ul>\n<p>In case of any errors as identified in the service the response back will include a status <strong>success</strong> attribute where it will state <strong>false</strong> in case of an error.\nThe response back will also include an array of validation rules the data has gone through in the results element. Each validation rule will contain a name of the rule (<strong>ruleName</strong>) that was excuted and a status for the execution captured in the <strong>success</strong> element.</p>\n<p>In this example it is the xml data that is sent that contains invalid field id as e.g. ids on wells, wellbores, fields ++ should be according to the NPD fact pages. Below is a sample of the validation rule that fails and this is marked with a success=false.  </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n        \"ruleName\": \"/context/installation uidRef must match factpages\",\n        \"success\": false,\n        \"message\": [\n            \"The field does not match the required value\\n[RH-19] Invalid Field name Invalid field id 234332\"\n        ]\n}\n</code></pre>","urlObject":{"host":["{{PublishAPI}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8e08b6c0-ca99-466d-a6a4-b46564412ffa"}],"id":"98cd65f5-2534-4af2-b896-eaabe7ebb2a7","_postman_id":"98cd65f5-2534-4af2-b896-eaabe7ebb2a7","description":""}],"id":"b0953c97-1252-4142-b6a9-2c498b203ddb","description":"<p>The following example suite contains examples relating to publishing of Daily Production Reports and example of possible failure situations. </p>\n<p>Publishing of daily production report data builds on using the standard as used on the Norwegian continental shelf and that utilises a standard nomenclature, standard viewable report layout (same for all assets) and a standard xml schema that defines the rules for transport of the data.</p>\n<p>The standard for daily production reporting comes in 2 versions</p>\n<ul>\n<li><em>Daily production report version 1.0</em> - the legacy version that is no longer supported. Support for publishing of this is mainly due to need to support legacy data in an interim period. This standard will not be included as part of this documentation.</li>\n<li><em>Daily production report version 2.0</em> - this is the standard version for production reporting that is currently supported and all new development should be done using this standard version.</li>\n</ul>\n<p>As for other services authentication is done using OAUTH2 (see authentication section for more details). \nPublishing and validation of production and drilling data is done using one unified service where the caller uses the  <strong>Report-Type</strong> header do describe the type of report to be submitted. For DPR 2.0 reports this should be set to <strong>DPR20</strong> as seen in the example requests.</p>\n<p>When publishing a <em>daily produciton report version 2.0</em> the system will also automatically create a viewable PDF report of the data that users can view/download and the data is also forwarded to L2S if this is configured (default is that this is configured for all licenses/fields).</p>\n","event":[{"listen":"prerequest","script":{"id":"83567bfd-976b-4676-b5d9-d2e7a07acf22","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9df63895-d80c-484c-a0a5-eded8af8b40f","type":"text/javascript","exec":[""]}}],"_postman_id":"b0953c97-1252-4142-b6a9-2c498b203ddb"},{"name":"Publishing and validating - Monthly production reports","item":[{"name":"Monthly production report to the government","item":[{"name":"Sample succesful requests - Monthly production report to the government","item":[{"name":"Validate - Succesful validation of monthly production report to the government","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":[""],"type":"text/javascript"}}],"id":"b732da00-c49e-414c-b434-c8a741a39dd4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"description":"<p>The OAUTH2 token as recieved from the authentication process</p>\n","key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"description":"<p>The report type to publish in this case it is a monthly production report to the government</p>\n","key":"Report-Type","type":"text","value":"MPR-GOV"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"},{"description":"<p>The subscription key for the calling company as supplied from Norsk Olje og gass</p>\n","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"formdata","formdata":[{"description":"<p>The file reference to the file that should be published. In this sample it is a generated sample data for Gudrun containing no real data </p>\n","key":"file","type":"file","src":"api-documentation/mprml-gov/SUCCESS_MPRMLGOV_VALIDATE_EQUINOR_GUDRUN_SCRAMBLED.xml"}]},"url":"{{ValidateAPI}}","description":"<p>An example how to send a request to the unified api validation service and where the recieving system validates the file and reports back a succesful validation result.</p>\n<ul>\n<li><strong>{{ValidateAPI}}</strong> - should be replaced by the URL as supplied from Norsk Olje og gass</li>\n<li><strong>{{bearerToken}}</strong> - is the authorization OAUTH2 token as recieved from the authentication process</li>\n<li><strong>{{opcSubscriptionKey}}</strong> - is api key as recieved from Norsk Olje og gass</li>\n</ul>\n","urlObject":{"host":["{{ValidateAPI}}"],"query":[],"variable":[]}},"response":[{"id":"e03f1f80-41e7-4945-9581-d99472ae1722","name":"Validate - Succesful validation of monthly production report to the government","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer xxx","description":"The OAUTH2 token as recieved from the authentication process","type":"text"},{"key":"Report-Type","value":"MPR-GOV","description":"The report type to publish in this case it is a monthly production report to the government","type":"text"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"Ocp-Apim-Subscription-Key","value":"xxx","description":"The subscription key for the calling company as supplied from Norsk Olje og gass","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"The file reference to the file that should be published. In this sample it is a generated sample data for Gudrun containing no real data ","key":"file","type":"file","src":"/C:/temp/api-documentation/mprml-gov/SUCCESS_MPRMLGOV_VALIDATE_EQUINOR_GUDRUN_SCRAMBLED.xml"}]},"url":"{{ValidateAPI}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"fileName\": \"SUCCESS_MPRMLGOV_VALIDATE_EQUINOR_GUDRUN_SCRAMBLED.xml\",\n    \"fileReferenceId\": \"ab388f14-80b5-49b6-8885-74ed7afb413a\",\n    \"isReportFinal\": false,\n    \"reportType\": \"mprmlGov\",\n    \"success\": true,\n    \"resultCount\": 54,\n    \"results\": [\n        {\n            \"ruleName\": \"Report must have Title field(2.1.1)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must contain report status(2.1.3)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"/context/installation uidRef must match factpages. (2.1.4)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"/objects/object/flow must contain uid attribute (2.2.4)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"All monthly production reports must have a valid 'month' field (4.1.1)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must contain report version(2.1.2)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"All monthly production reports must have a 'reportVersion' field\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"All monthly production reports must have a valid 'reportStatus' field (4.1.2)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require element named 'name' (4.2.2)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require attribute named 'kind' (4.2.2)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require attribute named 'namingSystem' (4.2.2)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must contain field /object/name (2.2.1)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require attribute named 'uidRef' (4.2.2)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"It is required that no flow elementy is missing flow uid\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require field named 'kind' (4.2.3)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require product element (4.2.5)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require field 'kind' only have supported values (4.2.4)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require product kind only have supported values (4.2.6)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require facility/name attribute 'kind' only have supported values (4.2.7)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require Operation time not exceed 31 days  (4.2.8). Valid values for operationTime is 0-31.\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule Check if operationTime is specified\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require period has field 'kind' (4.2.9)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require Operation time not exceed 31 days  (4.2.8). Valid values for operationTime is 0-31.\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require period attribute 'kind' only have supported values (4.2.9)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if balanceset is specified with flow kind = ’hydrocarbon accounting’, require that element 'balanceset' has elements 'kind', 'cargoNumber', 'destination' and 'balance'  (4.2.11)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a balanceset is specified with the flow kind=’hydrocarbon accounting’ (4.2.11)\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if balanceset is specified with flow kind = ’hydrocarbon accounting’, require that element 'destination/name' is present (4.2.12)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a balanceset is specified with the flow kind=’hydrocarbon accounting’ (4.2.12)\"\n            ]\n        },\n        {\n            \"ruleName\": \"Country name is not valid! NPD Diskos common schema if balanceset is specified with flow kind = ’hydrocarbon accounting’, require that element 'destination/country' is valid (4.2.13)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a balanceset is specified with the flow kind=’hydrocarbon accounting’ (4.2.13)\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if balanceset is specified with flow kind = ’hydrocarbon accounting’, require that element 'balanceDetail/share' uom is % is present (4.2.15)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a balanceset is specified with the flow kind=’hydrocarbon accounting’ (4.2.15)\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if flow/kind = ’hydrocarbon accounting’, require sum of all element 'balanceDetail/share' to be 100% (4.2.16)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a balanceset is specified with the flow kind=’hydrocarbon accounting’ (4.2.16)\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if balanceset is specified with flow kind = ’hydrocarbon accounting’, require that element 'balanceDetail/owner' is valid (4.2.14)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a balanceset is specified with the flow kind=’hydrocarbon accounting’ (4.2.14)\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if flow/kind = ’hydrocarbon accounting’, must have valid volume fields (4.2.17)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a balanceset is specified with the flow kind=’hydrocarbon accounting’ (4.2.17)\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if flow/kind = ’hydrocarbon accounting’, must have valid volumes (4.2.17)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a balanceset is specified with the flow kind=’hydrocarbon accounting’ (4.2.17)\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if flow/kind = ’hydrocarbon accounting’, must have valid volumes (4.2.17)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a balanceset is specified with the flow kind=’hydrocarbon accounting’ (4.2.17)\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if flow/kind = ’hydrocarbon accounting’, require mass to be kg or tons (4.2.18)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule Check if mass exists’ (4.2.18)\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if flow/kind = ’hydrocarbon accounting’, must have valid density fields (4.2.19)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a balanceset is specified with the flow kind=’hydrocarbon accounting’ (4.2.19)\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if flow/kind = ’hydrocarbon accounting’, must have valid density (4.2.19)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a density is specified with the flow kind=’hydrocarbon accounting’ (4.2.19)\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if flow/kind = ’hydrocarbon accounting’, require mass to be kg or tons (4.2.18)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if flow/kind = ’hydrocarbon accounting’, must have valid density (4.2.19)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a density is specified with the flow kind=’hydrocarbon accounting’ (4.2.19)\"\n            ]\n        },\n        {\n            \"ruleName\": \"object/installation uidRef must match NPD factpages (2.2.3)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"context/installation uidRef must match NPD factpages (2.2.2)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"object/installation uidRef must match NPD factpages (2.2.3)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"context/installation uidRef must match NPD factpages (2.2.2)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"uidRef of platform must be a number\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"uidRef of platform must be a number\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"uidRef of wellbore must be a number\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"uidRef of wellbore must be a number\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Name of wellbore must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Version number must be correct\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"All reports must follow the XML schema. If this fails: XML schema validation failed\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Name of wellbore must match NPD factpages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Version number must be correct\",\n            \"success\": true,\n            \"message\": null\n        }\n    ],\n    \"accessReport\": {\n        \"hasAccess\": true,\n        \"hasCorrectRole\": true,\n        \"missingAccesses\": [],\n        \"additionalInformation\": \"\",\n        \"all\": [\n            {\n                \"item1\": \"15/3-A-9\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"15/3-A-7\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"15/3-A-6\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"15/3-A-5 A\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"15/3-A-16\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"15/3-A-14\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"15/3-A-13\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"GUDRUN\",\n                \"item2\": true\n            }\n        ]\n    }\n}"}],"_postman_id":"b732da00-c49e-414c-b434-c8a741a39dd4"},{"name":"Publish - Succesful publishing of a monthly production report to the government","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","var jsonData = pm.response.json();","","pm.test(\"Status success is : false\", function () {","    pm.expect(jsonData.success).to.eql(false);","});","","pm.test(\"Report type is dpr20\", function () {","    pm.expect(jsonData.reportType.toLowerCase()).to.eql(\"dpr20\");","});","","pm.test(\"JSON success response ruleName All reports must follow xml schema is false\", function () {","//check that we have a success on the xml schema validation","testOk=false;","var xmlSchemaRuleName = pm.variables.get(\"ReportXMLSchemaRuleValidatioName\");","for (var i = 0; i < jsonData.results.length; i++)","{","    var ruleName = jsonData.results[i].ruleName;","    if (ruleName.toLowerCase().includes(xmlSchemaRuleName.toLowerCase())){","        //check that the xml schema validation rule has status false","        if (!jsonData.results[i].success){","            testOk=true;","        }","    }","}"," pm.expect(testOk).to.eql(true);","});","","//check that we have a reference to the actual xml schema errors","pm.test(\"Body contains xml schema errorMessage consume - pizzas and jalla as invalid enumeration values\", function () {","    pm.expect(pm.response.text()).to.include(\"consume - pizzas\");","    pm.expect(pm.response.text()).to.include(\"jalla\");","});",""],"type":"text/javascript"}}],"id":"8ab0b1c0-3d70-45b6-9c6c-22cac824ebbc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"description":"<p>The OAUTH2 token as recieved from the authentication process</p>\n","key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"description":"<p>The report type to publish in this case it is a  monthly production report to the government </p>\n","key":"Report-Type","type":"text","value":"MPR-GOV"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"},{"description":"<p>The subscription key for the calling company as supplied from Norsk Olje og gass</p>\n","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"formdata","formdata":[{"description":"<p>The file reference to the file that should be published. In this sample it is a generated sample data for Gudrun containing no real data </p>\n","key":"file","type":"file","src":"api-documentation/mprml-gov/SUCCESS_MPRMLGOV_VALIDATE_EQUINOR_GUDRUN_SCRAMBLED.xml"}]},"url":"{{PublishAPI}}","description":"<p>An example of how to publish a monthly production report to the government (MPRML Government) and responding respons from the unified API.</p>\n<ul>\n<li><strong>{{ValidateAPI}}</strong> - should be replaced by the URL as supplied from Norsk Olje og gass</li>\n<li><strong>{{bearerToken}}</strong> - is the authorization OAUTH2 token as recieved from the authentication process</li>\n<li><strong>{{opcSubscriptionKey}}</strong> - is api key as recieved from Norsk Olje og gass</li>\n</ul>\n","urlObject":{"host":["{{PublishAPI}}"],"query":[],"variable":[]}},"response":[{"id":"5f61e25a-5f8e-4347-966a-662430ce6fb5","name":"Publish - Succesful publishing of a monthly production report to the government","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer xxx","description":"The OAUTH2 token as recieved from the authentication process","type":"text"},{"key":"Report-Type","value":"DPR20","description":"The report type to publish in this case it is a daily production report version 2","type":"text"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"Ocp-Apim-Subscription-Key","value":"xxx","description":"The subscription key for the calling company as supplied from Norsk Olje og gass","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"The file reference to the file that should be published. In this sample it is a generated sample data for Gudrun containing no real data ","key":"file","type":"file","src":"/C:/temp/api-documentation/mprml-gov/SUCCESS_MPRMLGOV_VALIDATE_EQUINOR_GUDRUN_SCRAMBLED.xml"}]},"url":"{{PublishAPI}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"fileName\": \"SUCCESS_MPRMLGOV_VALIDATE_EQUINOR_GUDRUN_SCRAMBLED.xml\",\n    \"fileReferenceId\": \"27108dd6-a705-4012-9689-df5516a4c14a\",\n    \"isReportFinal\": false,\n    \"reportType\": \"dpr20\",\n    \"success\": true,\n    \"resultCount\": 30,\n    \"results\": [\n        {\n            \"ruleName\": \"All reports must have a title\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must contain report version\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must have Title field\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must contain report status\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must contain installation with uidRef attribute\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"/context/installation field must exist\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must contain field /object/name\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"/objects/object/flow must contain uid attribute\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"installation uidRef must be a number\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"/context/installation uidRef must match factpages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"installation uidRef must be a number\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"installationReport/installation uidRef must be a number\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"uidRef of platform must be a number\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"uidRef of wellbore must be a number\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"uidRef of platform must be a number\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"uidRef of installation must be a number\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"uidRef of wellbore must be a number\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Name of wellName must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of platform must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Name of platform must match NPD factpages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Name of well must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Version number must be correct\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"All reports must follow the XML schema. If this fails: [RH-16] The markup in the document following the root element must be well-formed\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Version number must be correct\",\n            \"success\": true,\n            \"message\": null\n        }\n    ],\n    \"accessReport\": {\n        \"hasAccess\": true,\n        \"hasCorrectRole\": true,\n        \"missingAccesses\": [],\n        \"additionalInformation\": \"\",\n        \"all\": [\n            {\n                \"item1\": \"15/3-A-9\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"15/3-A-7\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"15/3-A-6\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"15/3-A-5 A\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"15/3-A-16\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"15/3-A-14\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"15/3-A-13\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"GUDRUN\",\n                \"item2\": true\n            }\n        ]\n    }\n}"}],"_postman_id":"8ab0b1c0-3d70-45b6-9c6c-22cac824ebbc"}],"id":"f3bb2b1b-44c1-49b4-975f-f7000f2c573e","description":"<p>The following collection of requests contains examples of hot to interact with the unified api to publish monthly production report data to the government and how the Reportinghub system will respond upon succesful processing of the data.</p>\n","event":[{"listen":"prerequest","script":{"id":"c7116484-60b7-4c5b-bcd7-d55560c06c38","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f4989a64-6b88-4f4b-983b-84df9a14e363","type":"text/javascript","exec":[""]}}],"_postman_id":"f3bb2b1b-44c1-49b4-975f-f7000f2c573e"},{"name":"Sample failure situations - Monthly production report to the government","item":[{"name":"Publish - Failed publishing of a monthly production report to the government due to xml schema errors","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":[""],"type":"text/javascript"}}],"id":"9a862902-06f7-4ba5-9d59-6f037fd9a5cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"description":"<p>The OAUTH2 token as recieved from the authentication process</p>\n","key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"description":"<p>The report type to publish in this case it is a monthly production report to the government</p>\n","key":"Report-Type","type":"text","value":"MPR-GOV"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"},{"description":"<p>The subscription key for the calling company as supplied from Norsk Olje og gass</p>\n","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"formdata","formdata":[{"description":"<p>The file reference to the file that should be published. In this sample it is a generated sample data for Åsgard containing no real data but where the file is not according to the defined MPRML Government standard</p>\n","key":"file","type":"file","src":"api-documentation/mprml-gov/MPRMLGOV_VALIDATE_FAIL_SCHEMA_VALIDATION.xml"}]},"url":"{{PublishAPI}}","description":"<p>An example how to send a request to the unified api publish service and where the recieving system validates the file and reports back a failed xml schema validation result.</p>\n<ul>\n<li><strong>{{ValidateAPI}}</strong> - should be replaced by the URL as supplied from Norsk Olje og gass</li>\n<li><strong>{{bearerToken}}</strong> - is the authorization OAUTH2 token as recieved from the authentication process</li>\n<li><strong>{{opcSubscriptionKey}}</strong> - is api key as recieved from Norsk Olje og gass</li>\n</ul>\n<p>In case of any errors as identified in the service the response back will include a status <strong>success</strong> attribute where it will state <strong>false</strong> in case of an error.\nThe response back will also include an array of validation rules the data has gone through in the results element. Each validation rule will contain a name of the rule (<strong>ruleName</strong>) that was excuted and a status for the execution captured in the <strong>success</strong> element.</p>\n<p>In this example it is the xml schema validation rule that fails to validate that the incoming data is according to the daily production report standard. This is captured in the example in the rule:\"All reports must follow the XML schema\" where the success element has a status false.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n   \"ruleName\": \"All reports must follow the XML schema. If this fails: [RH-16] The markup in the document following the root element must be well-formed\",\n   \"success\": false,\n   \"message\": [\n        \"XML schema validation failed: The kind element is invalid - The value 'not a valid flow kind' is invalid according to its datatype ReportingFlow - The Enumeration constraint failed.\",\n        \"XML schema validation failed: The kind element is invalid - The value 'not a valid product' is invalid according to its datatype ReportingProduct - The Enumeration constraint failed.\"\n    ]\n}\n</code></pre>","urlObject":{"host":["{{PublishAPI}}"],"query":[],"variable":[]}},"response":[{"id":"0dcfe658-40a2-4713-8742-b9b58dc0015c","name":"Publish - Failed publishing of a monthly production report to the government due to xml schema errors","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer xxx","description":"The OAUTH2 token as recieved from the authentication process","type":"text"},{"key":"Report-Type","value":"MPR-GOV","description":"The report type to publish in this case it is a monthly production report to the government","type":"text"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"Ocp-Apim-Subscription-Key","value":"xxx","description":"The subscription key for the calling company as supplied from Norsk Olje og gass","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"The file reference to the file that should be published. In this sample it is a generated sample data for Åsgard containing no real data but where the file is not according to the defined MPRML Government standard","key":"file","type":"file","src":"/C:/temp/api-documentation/mprml-gov/MPRMLGOV_VALIDATE_FAIL_SCHEMA_VALIDATION.xml"}]},"url":"{{PublishAPI}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"fileName\": \"MPRMLGOV_VALIDATE_FAIL_SCHEMA_VALIDATION.xml\",\n    \"isReportFinal\": false,\n    \"reportType\": \"mprmlGov\",\n    \"success\": false,\n    \"resultCount\": 54,\n    \"results\": [\n        {\n            \"ruleName\": \"All reports must follow the XML schema. If this fails: XML schema validation failed\",\n            \"success\": false,\n            \"message\": [\n                \"XML schema validation failed: The kind element is invalid - The value 'not a valid product kind' is invalid according to its datatype ReportingProduct - The Enumeration constraint failed.\"\n            ]\n        },\n        {\n            \"ruleName\": \"Report must have Title field(2.1.1)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must contain report version(2.1.2)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must contain report status(2.1.3)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"/context/installation uidRef must match factpages. (2.1.4)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must contain field /object/name (2.2.1)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"/objects/object/flow must contain uid attribute (2.2.4)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"All monthly production reports must have a valid 'month' field (4.1.1)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"All monthly production reports must have a 'reportVersion' field\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"All monthly production reports must have a valid 'reportStatus' field (4.1.2)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require element named 'name' (4.2.2)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require attribute named 'kind' (4.2.2)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require attribute named 'namingSystem' (4.2.2)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require attribute named 'uidRef' (4.2.2)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"It is required that no flow elementy is missing flow uid\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require field named 'kind' (4.2.3)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require field 'kind' only have supported values (4.2.4)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require product element (4.2.5)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require product kind only have supported values (4.2.6)\",\n            \"success\": false,\n            \"message\": [\n                \"Rule 'NPD Diskos common schema require product kind only have supported values (4.2.6)' failed, for element {http://www.epim.no/schemas/mprml/1}kind, which has value not a valid product kind\\n\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require facility/name attribute 'kind' only have supported values (4.2.7)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require Operation time not exceed 31 days  (4.2.8). Valid values for operationTime is 0-31.\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule Check if operationTime is specified\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require Operation time not exceed 31 days  (4.2.8). Valid values for operationTime is 0-31.\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require period has field 'kind' (4.2.9)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require period attribute 'kind' only have supported values (4.2.9)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if balanceset is specified with flow kind = ’hydrocarbon accounting’, require that element 'balanceset' has elements 'kind', 'cargoNumber', 'destination' and 'balance'  (4.2.11)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a balanceset is specified with the flow kind=’hydrocarbon accounting’ (4.2.11)\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if balanceset is specified with flow kind = ’hydrocarbon accounting’, require that element 'destination/name' is present (4.2.12)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a balanceset is specified with the flow kind=’hydrocarbon accounting’ (4.2.12)\"\n            ]\n        },\n        {\n            \"ruleName\": \"Country name is not valid! NPD Diskos common schema if balanceset is specified with flow kind = ’hydrocarbon accounting’, require that element 'destination/country' is valid (4.2.13)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a balanceset is specified with the flow kind=’hydrocarbon accounting’ (4.2.13)\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if balanceset is specified with flow kind = ’hydrocarbon accounting’, require that element 'balanceDetail/owner' is valid (4.2.14)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a balanceset is specified with the flow kind=’hydrocarbon accounting’ (4.2.14)\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if balanceset is specified with flow kind = ’hydrocarbon accounting’, require that element 'balanceDetail/share' uom is % is present (4.2.15)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a balanceset is specified with the flow kind=’hydrocarbon accounting’ (4.2.15)\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if flow/kind = ’hydrocarbon accounting’, require sum of all element 'balanceDetail/share' to be 100% (4.2.16)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a balanceset is specified with the flow kind=’hydrocarbon accounting’ (4.2.16)\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if flow/kind = ’hydrocarbon accounting’, must have valid volume fields (4.2.17)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a balanceset is specified with the flow kind=’hydrocarbon accounting’ (4.2.17)\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if flow/kind = ’hydrocarbon accounting’, must have valid volumes (4.2.17)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a balanceset is specified with the flow kind=’hydrocarbon accounting’ (4.2.17)\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if flow/kind = ’hydrocarbon accounting’, must have valid volumes (4.2.17)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a balanceset is specified with the flow kind=’hydrocarbon accounting’ (4.2.17)\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if flow/kind = ’hydrocarbon accounting’, require mass to be kg or tons (4.2.18)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule Check if mass exists’ (4.2.18)\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if flow/kind = ’hydrocarbon accounting’, require mass to be kg or tons (4.2.18)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if flow/kind = ’hydrocarbon accounting’, must have valid density fields (4.2.19)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a balanceset is specified with the flow kind=’hydrocarbon accounting’ (4.2.19)\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if flow/kind = ’hydrocarbon accounting’, must have valid density (4.2.19)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a density is specified with the flow kind=’hydrocarbon accounting’ (4.2.19)\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if flow/kind = ’hydrocarbon accounting’, must have valid density (4.2.19)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a density is specified with the flow kind=’hydrocarbon accounting’ (4.2.19)\"\n            ]\n        },\n        {\n            \"ruleName\": \"object/installation uidRef must match NPD factpages (2.2.3)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"object/installation uidRef must match NPD factpages (2.2.3)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"context/installation uidRef must match NPD factpages (2.2.2)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"context/installation uidRef must match NPD factpages (2.2.2)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"uidRef of platform must be a number\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"uidRef of platform must be a number\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"uidRef of wellbore must be a number\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"uidRef of wellbore must be a number\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Name of wellbore must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of wellbore must match NPD factpages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Version number must be correct\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Version number must be correct\",\n            \"success\": true,\n            \"message\": null\n        }\n    ],\n    \"accessReport\": {\n        \"hasAccess\": true,\n        \"hasCorrectRole\": true,\n        \"missingAccesses\": [],\n        \"additionalInformation\": \"\",\n        \"all\": [\n            {\n                \"item1\": \"15/3-A-9\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"15/3-A-7\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"15/3-A-6\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"15/3-A-5 A\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"15/3-A-16\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"15/3-A-14\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"15/3-A-13\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"GUDRUN\",\n                \"item2\": true\n            }\n        ]\n    }\n}"}],"_postman_id":"9a862902-06f7-4ba5-9d59-6f037fd9a5cb"},{"name":"Publish - Failed publishing of a monthly production report to the government due to naming errors","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":[""],"type":"text/javascript"}}],"id":"d948f021-9bc1-456c-a027-283a56d233b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"description":"<p>The OAUTH2 token as recieved from the authentication process</p>\n","key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"description":"<p>The report type to publish in this case it is a monthly production report to the government</p>\n","key":"Report-Type","type":"text","value":"MPR-GOV"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"},{"description":"<p>The subscription key for the calling company as supplied from Norsk Olje og gass</p>\n","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"formdata","formdata":[{"description":"<p>The file reference to the file that should be published. In this sample it is a generated sample data for Gudrun containing no real data but where the file contains naming references that is not according to the NPD naming nomenclature</p>\n","key":"file","type":"file","src":"api-documentation/mprml-gov/FAIL_MPRMLGOV_VALIDATE_EQUINOR_GUDRUN_INVALID_NAMES.xml"}]},"url":"{{PublishAPI}}","description":"<p>An example how to send a request to the unified api publish service and where the recieving system validates the file and reports back that not all wells and field names are according to the NPD fact pages meta data.</p>\n<ul>\n<li><strong>{{ValidateAPI}}</strong> - should be replaced by the URL as supplied from Norsk Olje og gass</li>\n<li><strong>{{bearerToken}}</strong> - is the authorization OAUTH2 token as recieved from the authentication process</li>\n<li><strong>{{opcSubscriptionKey}}</strong> - is api key as recieved from Norsk Olje og gass</li>\n</ul>\n<p>In case of any errors as identified in the service the response back will include a status <strong>success</strong> attribute where it will state <strong>false</strong> in case of an error.\nThe response back will also include an array of validation rules the data has gone through in the results element. Each validation rule will contain a name of the rule (<strong>ruleName</strong>) that was excuted and a status for the execution captured in the <strong>success</strong> element.</p>\n<p>In this example it is the xml data that is sent that contains invalid name references (in this case on the installationReport/installation element) as e.g. name on wells, wellbores, fields ++ should be according to the NPD fact pages. Below is a sample of the validation rule that fails and this is marked with a success=false.  </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n        \"ruleName\": \"Name of installation must match NPD factpages\",\n        \"success\": false,\n        \"message\": [\n            \"invalid facility name This is not a valid platform name\\n\"\n        ]\n}\n</code></pre>","urlObject":{"host":["{{PublishAPI}}"],"query":[],"variable":[]}},"response":[{"id":"ddce5d96-b8b1-4ddc-9658-62f8b73d8cf4","name":"Publish - Failed publishing of a monthly production report to the government due to naming errors","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer xxxx","description":"The OAUTH2 token as recieved from the authentication process","type":"text"},{"key":"Report-Type","value":"MPR-GOV","description":"The report type to publish in this case it is a monthly production report to the government","type":"text"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"Ocp-Apim-Subscription-Key","value":"xxxx","description":"The subscription key for the calling company as supplied from Norsk Olje og gass","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"The file reference to the file that should be published. In this sample it is a generated sample data for Gudrun containing no real data but where the file contains naming references that is not according to the NPD naming nomenclature","key":"file","type":"file","src":"/C:/temp/api-documentation/mprml-gov/FAIL_MPRMLGOV_VALIDATE_EQUINOR_GUDRUN_INVALID_NAMES.xml"}]},"url":"{{PublishAPI}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"fileName\": \"FAIL_MPRMLGOV_VALIDATE_EQUINOR_GUDRUN_INVALID_NAMES.xml\",\n    \"isReportFinal\": false,\n    \"reportType\": \"mprmlGov\",\n    \"success\": false,\n    \"resultCount\": 54,\n    \"results\": [\n        {\n            \"ruleName\": \"All reports must follow the XML schema. If this fails: XML schema validation failed\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must have Title field(2.1.1)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must contain report version(2.1.2)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must contain report status(2.1.3)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"/context/installation uidRef must match factpages. (2.1.4)\",\n            \"success\": false,\n            \"message\": [\n                \"The field does not match the required value\\n missing installation element\"\n            ]\n        },\n        {\n            \"ruleName\": \"Report must contain field /object/name (2.2.1)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"/objects/object/flow must contain uid attribute (2.2.4)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"All monthly production reports must have a valid 'month' field (4.1.1)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"All monthly production reports must have a 'reportVersion' field\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"All monthly production reports must have a valid 'reportStatus' field (4.1.2)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require element named 'name' (4.2.2)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require attribute named 'kind' (4.2.2)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require attribute named 'namingSystem' (4.2.2)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require attribute named 'uidRef' (4.2.2)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"It is required that no flow elementy is missing flow uid\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require field named 'kind' (4.2.3)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require field 'kind' only have supported values (4.2.4)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require product element (4.2.5)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require product kind only have supported values (4.2.6)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require facility/name attribute 'kind' only have supported values (4.2.7)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require Operation time not exceed 31 days  (4.2.8). Valid values for operationTime is 0-31.\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule Check if operationTime is specified\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require Operation time not exceed 31 days  (4.2.8). Valid values for operationTime is 0-31.\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require period has field 'kind' (4.2.9)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require period attribute 'kind' only have supported values (4.2.9)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if balanceset is specified with flow kind = ’hydrocarbon accounting’, require that element 'balanceset' has elements 'kind', 'cargoNumber', 'destination' and 'balance'  (4.2.11)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a balanceset is specified with the flow kind=’hydrocarbon accounting’ (4.2.11)\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if balanceset is specified with flow kind = ’hydrocarbon accounting’, require that element 'destination/name' is present (4.2.12)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a balanceset is specified with the flow kind=’hydrocarbon accounting’ (4.2.12)\"\n            ]\n        },\n        {\n            \"ruleName\": \"Country name is not valid! NPD Diskos common schema if balanceset is specified with flow kind = ’hydrocarbon accounting’, require that element 'destination/country' is valid (4.2.13)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a balanceset is specified with the flow kind=’hydrocarbon accounting’ (4.2.13)\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if balanceset is specified with flow kind = ’hydrocarbon accounting’, require that element 'balanceDetail/owner' is valid (4.2.14)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a balanceset is specified with the flow kind=’hydrocarbon accounting’ (4.2.14)\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if balanceset is specified with flow kind = ’hydrocarbon accounting’, require that element 'balanceDetail/share' uom is % is present (4.2.15)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a balanceset is specified with the flow kind=’hydrocarbon accounting’ (4.2.15)\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if flow/kind = ’hydrocarbon accounting’, require sum of all element 'balanceDetail/share' to be 100% (4.2.16)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a balanceset is specified with the flow kind=’hydrocarbon accounting’ (4.2.16)\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if flow/kind = ’hydrocarbon accounting’, must have valid volume fields (4.2.17)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a balanceset is specified with the flow kind=’hydrocarbon accounting’ (4.2.17)\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if flow/kind = ’hydrocarbon accounting’, must have valid volumes (4.2.17)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a balanceset is specified with the flow kind=’hydrocarbon accounting’ (4.2.17)\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if flow/kind = ’hydrocarbon accounting’, must have valid volumes (4.2.17)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a balanceset is specified with the flow kind=’hydrocarbon accounting’ (4.2.17)\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if flow/kind = ’hydrocarbon accounting’, require mass to be kg or tons (4.2.18)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule Check if mass exists’ (4.2.18)\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if flow/kind = ’hydrocarbon accounting’, require mass to be kg or tons (4.2.18)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if flow/kind = ’hydrocarbon accounting’, must have valid density fields (4.2.19)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a balanceset is specified with the flow kind=’hydrocarbon accounting’ (4.2.19)\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if flow/kind = ’hydrocarbon accounting’, must have valid density (4.2.19)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a density is specified with the flow kind=’hydrocarbon accounting’ (4.2.19)\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if flow/kind = ’hydrocarbon accounting’, must have valid density (4.2.19)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a density is specified with the flow kind=’hydrocarbon accounting’ (4.2.19)\"\n            ]\n        },\n        {\n            \"ruleName\": \"object/installation uidRef must match NPD factpages (2.2.3)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"object/installation uidRef must match NPD factpages (2.2.3)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"context/installation uidRef must match NPD factpages (2.2.2)\",\n            \"success\": false,\n            \"message\": [\n                \"The field does not match the required value\\n Invalid Field id 18116481\"\n            ]\n        },\n        {\n            \"ruleName\": \"context/installation uidRef must match NPD factpages (2.2.2)\",\n            \"success\": false,\n            \"message\": [\n                \"Field: GUDRUN FIELD contains no matching values.\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"uidRef of platform must be a number\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"uidRef of platform must be a number\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"uidRef of wellbore must be a number\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"uidRef of wellbore must be a number\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Name of wellbore must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of wellbore must match NPD factpages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Version number must be correct\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Version number must be correct\",\n            \"success\": true,\n            \"message\": null\n        }\n    ],\n    \"accessReport\": {\n        \"hasAccess\": true,\n        \"hasCorrectRole\": true,\n        \"missingAccesses\": [],\n        \"additionalInformation\": \"field with name GUDRUN FIELD is not found. \\n\",\n        \"all\": [\n            {\n                \"item1\": \"15/3-A-9\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"15/3-A-7\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"15/3-A-6\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"15/3-A-5 A\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"15/3-A-16\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"15/3-A-14\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"15/3-A-13\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"GUDRUN\",\n                \"item2\": true\n            }\n        ]\n    }\n}"}],"_postman_id":"d948f021-9bc1-456c-a027-283a56d233b5"},{"name":"Publish - Failed publishing of a monthly production report to the government containing invalid ids for field entities","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":[""],"type":"text/javascript"}}],"id":"cc5c1707-d6fb-4ed2-9125-1188c9e439dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"description":"<p>The OAUTH2 token as recieved from the authentication process</p>\n","key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"description":"<p>The report type to publish in this case it is a monthly produciton report to the government</p>\n","key":"Report-Type","type":"text","value":"MPR-GOV"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"},{"description":"<p>The subscription key for the calling company as supplied from Norsk Olje og gass</p>\n","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"formdata","formdata":[{"description":"<p>The file reference to the file that should be published. In this sample it is a generated sample data for Åsgard containing no real data but where the file contains naming references that is not according to the NPD naming nomenclature</p>\n","key":"file","type":"file","src":"api-documentation/mprml-gov/FAILURE_MPRMLGOV_VALIDATE_EQUINOR_GUDRUN_SCRAMBLED_INVALID_FIELD_ID.xml"}]},"url":"{{PublishAPI}}","description":"<p>An example how to send a request to the unified api publish service and where the recieving system validates the file and reports back that not all a field ids are according to the NPD fact pages meta data.</p>\n<ul>\n<li><strong>{{ValidateAPI}}</strong> - should be replaced by the URL as supplied from Norsk Olje og gass</li>\n<li><strong>{{bearerToken}}</strong> - is the authorization OAUTH2 token as recieved from the authentication process</li>\n<li><strong>{{opcSubscriptionKey}}</strong> - is api key as recieved from Norsk Olje og gass</li>\n</ul>\n<p>In case of any errors as identified in the service the response back will include a status <strong>success</strong> attribute where it will state <strong>false</strong> in case of an error.\nThe response back will also include an array of validation rules the data has gone through in the results element. Each validation rule will contain a name of the rule (<strong>ruleName</strong>) that was excuted and a status for the execution captured in the <strong>success</strong> element.</p>\n<p>In this example it is the xml data that is sent that contains invalid field id as e.g. ids on wells, wellbores, fields ++ should be according to the NPD fact pages. Below is a sample of the validation rule that fails and this is marked with a success=false.  </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n        \"ruleName\": \"/context/installation uidRef must match factpages\",\n        \"success\": false,\n        \"message\": [\n            \"The field does not match the required value\\n[RH-19] Invalid Field name Invalid field id 234332\"\n        ]\n}\n</code></pre>","urlObject":{"host":["{{PublishAPI}}"],"query":[],"variable":[]}},"response":[{"id":"f2cf6a34-425e-473d-bbcd-c3e4ae01527c","name":"Publish - Failed publishing of a monthly production report to the government containing invalid ids for field entities","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer xxx","description":"The OAUTH2 token as recieved from the authentication process","type":"text"},{"key":"Report-Type","value":"MPR-GOV","description":"The report type to publish in this case it is a monthly produciton report to the government","type":"text"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"Ocp-Apim-Subscription-Key","value":"xxxx","description":"The subscription key for the calling company as supplied from Norsk Olje og gass","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"The file reference to the file that should be published. In this sample it is a generated sample data for Åsgard containing no real data but where the file contains naming references that is not according to the NPD naming nomenclature","key":"file","type":"file","src":"/C:/temp/api-documentation/mprml-gov/FAILURE_MPRMLGOV_VALIDATE_EQUINOR_GUDRUN_SCRAMBLED_INVALID_FIELD_ID.xml"}]},"url":"{{PublishAPI}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"fileName\": \"FAILURE_MPRMLGOV_VALIDATE_EQUINOR_GUDRUN_SCRAMBLED_INVALID_FIELD_ID.xml\",\n    \"isReportFinal\": false,\n    \"reportType\": \"mprmlGov\",\n    \"success\": false,\n    \"resultCount\": 54,\n    \"results\": [\n        {\n            \"ruleName\": \"All reports must follow the XML schema. If this fails: XML schema validation failed\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must have Title field(2.1.1)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must contain report version(2.1.2)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must contain report status(2.1.3)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"/context/installation uidRef must match factpages. (2.1.4)\",\n            \"success\": false,\n            \"message\": [\n                \"The field does not match the required value\\n missing installation element\"\n            ]\n        },\n        {\n            \"ruleName\": \"Report must contain field /object/name (2.2.1)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"/objects/object/flow must contain uid attribute (2.2.4)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"All monthly production reports must have a valid 'month' field (4.1.1)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"All monthly production reports must have a 'reportVersion' field\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"All monthly production reports must have a valid 'reportStatus' field (4.1.2)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require element named 'name' (4.2.2)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require attribute named 'kind' (4.2.2)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require attribute named 'namingSystem' (4.2.2)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require attribute named 'uidRef' (4.2.2)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"It is required that no flow elementy is missing flow uid\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require field named 'kind' (4.2.3)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require field 'kind' only have supported values (4.2.4)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require product element (4.2.5)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require product kind only have supported values (4.2.6)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require facility/name attribute 'kind' only have supported values (4.2.7)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require Operation time not exceed 31 days  (4.2.8). Valid values for operationTime is 0-31.\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule Check if operationTime is specified\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require Operation time not exceed 31 days  (4.2.8). Valid values for operationTime is 0-31.\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require period has field 'kind' (4.2.9)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema require period attribute 'kind' only have supported values (4.2.9)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if balanceset is specified with flow kind = ’hydrocarbon accounting’, require that element 'balanceset' has elements 'kind', 'cargoNumber', 'destination' and 'balance'  (4.2.11)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a balanceset is specified with the flow kind=’hydrocarbon accounting’ (4.2.11)\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if balanceset is specified with flow kind = ’hydrocarbon accounting’, require that element 'destination/name' is present (4.2.12)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a balanceset is specified with the flow kind=’hydrocarbon accounting’ (4.2.12)\"\n            ]\n        },\n        {\n            \"ruleName\": \"Country name is not valid! NPD Diskos common schema if balanceset is specified with flow kind = ’hydrocarbon accounting’, require that element 'destination/country' is valid (4.2.13)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a balanceset is specified with the flow kind=’hydrocarbon accounting’ (4.2.13)\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if balanceset is specified with flow kind = ’hydrocarbon accounting’, require that element 'balanceDetail/owner' is valid (4.2.14)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a balanceset is specified with the flow kind=’hydrocarbon accounting’ (4.2.14)\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if balanceset is specified with flow kind = ’hydrocarbon accounting’, require that element 'balanceDetail/share' uom is % is present (4.2.15)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a balanceset is specified with the flow kind=’hydrocarbon accounting’ (4.2.15)\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if flow/kind = ’hydrocarbon accounting’, require sum of all element 'balanceDetail/share' to be 100% (4.2.16)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a balanceset is specified with the flow kind=’hydrocarbon accounting’ (4.2.16)\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if flow/kind = ’hydrocarbon accounting’, must have valid volume fields (4.2.17)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a balanceset is specified with the flow kind=’hydrocarbon accounting’ (4.2.17)\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if flow/kind = ’hydrocarbon accounting’, must have valid volumes (4.2.17)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a balanceset is specified with the flow kind=’hydrocarbon accounting’ (4.2.17)\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if flow/kind = ’hydrocarbon accounting’, must have valid volumes (4.2.17)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a balanceset is specified with the flow kind=’hydrocarbon accounting’ (4.2.17)\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if flow/kind = ’hydrocarbon accounting’, require mass to be kg or tons (4.2.18)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule Check if mass exists’ (4.2.18)\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if flow/kind = ’hydrocarbon accounting’, require mass to be kg or tons (4.2.18)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if flow/kind = ’hydrocarbon accounting’, must have valid density fields (4.2.19)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a balanceset is specified with the flow kind=’hydrocarbon accounting’ (4.2.19)\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if flow/kind = ’hydrocarbon accounting’, must have valid density (4.2.19)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a density is specified with the flow kind=’hydrocarbon accounting’ (4.2.19)\"\n            ]\n        },\n        {\n            \"ruleName\": \"NPD Diskos common schema if flow/kind = ’hydrocarbon accounting’, must have valid density (4.2.19)\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule Checks if a density is specified with the flow kind=’hydrocarbon accounting’ (4.2.19)\"\n            ]\n        },\n        {\n            \"ruleName\": \"object/installation uidRef must match NPD factpages (2.2.3)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"object/installation uidRef must match NPD factpages (2.2.3)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"context/installation uidRef must match NPD factpages (2.2.2)\",\n            \"success\": false,\n            \"message\": [\n                \"The field does not match the required value\\n Invalid Field id 234332\"\n            ]\n        },\n        {\n            \"ruleName\": \"context/installation uidRef must match NPD factpages (2.2.2)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"uidRef of platform must be a number\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"uidRef of platform must be a number\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"uidRef of wellbore must be a number\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"uidRef of wellbore must be a number\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Name of wellbore must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of wellbore must match NPD factpages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Version number must be correct\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Version number must be correct\",\n            \"success\": true,\n            \"message\": null\n        }\n    ],\n    \"accessReport\": {\n        \"hasAccess\": true,\n        \"hasCorrectRole\": true,\n        \"missingAccesses\": [],\n        \"additionalInformation\": \"\",\n        \"all\": [\n            {\n                \"item1\": \"15/3-A-9\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"15/3-A-7\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"15/3-A-6\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"15/3-A-5 A\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"15/3-A-16\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"15/3-A-14\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"15/3-A-13\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"GUDRUN\",\n                \"item2\": true\n            }\n        ]\n    }\n}"}],"_postman_id":"cc5c1707-d6fb-4ed2-9125-1188c9e439dc"}],"id":"c414db32-1db3-4328-9db5-07f319522e6f","description":"<p>A collection of common failures when publishing monthly production data to the government</p>\n","event":[{"listen":"prerequest","script":{"id":"df298ff4-6495-47ef-8549-70056471e721","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9e1a5624-1904-4765-81c9-762179507031","type":"text/javascript","exec":[""]}}],"_postman_id":"c414db32-1db3-4328-9db5-07f319522e6f"}],"id":"fe341992-af97-4906-8f7d-0503dc883417","description":"<p>The following folder contains example of publishing monthly production data to the government. By following this process data is published to both Collabor8 Subsurface and also DISKOS.</p>\n","event":[{"listen":"prerequest","script":{"id":"cfe55254-e794-431b-aead-fc8ca551ac61","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"b5cb7f8c-6aa2-405b-8dd2-c6d0034f37e6","type":"text/javascript","exec":[""]}}],"_postman_id":"fe341992-af97-4906-8f7d-0503dc883417"},{"name":"Monthly production report to partners","item":[{"name":"Sample succesful requests - Monthly production report to partners","item":[{"name":"Validate - Succesful validation of monthly production report to partners","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":[""],"type":"text/javascript"}}],"id":"6407feb9-db7f-469c-b4a5-dbd0d3f208a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"description":"<p>The OAUTH2 token as recieved from the authentication process</p>\n","key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"description":"<p>The report type to publish in this case it is a monthly production report to partners</p>\n","key":"Report-Type","type":"text","value":"MPR-PARTNER"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"},{"description":"<p>The subscription key for the calling company as supplied from Norsk Olje og gass</p>\n","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"formdata","formdata":[{"description":"<p>The file reference to the file that should be published. In this sample it is a generated sample data for Gudrun containing no real data </p>\n","key":"file","type":"file","src":"api-documentation/mprml-partner/SUCCESS_MPRMLPARTNER_VALIDATE_EQUINOR_GUDRUN_SCRAMBLED.xml"}]},"url":"{{ValidateAPI}}","description":"<p>An example how to send a request to the unified api validation service for publishing monthly production reports to the partners and where the recieving system validates the file and reports back a succesful validation result.</p>\n<ul>\n<li><strong>{{ValidateAPI}}</strong> - should be replaced by the URL as supplied from Norsk Olje og gass</li>\n<li><strong>{{bearerToken}}</strong> - is the authorization OAUTH2 token as recieved from the authentication process</li>\n<li><strong>{{opcSubscriptionKey}}</strong> - is api key as recieved from Norsk Olje og gass</li>\n</ul>\n","urlObject":{"host":["{{ValidateAPI}}"],"query":[],"variable":[]}},"response":[{"id":"be933751-79ac-41fc-9f4c-63416be383a3","name":"Validate - Succesful validation of monthly production report to partners","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer xxx","description":"The OAUTH2 token as recieved from the authentication process","type":"text"},{"key":"Report-Type","value":"MPR-PARTNER","description":"The report type to publish in this case it is a monthly production report to partners","type":"text"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"Ocp-Apim-Subscription-Key","value":"xxxx","description":"The subscription key for the calling company as supplied from Norsk Olje og gass","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"The file reference to the file that should be published. In this sample it is a generated sample data for Gudrun containing no real data ","key":"file","type":"file","src":"/C:/temp/api-documentation/mprml-gov/SUCCESS_MPRMLGOV_VALIDATE_EQUINOR_GUDRUN_SCRAMBLED.xml"}]},"url":"{{ValidateAPI}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"fileName\": \"SUCCESS_MPRMLGOV_VALIDATE_EQUINOR_GUDRUN_SCRAMBLED.xml\",\n    \"isReportFinal\": false,\n    \"reportType\": \"mprmlPartner\",\n    \"success\": true,\n    \"resultCount\": 12,\n    \"results\": [\n        {\n            \"ruleName\": \"All reports must follow the XML schema. If this fails: XML schema validation failed\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"All monthly production reports must have a valid 'DocumentDate' field (4.1.1)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"All monthly production reports must have a valid 'title' field (4.1.1)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"All monthly production reports must have a valid month element (4.1.1)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"All monthly production reports must have a 'reportVersion' field\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"It is required that no flow elementy is missing flow uid\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"All monthly production reports must have a valid installation element\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"All monthly production reports must have a valid 'reportStatus' field (4.1.2)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"object/installation uidRef must match NPD factpages (2.2.3)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"object/installation uidRef must match NPD factpages (2.2.3)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"context/installation uidRef must match NPD factpages (2.2.2)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"context/installation uidRef must match NPD factpages (2.2.2)\",\n            \"success\": true,\n            \"message\": null\n        }\n    ],\n    \"accessReport\": {\n        \"hasAccess\": true,\n        \"hasCorrectRole\": true,\n        \"missingAccesses\": [],\n        \"additionalInformation\": \"\",\n        \"all\": [\n            {\n                \"item1\": \"15/3-A-9\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"15/3-A-7\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"15/3-A-6\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"15/3-A-5 A\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"15/3-A-16\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"15/3-A-14\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"15/3-A-13\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"GUDRUN\",\n                \"item2\": true\n            }\n        ]\n    }\n}"}],"_postman_id":"6407feb9-db7f-469c-b4a5-dbd0d3f208a5"},{"name":"Publish - Succesful publishing of a monthly production report to partners","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","var jsonData = pm.response.json();","","pm.test(\"Status success is : false\", function () {","    pm.expect(jsonData.success).to.eql(false);","});","","pm.test(\"Report type is dpr20\", function () {","    pm.expect(jsonData.reportType.toLowerCase()).to.eql(\"dpr20\");","});","","pm.test(\"JSON success response ruleName All reports must follow xml schema is false\", function () {","//check that we have a success on the xml schema validation","testOk=false;","var xmlSchemaRuleName = pm.variables.get(\"ReportXMLSchemaRuleValidatioName\");","for (var i = 0; i < jsonData.results.length; i++)","{","    var ruleName = jsonData.results[i].ruleName;","    if (ruleName.toLowerCase().includes(xmlSchemaRuleName.toLowerCase())){","        //check that the xml schema validation rule has status false","        if (!jsonData.results[i].success){","            testOk=true;","        }","    }","}"," pm.expect(testOk).to.eql(true);","});","","//check that we have a reference to the actual xml schema errors","pm.test(\"Body contains xml schema errorMessage consume - pizzas and jalla as invalid enumeration values\", function () {","    pm.expect(pm.response.text()).to.include(\"consume - pizzas\");","    pm.expect(pm.response.text()).to.include(\"jalla\");","});",""],"type":"text/javascript"}}],"id":"d571a26a-af98-45a0-8859-0762446b0d67","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"description":"<p>The OAUTH2 token as recieved from the authentication process</p>\n","key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"description":"<p>The report type to publish in this case it is a  monthly production report to partners</p>\n","key":"Report-Type","type":"text","value":"MPR-PARTNER"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"},{"description":"<p>The subscription key for the calling company as supplied from Norsk Olje og gass</p>\n","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"formdata","formdata":[{"description":"<p>The file reference to the file that should be published. In this sample it is a generated sample data for Gudrun containing no real data </p>\n","key":"file","type":"file","src":"api-documentation/mprml-partner/SUCCESS_MPRMLPARTNER_VALIDATE_EQUINOR_GUDRUN_SCRAMBLED.xml"}]},"url":"{{PublishAPI}}","description":"<p>An example of how to publish a monthly production report to partners (MPRML Partners) and responding respons from the unified API.</p>\n<ul>\n<li><strong>{{ValidateAPI}}</strong> - should be replaced by the URL as supplied from Norsk Olje og gass</li>\n<li><strong>{{bearerToken}}</strong> - is the authorization OAUTH2 token as recieved from the authentication process</li>\n<li><strong>{{opcSubscriptionKey}}</strong> - is api key as recieved from Norsk Olje og gass</li>\n</ul>\n","urlObject":{"host":["{{PublishAPI}}"],"query":[],"variable":[]}},"response":[{"id":"ca4d0233-0ef3-4aa7-abce-c5b5bcea28e4","name":"Publish - Succesful publishing of a monthly production report to the government","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer xxx","description":"The OAUTH2 token as recieved from the authentication process","type":"text"},{"key":"Report-Type","value":"DPR20","description":"The report type to publish in this case it is a daily production report version 2","type":"text"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"Ocp-Apim-Subscription-Key","value":"xxx","description":"The subscription key for the calling company as supplied from Norsk Olje og gass","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"The file reference to the file that should be published. In this sample it is a generated sample data for Gudrun containing no real data ","key":"file","type":"file","src":"/C:/temp/api-documentation/mprml-gov/SUCCESS_MPRMLGOV_VALIDATE_EQUINOR_GUDRUN_SCRAMBLED.xml"}]},"url":"{{PublishAPI}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"fileName\": \"SUCCESS_MPRMLGOV_VALIDATE_EQUINOR_GUDRUN_SCRAMBLED.xml\",\n    \"fileReferenceId\": \"27108dd6-a705-4012-9689-df5516a4c14a\",\n    \"isReportFinal\": false,\n    \"reportType\": \"dpr20\",\n    \"success\": true,\n    \"resultCount\": 30,\n    \"results\": [\n        {\n            \"ruleName\": \"All reports must have a title\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must contain report version\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must have Title field\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must contain report status\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must contain installation with uidRef attribute\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"/context/installation field must exist\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must contain field /object/name\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"/objects/object/flow must contain uid attribute\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"installation uidRef must be a number\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"/context/installation uidRef must match factpages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"installation uidRef must be a number\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"installationReport/installation uidRef must be a number\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"uidRef of platform must be a number\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"uidRef of wellbore must be a number\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"uidRef of platform must be a number\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"uidRef of installation must be a number\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"uidRef of wellbore must be a number\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Name of wellName must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of platform must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Name of platform must match NPD factpages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Name of well must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite not met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"Version number must be correct\",\n            \"success\": true,\n            \"message\": [\n                \"Prerequisite met for rule There must be a installation field...\"\n            ]\n        },\n        {\n            \"ruleName\": \"All reports must follow the XML schema. If this fails: [RH-16] The markup in the document following the root element must be well-formed\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Name of installation must match NPD factpages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Version number must be correct\",\n            \"success\": true,\n            \"message\": null\n        }\n    ],\n    \"accessReport\": {\n        \"hasAccess\": true,\n        \"hasCorrectRole\": true,\n        \"missingAccesses\": [],\n        \"additionalInformation\": \"\",\n        \"all\": [\n            {\n                \"item1\": \"15/3-A-9\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"15/3-A-7\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"15/3-A-6\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"15/3-A-5 A\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"15/3-A-16\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"15/3-A-14\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"15/3-A-13\",\n                \"item2\": true\n            },\n            {\n                \"item1\": \"GUDRUN\",\n                \"item2\": true\n            }\n        ]\n    }\n}"}],"_postman_id":"d571a26a-af98-45a0-8859-0762446b0d67"}],"id":"a0d648d3-0d52-48a7-aba7-3c1a7597a6c7","description":"<p>The following collection of requests contains examples of how to interact with the unified api to publish monthly production report data to partners and how the Collabor8 Subsurface system will respond upon succesful processing of the data.</p>\n","event":[{"listen":"prerequest","script":{"id":"c7116484-60b7-4c5b-bcd7-d55560c06c38","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f4989a64-6b88-4f4b-983b-84df9a14e363","type":"text/javascript","exec":[""]}}],"_postman_id":"a0d648d3-0d52-48a7-aba7-3c1a7597a6c7"},{"name":"Sample failure situations - Monthly production report to partners","item":[{"name":"Publish - Failed publishing of a monthly production report to partners due to xml schema errors","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":[""],"type":"text/javascript"}}],"id":"1fddafc6-a169-4ff7-8713-2fdcac434ace","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"description":"<p>The OAUTH2 token as recieved from the authentication process</p>\n","key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"description":"<p>The report type to publish in this case it is a monthly production report to partners</p>\n","key":"Report-Type","type":"text","value":"MPR-PARTNER"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"},{"description":"<p>The subscription key for the calling company as supplied from Norsk Olje og gass</p>\n","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"formdata","formdata":[{"description":"<p>The file reference to the file that should be published. In this sample it is a generated sample data for Åsgard containing no real data but where the file is not according to the defined MPRML Government standard</p>\n","key":"file","type":"file","src":"api-documentation/mprml-partner/MPRMLPARTNER_VALIDATE_FAIL_SCHEMA_VALIDATION.xml"}]},"url":"{{PublishAPI}}","description":"<p>An example how to send a request to the unified api publish service and where the recieving system validates the file and reports back a failed xml schema validation result.</p>\n<ul>\n<li><strong>{{ValidateAPI}}</strong> - should be replaced by the URL as supplied from Norsk Olje og gass</li>\n<li><strong>{{bearerToken}}</strong> - is the authorization OAUTH2 token as recieved from the authentication process</li>\n<li><strong>{{opcSubscriptionKey}}</strong> - is api key as recieved from Norsk Olje og gass</li>\n</ul>\n<p>In case of any errors as identified in the service the response back will include a status <strong>success</strong> attribute where it will state <strong>false</strong> in case of an error.\nThe response back will also include an array of validation rules the data has gone through in the results element. Each validation rule will contain a name of the rule (<strong>ruleName</strong>) that was excuted and a status for the execution captured in the <strong>success</strong> element.</p>\n<p>In this example it is the xml schema validation rule that fails to validate that the incoming data is according to the daily production report standard. This is captured in the example in the rule:\"All reports must follow the XML schema\" where the success element has a status false.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n   \"ruleName\": \"All reports must follow the XML schema. If this fails: [RH-16] The markup in the document following the root element must be well-formed\",\n   \"success\": false,\n   \"message\": [\n        \"XML schema validation failed: The kind element is invalid - The value 'not a valid flow kind' is invalid according to its datatype ReportingFlow - The Enumeration constraint failed.\",\n        \"XML schema validation failed: The kind element is invalid - The value 'not a valid product' is invalid according to its datatype ReportingProduct - The Enumeration constraint failed.\"\n    ]\n}\n</code></pre>","urlObject":{"host":["{{PublishAPI}}"],"query":[],"variable":[]}},"response":[{"id":"d2b9f5a3-ee0e-4445-97ff-6b4754884641","name":"Publish - Failed publishing of a monthly production report to partners due to xml schema errors","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer xxx","description":"The OAUTH2 token as recieved from the authentication process","type":"text"},{"key":"Report-Type","value":"MPR-PARTNER","description":"The report type to publish in this case it is a monthly production report to partners","type":"text"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"Ocp-Apim-Subscription-Key","value":"xxx","description":"The subscription key for the calling company as supplied from Norsk Olje og gass","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"The file reference to the file that should be published. In this sample it is a generated sample data for Åsgard containing no real data but where the file is not according to the defined MPRML Government standard","key":"file","type":"file","src":"api-documentation/mprml-partner/MPRMLPARTNER_VALIDATE_FAIL_SCHEMA_VALIDATION.xml"}]},"url":"{{PublishAPI}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"fileName\": \"MPRMLPARTNER_VALIDATE_FAIL_SCHEMA_VALIDATION.xml\",\n    \"isReportFinal\": false,\n    \"reportType\": \"mprmlPartner\",\n    \"success\": false,\n    \"resultCount\": 12,\n    \"results\": [\n        {\n            \"ruleName\": \"All reports must follow the XML schema. If this fails: XML schema validation failed\",\n            \"success\": false,\n            \"message\": [\n                \"XML schema validation failed: The kind element is invalid - The value 'not a valid product kind' is invalid according to its datatype ReportingProduct - The Enumeration constraint failed.\"\n            ]\n        },\n        {\n            \"ruleName\": \"All monthly production reports must have a valid 'DocumentDate' field (4.1.1)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"All monthly production reports must have a valid 'title' field (4.1.1)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"All monthly production reports must have a valid month element (4.1.1)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"All monthly production reports must have a 'reportVersion' field\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"It is required that no flow elementy is missing flow uid\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"All monthly production reports must have a valid installation element\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"All monthly production reports must have a valid 'reportStatus' field (4.1.2)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"object/installation uidRef must match NPD factpages (2.2.3)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"object/installation uidRef must match NPD factpages (2.2.3)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"context/installation uidRef must match NPD factpages (2.2.2)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"context/installation uidRef must match NPD factpages (2.2.2)\",\n            \"success\": true,\n            \"message\": null\n        }\n    ],\n    \"accessReport\": {\n        \"hasAccess\": true,\n        \"hasCorrectRole\": true,\n        \"missingAccesses\": [],\n        \"additionalInformation\": \"\",\n        \"all\": [\n            {\n                \"resourceName\": \"15/3-A-9\",\n                \"hasAccess\": true\n            },\n            {\n                \"resourceName\": \"15/3-A-7\",\n                \"hasAccess\": true\n            },\n            {\n                \"resourceName\": \"15/3-A-6\",\n                \"hasAccess\": true\n            },\n            {\n                \"resourceName\": \"15/3-A-5 A\",\n                \"hasAccess\": true\n            },\n            {\n                \"resourceName\": \"15/3-A-16\",\n                \"hasAccess\": true\n            },\n            {\n                \"resourceName\": \"15/3-A-14\",\n                \"hasAccess\": true\n            },\n            {\n                \"resourceName\": \"15/3-A-13\",\n                \"hasAccess\": true\n            },\n            {\n                \"resourceName\": \"GUDRUN\",\n                \"hasAccess\": true\n            },\n            {\n                \"resourceName\": \"GUDRUN\",\n                \"hasAccess\": true\n            }\n        ]\n    }\n}"}],"_postman_id":"1fddafc6-a169-4ff7-8713-2fdcac434ace"},{"name":"Publish - Failed publishing of a monthly production report to partners due to naming errors","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":[""],"type":"text/javascript"}}],"id":"91348f55-6f97-428f-8367-a37ea02826c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"description":"<p>The OAUTH2 token as recieved from the authentication process</p>\n","key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"description":"<p>The report type to publish in this case it is a monthly production report to partners</p>\n","key":"Report-Type","type":"text","value":"MPR-PARTNER"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"},{"description":"<p>The subscription key for the calling company as supplied from Norsk Olje og gass</p>\n","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"formdata","formdata":[{"description":"<p>The file reference to the file that should be published. In this sample it is a generated sample data for Gudrun containing no real data but where the file contains naming references that is not according to the NPD naming nomenclature</p>\n","key":"file","type":"file","src":"api-documentation/mprml-partner/FAIL_MPRMLPARTNER_VALIDATE_EQUINOR_GUDRUN_INVALID_NAMES.xml"}]},"url":"{{PublishAPI}}","description":"<p>An example how to send a request to the unified api publish service and where the recieving system validates the file and reports back that not all wells and field names are according to the NPD fact pages meta data.</p>\n<ul>\n<li><strong>{{ValidateAPI}}</strong> - should be replaced by the URL as supplied from Norsk Olje og gass</li>\n<li><strong>{{bearerToken}}</strong> - is the authorization OAUTH2 token as recieved from the authentication process</li>\n<li><strong>{{opcSubscriptionKey}}</strong> - is api key as recieved from Norsk Olje og gass</li>\n</ul>\n<p>In case of any errors as identified in the service the response back will include a status <strong>success</strong> attribute where it will state <strong>false</strong> in case of an error.\nThe response back will also include an array of validation rules the data has gone through in the results element. Each validation rule will contain a name of the rule (<strong>ruleName</strong>) that was excuted and a status for the execution captured in the <strong>success</strong> element.</p>\n<p>In this example it is the xml data that is sent that contains invalid name references (in this case on the installationReport/installation element) as e.g. name on wells, wellbores, fields ++ should be according to the NPD fact pages. Below is a sample of the validation rule that fails and this is marked with a success=false.  </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n        \"ruleName\": \"Name of installation must match NPD factpages\",\n        \"success\": false,\n        \"message\": [\n            \"invalid facility name This is not a valid platform name\\n\"\n        ]\n}\n</code></pre>","urlObject":{"host":["{{PublishAPI}}"],"query":[],"variable":[]}},"response":[{"id":"3f62ef10-f913-4621-ba6d-1553c9bd870f","name":"Publish - Failed publishing of a monthly production report to partners due to naming errors","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer xxx","description":"The OAUTH2 token as recieved from the authentication process","type":"text"},{"key":"Report-Type","value":"MPR-PARTNER","description":"The report type to publish in this case it is a monthly production report to partners","type":"text"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"Ocp-Apim-Subscription-Key","value":"xxxx","description":"The subscription key for the calling company as supplied from Norsk Olje og gass","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"The file reference to the file that should be published. In this sample it is a generated sample data for Gudrun containing no real data but where the file contains naming references that is not according to the NPD naming nomenclature","key":"file","type":"file","src":"api-documentation/mprml-partner/FAIL_MPRMLPARTNER_VALIDATE_EQUINOR_GUDRUN_INVALID_NAMES.xml"}]},"url":"{{PublishAPI}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"fileName\": \"FAIL_MPRMLPARTNER_VALIDATE_EQUINOR_GUDRUN_INVALID_NAMES.xml\",\n    \"isReportFinal\": false,\n    \"reportType\": \"mprmlPartner\",\n    \"success\": false,\n    \"resultCount\": 12,\n    \"results\": [\n        {\n            \"ruleName\": \"All reports must follow the XML schema. If this fails: XML schema validation failed\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"All monthly production reports must have a valid 'DocumentDate' field (4.1.1)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"All monthly production reports must have a valid 'title' field (4.1.1)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"All monthly production reports must have a valid month element (4.1.1)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"All monthly production reports must have a 'reportVersion' field\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"It is required that no flow elementy is missing flow uid\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"All monthly production reports must have a valid installation element\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"All monthly production reports must have a valid 'reportStatus' field (4.1.2)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"object/installation uidRef must match NPD factpages (2.2.3)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"object/installation uidRef must match NPD factpages (2.2.3)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"context/installation uidRef must match NPD factpages (2.2.2)\",\n            \"success\": false,\n            \"message\": [\n                \"The field does not match the required value\\n Invalid Field id 18116481\"\n            ]\n        },\n        {\n            \"ruleName\": \"context/installation uidRef must match NPD factpages (2.2.2)\",\n            \"success\": false,\n            \"message\": [\n                \"Field: GUDRUN FIELD contains no matching values.\"\n            ]\n        }\n    ],\n    \"accessReport\": {\n        \"hasAccess\": true,\n        \"hasCorrectRole\": true,\n        \"missingAccesses\": [],\n        \"additionalInformation\": \"field with name GUDRUN FIELD is not found. \\n\",\n        \"all\": [\n            {\n                \"resourceName\": \"15/3-A-9\",\n                \"hasAccess\": true\n            },\n            {\n                \"resourceName\": \"15/3-A-7\",\n                \"hasAccess\": true\n            },\n            {\n                \"resourceName\": \"15/3-A-6\",\n                \"hasAccess\": true\n            },\n            {\n                \"resourceName\": \"15/3-A-5 A\",\n                \"hasAccess\": true\n            },\n            {\n                \"resourceName\": \"15/3-A-16\",\n                \"hasAccess\": true\n            },\n            {\n                \"resourceName\": \"15/3-A-14\",\n                \"hasAccess\": true\n            },\n            {\n                \"resourceName\": \"15/3-A-13\",\n                \"hasAccess\": true\n            },\n            {\n                \"resourceName\": \"GUDRUN\",\n                \"hasAccess\": true\n            },\n            {\n                \"resourceName\": \"GUDRUN\",\n                \"hasAccess\": true\n            }\n        ]\n    }\n}"}],"_postman_id":"91348f55-6f97-428f-8367-a37ea02826c7"},{"name":"Publish - Failed publishing of a monthly production report to partners containing invalid ids for field entities","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":[""],"type":"text/javascript"}}],"id":"916f115f-df02-4351-a148-71e7783e0a3e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"description":"<p>The OAUTH2 token as recieved from the authentication process</p>\n","key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"description":"<p>The report type to publish in this case it is a monthly production report to partners</p>\n","key":"Report-Type","type":"text","value":"MPR-PARTNER"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"},{"description":"<p>The subscription key for the calling company as supplied from Norsk Olje og gass</p>\n","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"formdata","formdata":[{"description":"<p>The file reference to the file that should be published. In this sample it is a generated sample data for Åsgard containing no real data but where the file contains naming references that is not according to the NPD naming nomenclature</p>\n","key":"file","type":"file","src":"api-documentation/mprml-partner/FAILURE_MPRMLPARTNER_VALIDATE_EQUINOR_GUDRUN_SCRAMBLED_INVALID_FIELD_ID.xml"}]},"url":"{{PublishAPI}}","description":"<p>An example how to send a request to the unified api publish service and where the recieving system validates the file and reports back that not all a field ids are according to the NPD fact pages meta data.</p>\n<ul>\n<li><strong>{{ValidateAPI}}</strong> - should be replaced by the URL as supplied from Norsk Olje og gass</li>\n<li><strong>{{bearerToken}}</strong> - is the authorization OAUTH2 token as recieved from the authentication process</li>\n<li><strong>{{opcSubscriptionKey}}</strong> - is api key as recieved from Norsk Olje og gass</li>\n</ul>\n<p>In case of any errors as identified in the service the response back will include a status <strong>success</strong> attribute where it will state <strong>false</strong> in case of an error.\nThe response back will also include an array of validation rules the data has gone through in the results element. Each validation rule will contain a name of the rule (<strong>ruleName</strong>) that was excuted and a status for the execution captured in the <strong>success</strong> element.</p>\n<p>In this example it is the xml data that is sent that contains invalid field id as e.g. ids on wells, wellbores, fields ++ should be according to the NPD fact pages. Below is a sample of the validation rule that fails and this is marked with a success=false.  </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n        \"ruleName\": \"/context/installation uidRef must match factpages\",\n        \"success\": false,\n        \"message\": [\n            \"The field does not match the required value\\n[RH-19] Invalid Field name Invalid field id 234332\"\n        ]\n}\n</code></pre>","urlObject":{"host":["{{PublishAPI}}"],"query":[],"variable":[]}},"response":[{"id":"35de3a31-2d0b-4b74-88c5-641773d10033","name":"Publish - Failed publishing of a monthly production report to partners containing invalid ids for field entities","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer xxx","description":"The OAUTH2 token as recieved from the authentication process","type":"text"},{"key":"Report-Type","value":"MPR-PARTNER","description":"The report type to publish in this case it is a monthly production report to partners","type":"text"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"Ocp-Apim-Subscription-Key","value":"xxxx","description":"The subscription key for the calling company as supplied from Norsk Olje og gass","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"The file reference to the file that should be published. In this sample it is a generated sample data for Åsgard containing no real data but where the file contains naming references that is not according to the NPD naming nomenclature","key":"file","type":"file","src":"api-documentation/mprml-partner/FAILURE_MPRMLPARTNER_VALIDATE_EQUINOR_GUDRUN_SCRAMBLED_INVALID_FIELD_ID.xml"}]},"url":"{{PublishAPI}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"fileName\": \"FAILURE_MPRMLPARTNER_VALIDATE_EQUINOR_GUDRUN_SCRAMBLED_INVALID_FIELD_ID.xml\",\n    \"isReportFinal\": false,\n    \"reportType\": \"mprmlPartner\",\n    \"success\": false,\n    \"resultCount\": 12,\n    \"results\": [\n        {\n            \"ruleName\": \"All reports must follow the XML schema. If this fails: XML schema validation failed\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"All monthly production reports must have a valid 'DocumentDate' field (4.1.1)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"All monthly production reports must have a valid 'title' field (4.1.1)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"All monthly production reports must have a valid month element (4.1.1)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"All monthly production reports must have a 'reportVersion' field\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"It is required that no flow elementy is missing flow uid\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"All monthly production reports must have a valid installation element\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"All monthly production reports must have a valid 'reportStatus' field (4.1.2)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"object/installation uidRef must match NPD factpages (2.2.3)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"object/installation uidRef must match NPD factpages (2.2.3)\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"context/installation uidRef must match NPD factpages (2.2.2)\",\n            \"success\": false,\n            \"message\": [\n                \"The field does not match the required value\\n Invalid Field id 234332\"\n            ]\n        },\n        {\n            \"ruleName\": \"context/installation uidRef must match NPD factpages (2.2.2)\",\n            \"success\": true,\n            \"message\": null\n        }\n    ],\n    \"accessReport\": {\n        \"hasAccess\": true,\n        \"hasCorrectRole\": true,\n        \"missingAccesses\": [],\n        \"additionalInformation\": \"\",\n        \"all\": [\n            {\n                \"resourceName\": \"15/3-A-9\",\n                \"hasAccess\": true\n            },\n            {\n                \"resourceName\": \"15/3-A-7\",\n                \"hasAccess\": true\n            },\n            {\n                \"resourceName\": \"15/3-A-6\",\n                \"hasAccess\": true\n            },\n            {\n                \"resourceName\": \"15/3-A-5 A\",\n                \"hasAccess\": true\n            },\n            {\n                \"resourceName\": \"15/3-A-16\",\n                \"hasAccess\": true\n            },\n            {\n                \"resourceName\": \"15/3-A-14\",\n                \"hasAccess\": true\n            },\n            {\n                \"resourceName\": \"15/3-A-13\",\n                \"hasAccess\": true\n            },\n            {\n                \"resourceName\": \"GUDRUN\",\n                \"hasAccess\": true\n            },\n            {\n                \"resourceName\": \"GUDRUN\",\n                \"hasAccess\": true\n            },\n            {\n                \"resourceName\": \"GUDRUN\",\n                \"hasAccess\": true\n            }\n        ]\n    }\n}"}],"_postman_id":"916f115f-df02-4351-a148-71e7783e0a3e"}],"id":"2844dd2e-c975-400d-9307-1e1d07c71026","event":[{"listen":"prerequest","script":{"id":"df298ff4-6495-47ef-8549-70056471e721","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9e1a5624-1904-4765-81c9-762179507031","type":"text/javascript","exec":[""]}}],"_postman_id":"2844dd2e-c975-400d-9307-1e1d07c71026","description":""}],"id":"02eda66b-f16f-437f-a3de-7f7102e8aa48","description":"<p>The following folder contains example of publishing monthly production data to partners. Publishing monthly production data to the partners in a given license often involves sharing a dataset with higher resolution and details than e.g. a monthly production dataset to the government contains.</p>\n","event":[{"listen":"prerequest","script":{"id":"1a730083-1d5f-414b-b5b9-7d3d72aa39f1","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"e2ec6b5a-85f5-4ead-a8f1-d550c9746591","type":"text/javascript","exec":[""]}}],"_postman_id":"02eda66b-f16f-437f-a3de-7f7102e8aa48"}],"id":"cb59b86a-dc77-4116-ac88-3578cd0f395d","description":"<p>The following example suite contains examples relating to publishing of monthly production reports and example of possible failure situations. </p>\n<p>Publishing of mothly production report data builds on using the standard as used on the Norwegian continental shelf and that utilises a standard nomenclature and a standard xml schema that defines the rules for transport of the data.\nTo describe the monthly production reporting standard and associated processes the abbreviation <strong>MPRML (Monthly production reporting machine language)</strong> is often used.</p>\n<p>The standard for monthly production reporting comes in 2 versions</p>\n<ul>\n<li><strong>Monthly production reporting to the government (MPRML Government)</strong> - the requirments of reporting monthly production data to the government.</li>\n<li><strong>Monthly production reporting to the partners (MPRML Partners)</strong> - to support submittal and sharing of monthly production data from the operator to the partners.</li>\n</ul>\n<p>Note that both variants utilises the same version of the xml schema standard. Hence the difference beeing the level of detail one include when reporting, e.g. the monthly production reporting to the government is largely data aggregated on a monthly basis while the monthly production reporting to the partners could be updated daily numbers.</p>\n<p>As for other services authentication is done using OAUTH2 (see authentication section for more details). Publishing and validation of production and drilling data is done using one unified service where the caller uses the  <strong>Report-Type</strong> header do describe the type of report to be submitted. For Monthly production reports to the government this should be set to <strong>MPR-GOV</strong> as seen in the example requests.</p>\n<p>When publishing a monthly production report to the government (MPRML Government) the data is also published and validated against DISKOS.</p>\n","event":[{"listen":"prerequest","script":{"id":"83567bfd-976b-4676-b5d9-d2e7a07acf22","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9df63895-d80c-484c-a0a5-eded8af8b40f","type":"text/javascript","exec":[""]}}],"_postman_id":"cb59b86a-dc77-4116-ac88-3578cd0f395d"},{"name":"Publishing and validating - Daily Drilling Reports","item":[{"name":"Sample successful requests - Daily drilling reports","item":[{"name":"Get AAD token - Succesful authentication for a drilling user","event":[{"listen":"test","script":{"id":"dc505307-d2df-498d-85ed-c2563e017918","exec":["pm.globals.set(\"bearerToken\", pm.response.json().access_token);"],"type":"text/javascript"}}],"id":"8be3c632-01b9-4a8d-8375-9cf73d84af4a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","type":"text","value":"client_credentials"},{"key":"client_id","type":"text","value":"{{Azure-Client-Id}}"},{"key":"client_secret","type":"text","value":"{{Azure-Client-Secret}}"},{"key":"resource","type":"text","value":"{{ResourceId-Azure}}"}]},"url":"https://login.microsoftonline.com/{{TenantId-Azure}}/oauth2/token","description":"<p>The following is a sample of a succesful authentication against the Unified Azure API.</p>\n<p>The request requires the following to be placed in the http header following standard OAUTH2 mechanisms and specification.</p>\n<ul>\n<li>client_id</li>\n<li>grant_type</li>\n<li>client_secret</li>\n<li>resource</li>\n</ul>\n<p>The http request should be a post with the above http parameters filled out against the url: <a href=\"https://login.microsoftonline.com/%7B%7BTenantId-Azure%7D%7D/oauth2/token\">https://login.microsoftonline.com/{{TenantId-Azure}}/oauth2/token</a>. Where the {{TenantId-Azure}} is supplied from Norsk olje og gass.</p>\n<p>In the sample request below things marked in <strong>{{Value}}</strong> e.g. <strong>{{Azure-Client-Id}}</strong> is entries that should be replaced by values as supplied from Norsk olje og gass.</p>\n<p>The request that comes back if authentication is succesful will contain an access_token (see example response) that can be used for subsequent authentication against the actual API's and then this should be supplied as a bearer token the http header for calls for exposed services.</p>\n","urlObject":{"protocol":"https","path":["{{TenantId-Azure}}","oauth2","token"],"host":["login","microsoftonline","com"],"query":[],"variable":[]}},"response":[{"id":"20067437-bd33-4e8a-97db-f045a1956952","name":"Get AAD token - Succesful authentication","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","type":"text","value":"client_credentials"},{"key":"client_id","type":"text","value":"XXXX"},{"key":"client_secret","type":"text","value":"XXX"},{"key":"resource","type":"text","value":"XXX"}]},"url":"https://login.microsoftonline.com/{{TenantId-Azure}}/oauth2/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"token_type\": \"Bearer\",\n    \"expires_in\": \"3600\",\n    \"ext_expires_in\": \"3600\",\n    \"expires_on\": \"1574107996\",\n    \"not_before\": \"1574104096\",\n    \"resource\": \"xxxx\",\n    \"access_token\": \"xxxxxx\"\n}"}],"_postman_id":"8be3c632-01b9-4a8d-8375-9cf73d84af4a"},{"name":"Validate - Success when sending one valid daily drilling xml file","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","var jsonData = pm.response.json();","","pm.test(\"Status success is : success\", function () {","    pm.expect(jsonData.success).to.eql(true);","});","","pm.test(\"Report type is ddrml\", function () {","    pm.expect(jsonData.reportType.toLowerCase()).to.eql(\"ddrml\");","});","",""],"type":"text/javascript"}}],"id":"294d1ce8-4aa6-4efc-a447-a3e13b5b2f06","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"description":"<p>The OAUTH2 token as recieved from the authentication process</p>\n","key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"description":"<p>The type of report to publish in this case a DDR-GOV</p>\n","key":"Report-Type","type":"text","value":"DDR-GOV"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"},{"description":"<p>The subscription key as recieved from Norsk olje og gass</p>\n","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"formdata","formdata":[{"description":"<p>Sample ddrml file </p>\n","key":"file","type":"file","src":"DDRML/DDRML_SUCCESS_EQUINOR.xml"}]},"url":"{{ValidateAPI}}","description":"<p>Validation should be success when sending one valid xml file. The json result coming back should have a success:true attribute meaning that all validation rules passed successfully.</p>\n","urlObject":{"host":["{{ValidateAPI}}"],"query":[],"variable":[]}},"response":[{"id":"b9348dc7-5074-4089-93f8-ffcb4687b323","name":"Validate - Success when sending one valid daily drilling xml file","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer XXXX","description":"The OAUTH2 token as recieved from the authentication process","type":"text"},{"key":"Report-Type","value":"DDR-GOV","description":"The type of report to publish in this case a DDR-GOV","type":"text"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"Ocp-Apim-Subscription-Key","value":"XXXX","description":"The subscription key as recieved from Norsk olje og gass","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"Sample ddrml file ","key":"file","type":"file","src":"DDRML/DDRML_SUCCESS_EQUINOR.xml"}]},"url":"{{ValidateAPI}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"fileName\": \"DDRML_SUCCESS_EQUINOR.xml\",\n    \"isReportFinal\": false,\n    \"reportType\": \"ddrml\",\n    \"success\": true,\n    \"resultCount\": 8,\n    \"results\": [\n        {\n            \"ruleName\": \"If rigAlias/namingsystem is 'NPD code' /drillReport/wellboreInfo/rigAlias/name must match name in NPD FactPages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"All reports must follow the XML schema\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"If a report naming system is 'NPD code' /drillReport/wellboreAlias/name must match name in NPD FactPages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"If a report naming system is 'NPD number' /drillReport/wellboreAlias/name must match name in NPD FactPages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"WellboreAlias name and id must match\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"/wellboreInfo/operator must match the owner of the well in NPD FactPages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"If a report naming system is 'NPD Name' /drillReport/wellboreInfo/rigAlias/name must match name in NPD FactPages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Rig alias name and id must match\",\n            \"success\": true,\n            \"message\": null\n        }\n    ],\n    \"accessReport\": {\n        \"hasAccess\": true,\n        \"hasCorrectRole\": true,\n        \"missingAccesses\": [],\n        \"additionalInformation\": \"\",\n        \"all\": [\n            {\n                \"resourceName\": \"31/2-P-24 CY1H\",\n                \"hasAccess\": true\n            }\n        ]\n    }\n}"}],"_postman_id":"294d1ce8-4aa6-4efc-a447-a3e13b5b2f06"},{"name":"Publish - Success when sending one valid daily drilling xml file","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","var jsonData = pm.response.json();","","pm.test(\"Status success is : success\", function () {","    pm.expect(jsonData.success).to.eql(true);","});","","pm.test(\"Report type is ddrml\", function () {","    pm.expect(jsonData.reportType.toLowerCase()).to.eql(\"ddrml\");","});","",""],"type":"text/javascript"}}],"id":"6eed8633-bfed-4671-ae16-cf2dcf96a8f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"description":"<p>The OAUTH2 token as recieved from the authentication process</p>\n","key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"description":"<p>The type of report to publish in this case a DDR-GOV</p>\n","key":"Report-Type","type":"text","value":"DDR-GOV"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"},{"description":"<p>The subscription key as recieved from Norsk olje og gass</p>\n","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"formdata","formdata":[{"description":"<p>Sample ddrml file </p>\n","key":"file","type":"file","src":"DDRML/DDRML_SUCCESS_EQUINOR.xml"}]},"url":"{{PublishAPI}}","description":"<p>Publishin should be success when sending one valid xml file. The json result coming back should have a success:true attribute meaning that all validation rules passed successfully.</p>\n","urlObject":{"host":["{{PublishAPI}}"],"query":[],"variable":[]}},"response":[{"id":"9ece8072-5662-49ec-99b1-ddf9628111c0","name":"Publish - Success when sending one valid daily drilling xml file","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer xxx","description":"The OAUTH2 token as recieved from the authentication process","type":"text"},{"key":"Report-Type","value":"DDR-GOV","description":"The type of report to publish in this case a DDR-GOV","type":"text"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"Ocp-Apim-Subscription-Key","value":"xxxx","description":"The subscription key as recieved from Norsk olje og gass","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"Sample ddrml file ","key":"file","type":"file","src":"DDRML/DDRML_SUCCESS_EQUINOR.xml"}]},"url":"{{PublishAPI}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"fileName\": \"DDRML_SUCCESS_EQUINOR.xml\",\n    \"isReportFinal\": false,\n    \"reportType\": \"ddrml\",\n    \"success\": true,\n    \"resultCount\": 8,\n    \"results\": [\n        {\n            \"ruleName\": \"If rigAlias/namingsystem is 'NPD code' /drillReport/wellboreInfo/rigAlias/name must match name in NPD FactPages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"All reports must follow the XML schema\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"If a report naming system is 'NPD code' /drillReport/wellboreAlias/name must match name in NPD FactPages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"If a report naming system is 'NPD number' /drillReport/wellboreAlias/name must match name in NPD FactPages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"WellboreAlias name and id must match\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"/wellboreInfo/operator must match the owner of the well in NPD FactPages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"If a report naming system is 'NPD Name' /drillReport/wellboreInfo/rigAlias/name must match name in NPD FactPages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Rig alias name and id must match\",\n            \"success\": true,\n            \"message\": null\n        }\n    ],\n    \"accessReport\": {\n        \"hasAccess\": true,\n        \"hasCorrectRole\": true,\n        \"missingAccesses\": [],\n        \"additionalInformation\": \"\",\n        \"all\": [\n            {\n                \"resourceName\": \"31/2-P-24 CY1H\",\n                \"hasAccess\": true\n            }\n        ]\n    }\n}"}],"_postman_id":"6eed8633-bfed-4671-ae16-cf2dcf96a8f4"}],"id":"7ce84314-24a1-4410-9d61-db02d9242832","description":"<p>The following collection contains examples of expected requests and responses when publishing daily drilling reports.</p>\n","_postman_id":"7ce84314-24a1-4410-9d61-db02d9242832"},{"name":"Sample failure situations","item":[{"name":"Publish - Failure when sending one daily drilling xml file not conforming to the standard","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":[""],"type":"text/javascript"}}],"id":"a217d365-39b2-4256-a422-a355b5683647","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"description":"<p>The OAUTH2 token as recieved from the authentication process</p>\n","key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"description":"<p>The type of report to publish in this case a DDR-GOV</p>\n","key":"Report-Type","type":"text","value":"DDR-GOV"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"},{"description":"<p>The subscription key as recieved from Norsk olje og gass</p>\n","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"formdata","formdata":[{"description":"<p>Sample ddrml file containing a fault meaning that it is not valid according to the DDRML standard</p>\n","key":"file","type":"file","src":"/C:/temp/api-documentation/ddrml/DDRML_SAMPLE_FAILURE_INVALID_DUE_TO_NOT_FOLLOWING_STANDARD.xml"}]},"url":"{{PublishAPI}}","description":"<p>An example of a failure encountered when sending an xml file that is not valid according to the DDRML xml standard.</p>\n<p>When coming back from the service the success would be false and the rule <strong>All reports most follow the XML schema</strong> should have a status of \"false\" and the message would contain information with respect to what was failing.</p>\n","urlObject":{"host":["{{PublishAPI}}"],"query":[],"variable":[]}},"response":[{"id":"e3d8b1ce-1fb6-4c25-af69-ef565d316d2d","name":"Publish - Failure when sending one daily drilling xml file not conforming to the standard","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer xxx","description":"The OAUTH2 token as recieved from the authentication process","type":"text"},{"key":"Report-Type","value":"DDR-GOV","description":"The type of report to publish in this case a DDR-GOV","type":"text"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"Ocp-Apim-Subscription-Key","value":"xxxx","description":"The subscription key as recieved from Norsk olje og gass","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"Sample ddrml file containing a fault meaning that it is not valid according to the DDRML standard","key":"file","type":"file","src":"/C:/temp/api-documentation/ddrml/DDRML_SAMPLE_FAILURE_INVALID_DUE_TO_NOT_FOLLOWING_STANDARD.xml"}]},"url":"{{PublishAPI}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"fileName\": \"DDRML_SAMPLE_FAILURE_INVALID_DUE_TO_NOT_FOLLOWING_STANDARD.xml\",\n    \"isReportFinal\": false,\n    \"reportType\": \"ddrml\",\n    \"success\": false,\n    \"resultCount\": 8,\n    \"results\": [\n        {\n            \"ruleName\": \"If rigAlias/namingsystem is 'NPD code' /drillReport/wellboreInfo/rigAlias/name must match name in NPD FactPages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"All reports must follow the XML schema\",\n            \"success\": false,\n            \"message\": [\n                \"XML schema validation failed: The proprietaryCode element is invalid - The value 'drilling -- doing nothing' is invalid according to its datatype ActivityCodeNPD - The Enumeration constraint failed.\"\n            ]\n        },\n        {\n            \"ruleName\": \"If a report naming system is 'NPD code' /drillReport/wellboreAlias/name must match name in NPD FactPages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"If a report naming system is 'NPD number' /drillReport/wellboreAlias/name must match name in NPD FactPages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"WellboreAlias name and id must match\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"/wellboreInfo/operator must match the owner of the well in NPD FactPages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"If a report naming system is 'NPD Name' /drillReport/wellboreInfo/rigAlias/name must match name in NPD FactPages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Rig alias name and id must match\",\n            \"success\": true,\n            \"message\": null\n        }\n    ],\n    \"accessReport\": {\n        \"hasAccess\": true,\n        \"hasCorrectRole\": true,\n        \"missingAccesses\": [],\n        \"additionalInformation\": \"\",\n        \"all\": [\n            {\n                \"resourceName\": \"15/6-B-2\",\n                \"hasAccess\": true\n            }\n        ]\n    }\n}"}],"_postman_id":"a217d365-39b2-4256-a422-a355b5683647"},{"name":"Publish - Failure when sending one daily drilling xml file with an invalid wellbore name","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":[""],"type":"text/javascript"}}],"id":"94f25dfb-5cc8-4538-af92-650da9b1b0a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"description":"<p>The OAUTH2 token as recieved from the authentication process</p>\n","key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"description":"<p>The type of report to publish in this case a DDR-GOV</p>\n","key":"Report-Type","type":"text","value":"DDR-GOV"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"},{"description":"<p>The subscription key as recieved from Norsk olje og gass</p>\n","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"formdata","formdata":[{"description":"<p>Sample ddrml file containing a wellbore with an invalid name</p>\n","key":"file","type":"file","src":"/C:/temp/api-documentation/ddrml/DDRML_SAMPLE_FAILURE_INVALID_WELLBORENAME.xml"}]},"url":"{{PublishAPI}}","description":"<p>An example of a failure encountered when sending an xml file that contains a wellbore with a name that is not valid according to the NPD factpages. </p>\n<p>When coming back from the service the success would be false and the rule <strong>All reports most follow the XML schema</strong> should have a status of \"false\" and the message would contain information with respect to what was failing.</p>\n","urlObject":{"host":["{{PublishAPI}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"94f25dfb-5cc8-4538-af92-650da9b1b0a0"},{"name":"Publish - Failure when sending one daily drilling xml file with an invalid rig name","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","",""],"type":"text/javascript"}}],"id":"399ccbec-4184-4223-acd2-9db73fecc478","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"description":"<p>The OAUTH2 token as recieved from the authentication process</p>\n","key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"description":"<p>The type of report to publish in this case a DDR-GOV</p>\n","key":"Report-Type","type":"text","value":"DDR-GOV"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"},{"description":"<p>The subscription key as recieved from Norsk olje og gass</p>\n","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"formdata","formdata":[{"description":"<p>Sample ddrml file containing a rig with an invalid name</p>\n","key":"file","type":"file","src":"/C:/temp/api-documentation/ddrml/DDRML_SAMPLE_FAILURE_INVALID_RIGNAME.xml"}]},"url":"{{PublishAPI}}","description":"<p>An example of a failure encountered when sending an xml file that contains a drilling rig with a name that is not valid according to the NPD factpages. </p>\n<p>When coming back from the service the success would be false and the rule <strong>If a report naming system is 'NPD Name' /drillReport/wellboreInfo/rigAlias/name must match name in NPD FactPages\"</strong> should have a status of \"false\" and the message would contain information with respect to what was failing.</p>\n","urlObject":{"host":["{{PublishAPI}}"],"query":[],"variable":[]}},"response":[{"id":"dec69572-d152-45c5-9c3d-6e1c44a1a3cc","name":"Publish - Failure when sending one daily drilling xml file with an invalid rig name","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer xxxx","description":"The OAUTH2 token as recieved from the authentication process","type":"text"},{"key":"Report-Type","value":"DDR-GOV","description":"The type of report to publish in this case a DDR-GOV","type":"text"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"Ocp-Apim-Subscription-Key","value":"xxxx","description":"The subscription key as recieved from Norsk olje og gass","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"Sample ddrml file containing a rig with an invalid name","key":"file","type":"file","src":"/C:/temp/api-documentation/ddrml/DDRML_SAMPLE_FAILURE_INVALID_RIGNAME.xml"}]},"url":"{{PublishAPI}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"fileName\": \"DDRML_SAMPLE_FAILURE_INVALID_RIGNAME.xml\",\n    \"isReportFinal\": false,\n    \"reportType\": \"ddrml\",\n    \"success\": false,\n    \"resultCount\": 8,\n    \"results\": [\n        {\n            \"ruleName\": \"If rigAlias/namingsystem is 'NPD code' /drillReport/wellboreInfo/rigAlias/name must match name in NPD FactPages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"All reports must follow the XML schema\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"If a report naming system is 'NPD code' /drillReport/wellboreAlias/name must match name in NPD FactPages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"If a report naming system is 'NPD number' /drillReport/wellboreAlias/name must match name in NPD FactPages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"WellboreAlias name and id must match\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"/wellboreInfo/operator must match the owner of the well in NPD FactPages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"If a report naming system is 'NPD Name' /drillReport/wellboreInfo/rigAlias/name must match name in NPD FactPages\",\n            \"success\": false,\n            \"message\": [\n                \"Field: MÆRSK RIG contains no matching values.\"\n            ]\n        },\n        {\n            \"ruleName\": \"Rig alias name and id must match\",\n            \"success\": true,\n            \"message\": null\n        }\n    ],\n    \"accessReport\": {\n        \"hasAccess\": true,\n        \"hasCorrectRole\": true,\n        \"missingAccesses\": [],\n        \"additionalInformation\": \"\",\n        \"all\": [\n            {\n                \"resourceName\": \"15/6-B-2\",\n                \"hasAccess\": true\n            }\n        ]\n    }\n}"}],"_postman_id":"399ccbec-4184-4223-acd2-9db73fecc478"}],"id":"afa3a7db-e5ad-4645-a46f-ab9c375c68c8","description":"<p>The following folder contains examples of common errors encountered during publishing of daily drilling reports.</p>\n","_postman_id":"afa3a7db-e5ad-4645-a46f-ab9c375c68c8"}],"id":"78e6f222-7197-4118-85a5-ca9f5680d9b7","description":"<p>The following collection contains examples of how to publish and validate daily drilling and activity reports as are to be submitted on a daily basis to the government during drilling operations.</p>\n<p>Data that should be submitted should follow the Daily Drilling Reporting xml standard (DDRML) and the service will addition make sure that e.g. the correct wellbore names and so on are used.</p>\n<p>When publishing a daily drilling report the system will also automatically create a viewable PDF report of the data which will be available to download in the system as well as it will distributed to L2S if configured.</p>\n","event":[{"listen":"prerequest","script":{"id":"b5199f33-98ec-42ce-b77e-0f3553561e17","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d96be61a-53e2-4f06-8fcd-30acd5fdb6f5","type":"text/javascript","exec":[""]}}],"_postman_id":"78e6f222-7197-4118-85a5-ca9f5680d9b7"},{"name":"Publishing and validating monthly emissions data","item":[{"name":"Sample succesful requests","item":[{"name":"Validate - Succesful validation of monthly emission data json file","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":[""],"type":"text/javascript","packages":{}}}],"id":"0f20a58f-7267-4374-8d03-d0dbd282fbb9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer {{bearerToken}}","description":"<p>The OAUTH2 token as recieved from the authentication process</p>\n","type":"text"},{"key":"Report-Type","value":"EmissionData","description":"<p>The report type to publish in this case it is a monthly json emissions file</p>\n","type":"text"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"Ocp-Apim-Subscription-Key","value":"{{opcSubscriptionKey}}","description":"<p>The subscription key for the calling company as supplied from Norsk Olje og gass</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"<p>The file reference to the file that should be published. In this sample it is a generated sample data for Åsgard containing no real data </p>\n","key":"file","type":"file","src":"/media/magnus/hdd1/subsurface-collab8/python/SubsurfaceTestSuite/Data/testcase_data/emissions/emission_valid_file.json"}]},"url":"{{ValidateAPI}}","description":"<p>An example how to send a request to the unified api validation service and where the recieving system validates the file and reports back a succesful validation result.</p>\n<ul>\n<li><p><strong>{{ValidateAPI}}</strong> - should be replaced by the URL as supplied from Offshore Norge</p>\n</li>\n<li><p><strong>{{bearerToken}}</strong> - is the authorization OAUTH2 token as recieved from the authentication process</p>\n</li>\n<li><p><strong>{{opcSubscriptionKey}}</strong> - is api key as recieved from Norsk Olje og gass</p>\n</li>\n</ul>\n","urlObject":{"host":["{{ValidateAPI}}"],"query":[],"variable":[]}},"response":[{"id":"8fa82f47-47f3-457c-8fae-67e4485d8f60","name":"Validate - Succesful validation of daily production report version 2.0 xml report file","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer xxxxx","description":"The OAUTH2 token as recieved from the authentication process","type":"text"},{"key":"Report-Type","value":"EmissionData","description":"The report type to publish in this case it is a monthly json emissions file","type":"text"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"Ocp-Apim-Subscription-Key","value":"xxxx","description":"The subscription key for the calling company as supplied from Norsk Olje og gass","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"The file reference to the file that should be published. In this sample it is a generated sample data for Åsgard containing no real data ","key":"file","type":"file","src":"/media/magnus/hdd1/subsurface-collab8/python/SubsurfaceTestSuite/Data/testcase_data/emissions/emission_valid_file.json"}]},"url":"{{ValidateAPI}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"fileName\": \"emission_valid_file.json\",\n    \"reportId\": \"d99f45da-56e6-64dc-f7c2-ac3f51092b93\",\n    \"isReportFinal\": false,\n    \"reportType\": \"EmissionData\",\n    \"success\": true,\n    \"resultCount\": 3,\n    \"results\": [\n        {\n            \"ruleName\": \"File Validation succeeded\",\n            \"success\": true,\n            \"message\": [\n                \"\"\n            ]\n        },\n        {\n            \"ruleName\": \"Store emission metadata in Elastic Search succeeded\",\n            \"success\": true,\n            \"message\": [\n                null\n            ]\n        },\n        {\n            \"ruleName\": \"Store report succeeded\",\n            \"success\": true,\n            \"message\": [\n                null\n            ]\n        }\n    ],\n    \"accessReport\": {\n        \"hasAccess\": true,\n        \"hasCorrectRole\": true,\n        \"missingAccesses\": [],\n        \"additionalInformation\": \"\",\n        \"all\": [\n            {\n                \"resourceName\": \"ÅSGARD\",\n                \"hasAccess\": true\n            }\n        ],\n        \"missingAccessesWithDetails\": {}\n    }\n}"}],"_postman_id":"0f20a58f-7267-4374-8d03-d0dbd282fbb9"},{"name":"Publish - Succesful publish of monthly emission data json file","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":[""],"type":"text/javascript"}}],"id":"2b566368-ad06-4ad3-b949-9a30757e60ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"description":"<p>The OAUTH2 token as recieved from the authentication process</p>\n","key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"description":"<p>The report type to publish in this case it is a daily production report version 2</p>\n","key":"Report-Type","type":"text","value":"DPR20"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"},{"description":"<p>The subscription key for the calling company as supplied from Norsk Olje og gass</p>\n","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"formdata","formdata":[{"description":"<p>The file reference to the file that should be published. In this sample it is a generated sample data for Åsgard containing no real data </p>\n","key":"file","type":"file","src":"api-documentation/dpr20/SAMPLE_ÅSGARD_DPR_20.xml"}]},"url":"{{ValidateAPI}}","description":"<p>An example how to send a request to the unified api validation service and where the recieving system validates the file and reports back a succesful validation result.</p>\n<ul>\n<li><p><strong>{{ValidateAPI}}</strong> - should be replaced by the URL as supplied from Offshore Norge</p>\n</li>\n<li><p><strong>{{bearerToken}}</strong> - is the authorization OAUTH2 token as recieved from the authentication process</p>\n</li>\n<li><p><strong>{{opcSubscriptionKey}}</strong> - is api key as recieved from Norsk Olje og gass</p>\n</li>\n</ul>\n","urlObject":{"host":["{{ValidateAPI}}"],"query":[],"variable":[]}},"response":[{"id":"6811252d-ba5e-4cbe-b48f-7ab4c4b40b23","name":"Publish - Succesful publish of monthly emission data json file","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer xxxx","description":"The OAUTH2 token as recieved from the authentication process","type":"text"},{"key":"Report-Type","value":"EmissionData","description":"The report type to publish in this case it is a daily production report version 2","type":"text"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"Ocp-Apim-Subscription-Key","value":"xxx","description":"The subscription key for the calling company as supplied from Norsk Olje og gass","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"The file reference to the file that should be published. In this sample it is a generated sample data for Åsgard containing no real data ","key":"file","type":"file","src":"/media/magnus/hdd1/subsurface-collab8/python/SubsurfaceTestSuite/Data/testcase_data/emissions/emission_valid_file.json"}]},"url":"{{PublishAPI}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"fileName\": \"emission_valid_file.json\",\n    \"reportId\": \"d99f45da-56e6-64dc-f7c2-ac3f51092b93\",\n    \"isReportFinal\": false,\n    \"reportType\": \"EmissionData\",\n    \"success\": true,\n    \"resultCount\": 4,\n    \"results\": [\n        {\n            \"ruleName\": \"File Validation succeeded\",\n            \"success\": true,\n            \"message\": [\n                \"\"\n            ]\n        },\n        {\n            \"ruleName\": \"Store emission metadata in Elastic Search succeeded\",\n            \"success\": true,\n            \"message\": [\n                null\n            ]\n        },\n        {\n            \"ruleName\": \"Store report succeeded\",\n            \"success\": true,\n            \"message\": [\n                null\n            ]\n        },\n        {\n            \"ruleName\": \"An event raised successfully to Upload the Report\",\n            \"success\": true,\n            \"message\": [\n                null\n            ]\n        }\n    ],\n    \"accessReport\": {\n        \"hasAccess\": true,\n        \"hasCorrectRole\": true,\n        \"missingAccesses\": [],\n        \"additionalInformation\": \"\",\n        \"all\": [\n            {\n                \"resourceName\": \"ÅSGARD\",\n                \"hasAccess\": true\n            }\n        ],\n        \"missingAccessesWithDetails\": {}\n    }\n}"}],"_postman_id":"2b566368-ad06-4ad3-b949-9a30757e60ef"}],"id":"57072ac2-737a-40cb-b314-de9f9b145f04","_postman_id":"57072ac2-737a-40cb-b314-de9f9b145f04","description":""}],"id":"1e6a2b22-8868-4561-b18a-4b42c4cf0bd1","description":"<p>The following example set-up contains example of how to perform validation and publishing of monthly emissions data as a standard json file.</p>\n<p>For running the publising operation the calling user needs to have write access to emissions data and rights to publish to the specified facility. Below an example json file using the standard format as agreed on the norwegian continental shelf.</p>\n<p>A json file can contain information on several different facilities (e.g. fields). All naming convetions for the entity that is used for publishing should follow the SODIR factpages using official names and ids.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"emissions\": [\n    {\n      \"sourceEntity\": {\n        \"name\": \"ÅSGARD\",\n        \"uid\": 43765,\n        \"kind\": \"field\"\n      },\n      \"emissionData\": [\n        {\n          \"dataEntity\": {\n            \"kind\": \"field\",\n            \"name\": \"ÅSGARD\",\n            \"uid\": 43765\n          },\n          \"emissionsToAir\": [\n            {\n              \"emissionType\": \"CO2\",\n              \"periodStart\": \"2021-02-01\",\n              \"periodEnd\": \"2021-02-28\",\n              \"emissionTotal\": 342.5,\n              \"emissionFromProduction\": 310.5,\n              \"emissionFromProductionFuelGas\": 200,\n              \"emissionFromProductionFlaring\": 10.5,\n              \"emissionFromProductionDiesel\": 100,\n              \"emissionFromMobileUnits\": 32.25,\n              \"emissionFromMobileUnitsFuelGas\": 20,\n              \"emissionFromMobileUnitsFlaring\": 2.25,\n              \"emissionFromMobileUnitsDiesel\": 10,\n              \"intensity\": 12.11,\n              \"intensityYTD\": 24.14,\n              \"emissionUnit\": \"Tons\",\n              \"intensityUnit\": \"kg/sm3\",\n              \"qualifier\": \"derived\"\n            },\n            {\n              \"emissionType\": \"NOx\",\n              \"periodStart\": \"2021-02-01\",\n              \"periodEnd\": \"2021-02-28\",\n              \"emissionTotal\": 48.75,\n              \"emissionFromProduction\": 31.5,\n              \"emissionFromProductionFuelGas\": 20,\n              \"emissionFromProductionFlaring\": 1.5,\n              \"emissionFromProductionDiesel\": 10,\n              \"emissionFromMobileUnits\": 17.25,\n              \"emissionFromMobileUnitsFuelGas\": 11,\n              \"emissionFromMobileUnitsFlaring\": 0.5,\n              \"emissionFromMobileUnitsDiesel\": 5.75,\n              \"emissionUnit\": \"Tons\",\n              \"qualifier\": \"derived\"\n            },\n            {\n              \"emissionType\": \"CH4\",\n              \"periodStart\": \"2021-02-01\",\n              \"periodEnd\": \"2021-02-28\",\n              \"emissionTotal\": 1.75,\n              \"emissionFromProduction\": 1.5,\n              \"emissionFromMobileUnits\": 0.25,\n              \"emissionUnit\": \"Tons\",\n              \"qualifier\": \"derived\"\n            }\n          ],\n          \"dischargesToSea\": {\n            \"periodStart\": \"2021-02-01\",\n            \"periodEnd\": \"2021-02-28\",\n            \"oilInWater\": 2.33,\n            \"oilInWaterUnit\": \"m3\",\n            \"unintentionalDischarges\": 1\n          },\n          \"intensities\": [\n            {\n              \"periodStart\": \"2021-01-01\",\n              \"periodEnd\": \"2021-02-28\",\n              \"greenhouseGasIntensity\": 12.13,\n              \"greenhouseGasIntensityUnit\": \"kg/sm3\",\n              \"totalGridElectricityConsumption\": 5.1336,\n              \"totalGridElectricityConsumptionUnit\": \"mWh\"\n            }\n          ]\n        }\n      ]\n    }\n  ]\n}\n\n</code></pre>\n<p>In this set-up the sourceEntity is the name and id of the sending facility (e.g. in tie-in situations this can be different from the actual facility that carries data (marked as data entity).</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Element name</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>sourceEntity</td>\n<td>The facility from which this data is published. Name and uid according to the SODIR factpages. The entity kind can be either field, license or terminal.</td>\n</tr>\n<tr>\n<td>dataEntity</td>\n<td>The facility to which the emission data belongs, following the same nomenclature as the sourceEntity element. Note one source entity if it is e.g. a big field responsible for reporting for many associated tie-in fields can have several data entities where each one represents a part of the bigger source facility responsible for sending the total information.</td>\n</tr>\n<tr>\n<td>emissionType</td>\n<td>The type of emissions the data represents, can be CO2, NOx or CH4</td>\n</tr>\n<tr>\n<td>periodStart / periodEnd</td>\n<td>Denotes for which period the data is valid which will be a month where the start represents the first day of the month and the end the last day of the month.</td>\n</tr>\n<tr>\n<td>emissionUnit</td>\n<td>The unit of measurement used for the emissions related data elements (e.g. emissionTotal, emissionFromProduction++). Can be Tons</td>\n</tr>\n<tr>\n<td>qualifier</td>\n<td>Describes how the information is gathered e.g. is it allocated, measured, derived (e.g. calculated from other sources) or forecasted information.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"1e6a2b22-8868-4561-b18a-4b42c4cf0bd1"},{"name":"Querying for data","item":[{"name":"Metadata queries","item":[{"name":"Get list all types in schema api","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","","var template = `","    <table>","        <tr>","            <th>Name</th>","            <th>Kind</th>","            <th>Description</th>","          ","        </tr>","","        {{#each response.data.__schema.types}}","            <tr>","                <th>{{name}}</th>","                <th>{{kind}}</th>","                <th>{{descirption}}</th>","                ","            </tr>","        {{/each}}","    </table>","`;","","pm.visualizer.set(template, {","    // Pass the response body parsed as JSON as `data`","    response: pm.response.json()","});"],"type":"text/javascript"}}],"id":"e7638c93-82bd-407c-8296-67bfe02c51e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"description":"<p>The authentication OAUTH2 token recieved from authentication process</p>\n","key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"description":"<p>OPC subscription key as supplied by NOROG</p>\n","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"graphql"},"url":"{{graphQueryAPI}}","description":"<p>Example query using GraphQL standard to query for all object types as exposed in the datamodel</p>\n","urlObject":{"host":["{{graphQueryAPI}}"],"query":[],"variable":[]}},"response":[{"id":"d4b2dcee-6cdd-4756-a96d-9d5a6a8544d3","name":"Graph query get list all types in schema api","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer xxx","type":"text"},{"key":"Report-Type","value":"DPR20","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Ocp-Apim-Subscription-Key","value":"xxxx","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query allSchemaTypes {\n    __schema {\n        types {\n            name \n            kind\n            description\n        }\n    }\n}","variables":""}},"url":"{{graphQueryAPI}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"__schema\": {\n            \"types\": [\n                {\n                    \"name\": \"String\",\n                    \"kind\": \"SCALAR\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"Boolean\",\n                    \"kind\": \"SCALAR\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"Float\",\n                    \"kind\": \"SCALAR\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"Int\",\n                    \"kind\": \"SCALAR\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"ID\",\n                    \"kind\": \"SCALAR\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"Date\",\n                    \"kind\": \"SCALAR\",\n                    \"description\": \"The `Date` scalar type represents a year, month and day in accordance with the [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) standard.\"\n                },\n                {\n                    \"name\": \"DateTime\",\n                    \"kind\": \"SCALAR\",\n                    \"description\": \"The `DateTime` scalar type represents a date and time. `DateTime` expects timestamps to be formatted in accordance with the [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) standard.\"\n                },\n                {\n                    \"name\": \"DateTimeOffset\",\n                    \"kind\": \"SCALAR\",\n                    \"description\": \"The `DateTimeOffset` scalar type represents a date, time and offset from UTC. `DateTimeOffset` expects timestamps to be formatted in accordance with the [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) standard.\"\n                },\n                {\n                    \"name\": \"Seconds\",\n                    \"kind\": \"SCALAR\",\n                    \"description\": \"The `Seconds` scalar type represents a period of time represented as the total number of seconds.\"\n                },\n                {\n                    \"name\": \"Milliseconds\",\n                    \"kind\": \"SCALAR\",\n                    \"description\": \"The `Milliseconds` scalar type represents a period of time represented as the total number of milliseconds.\"\n                },\n                {\n                    \"name\": \"Decimal\",\n                    \"kind\": \"SCALAR\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"__Schema\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": \"A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.\"\n                },\n                {\n                    \"name\": \"__Type\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": \"The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\\n\\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name and description, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.\"\n                },\n                {\n                    \"name\": \"__TypeKind\",\n                    \"kind\": \"ENUM\",\n                    \"description\": \"An enum describing what kind of type a given __Type is.\"\n                },\n                {\n                    \"name\": \"__Field\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": \"Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.\"\n                },\n                {\n                    \"name\": \"__InputValue\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": \"Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.\"\n                },\n                {\n                    \"name\": \"__EnumValue\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": \"One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.\"\n                },\n                {\n                    \"name\": \"__Directive\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": \"A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.\\n\\nIn some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.\"\n                },\n                {\n                    \"name\": \"__DirectiveLocation\",\n                    \"kind\": \"ENUM\",\n                    \"description\": \"A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.\"\n                },\n                {\n                    \"name\": \"RootQuery\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"metadata\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"facility\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"FacilityAlias\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"party\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"license\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"LicenseStatus\",\n                    \"kind\": \"ENUM\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"LicenseKind\",\n                    \"kind\": \"ENUM\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"interest\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"DateTimePeriodType\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"baa\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"BaaKind\",\n                    \"kind\": \"ENUM\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"field\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"FieldStatus\",\n                    \"kind\": \"ENUM\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"reference\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"wellbores\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"WellboreKind\",\n                    \"kind\": \"ENUM\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"WellboreStatus\",\n                    \"kind\": \"ENUM\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"Uri\",\n                    \"kind\": \"SCALAR\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"WellborePurpose\",\n                    \"kind\": \"ENUM\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"terminals\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"fpso\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"platforms\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"templates\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"LicenseInterface\",\n                    \"kind\": \"INTERFACE\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"tuf\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"TufKind\",\n                    \"kind\": \"ENUM\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"phase\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"Guid\",\n                    \"kind\": \"SCALAR\",\n                    \"description\": \"Guid.\"\n                },\n                {\n                    \"name\": \"ReferenceInput\",\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"production\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"dataItem\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"dataItemMetadata\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"companyDto\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"GuidGraphType\",\n                    \"kind\": \"SCALAR\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"measurements\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"measurementItem\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"Item\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"entity\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"FilterDataType\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"productionReport\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"productionData\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"reportMetadata\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"ReportTypes\",\n                    \"kind\": \"ENUM\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"sourceEntity\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"baseFacility\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"ReportVersion\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"ReportStatus\",\n                    \"kind\": \"ENUM\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"ReportFileFormat\",\n                    \"kind\": \"ENUM\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"drilling\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"BitRecord\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"FloatMeasurement\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"Nozzle\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"BitRun\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"EquipmentFailure\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"DrillingActivity\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"ConveyanceType\",\n                    \"kind\": \"ENUM\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"ProprietaryCodeType\",\n                    \"kind\": \"ENUM\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"StateType\",\n                    \"kind\": \"ENUM\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"StateDetailType\",\n                    \"kind\": \"ENUM\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"StatusInfo\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"CasingLinerTubing\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"CasingLinerTubingRun\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"Cement\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"CementFluid\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"DrillingFluid\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"DrillingFluidRheometer\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"PorePressure\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"LogEntry\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"WellboreInfo\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"Identity\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"Survey\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"CoreType\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"WellTest\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"FormationTest\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"Stratigraphy\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"Lithology\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"Incident\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"Perforation\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"GasReading\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"DrillingData\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"events\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"BaseEventType`1\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"EventInvokerType\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"CompanyType\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"BaseRoutableEventType`1\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"ValidationEventType\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"ValidationOutcome\",\n                    \"kind\": \"ENUM\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"ValidationResultType\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"ReportFileEntryType\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"ReportFileMetadataType\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"DateTimePeriodInput\",\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"AccessPermissionUpdatedEventType\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"ACEUpdateEventType\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"AceUpdateOperation\",\n                    \"kind\": \"ENUM\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"PublishingEventType\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"PublishStatus\",\n                    \"kind\": \"ENUM\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"StorageEventType\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"StorageOperation\",\n                    \"kind\": \"ENUM\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"StorageOperationResult\",\n                    \"kind\": \"ENUM\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"ProgressEventType\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"OperationEventType\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"ValidFilesParameter\",\n                    \"kind\": \"ENUM\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"UserType\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"AccessControlEntryType\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"AccessLevelType\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                },\n                {\n                    \"name\": \"ResourceType\",\n                    \"kind\": \"OBJECT\",\n                    \"description\": null\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"e7638c93-82bd-407c-8296-67bfe02c51e6"},{"name":"Get properties for DrillingActivity object","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","",""],"type":"text/javascript"}}],"id":"3fa2be55-1d23-4fb8-af0e-ca9d09ab1b64","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"description":"<p>The authentication OAUTH2 token recieved from authentication process</p>\n","key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"description":"<p>OPC subscription key as supplied by NOROG</p>\n","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"graphql"},"url":"{{graphQueryAPI}}","description":"<p>Example query using GraphQL standard to query for properties on a specfic data object in this case the drilling activity object from the DDRML standard</p>\n","urlObject":{"host":["{{graphQueryAPI}}"],"query":[],"variable":[]}},"response":[{"id":"4afde3be-c3e1-4746-bdf8-1b4ec88f57fe","name":"Graph query get properties for meta data object","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer xxx","description":"The authentication OAUTH2 token recieved from authentication process","type":"text"},{"key":"Report-Type","value":"","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Ocp-Apim-Subscription-Key","value":"xxxx","description":"OPC subscription key as supplied by NOROG","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query{__type(name: \"DrillingActivity\") {\r\n    kind\r\n    name\r\n    fields {\r\n      name\r\n      type {\r\n        kind\r\n        name\r\n        description\r\n      }\r\n     \r\n    \r\n  }\r\n}\r\n}","variables":""}},"url":"{{graphQueryAPI}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"__type\": {\n            \"kind\": \"OBJECT\",\n            \"name\": \"DrillingActivity\",\n            \"fields\": [\n                {\n                    \"name\": \"comment\",\n                    \"type\": {\n                        \"kind\": \"SCALAR\",\n                        \"name\": \"String\",\n                        \"description\": null\n                    }\n                },\n                {\n                    \"name\": \"conveyance\",\n                    \"type\": {\n                        \"kind\": \"ENUM\",\n                        \"name\": \"ConveyanceType\",\n                        \"description\": null\n                    }\n                },\n                {\n                    \"name\": \"created\",\n                    \"type\": {\n                        \"kind\": \"SCALAR\",\n                        \"name\": \"DateTime\",\n                        \"description\": \"The `DateTime` scalar type represents a date and time. `DateTime` expects timestamps to be formatted in accordance with the [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) standard.\"\n                    }\n                },\n                {\n                    \"name\": \"dataEndTime\",\n                    \"type\": {\n                        \"kind\": \"SCALAR\",\n                        \"name\": \"DateTime\",\n                        \"description\": \"The `DateTime` scalar type represents a date and time. `DateTime` expects timestamps to be formatted in accordance with the [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) standard.\"\n                    }\n                },\n                {\n                    \"name\": \"dataEntity\",\n                    \"type\": {\n                        \"kind\": \"OBJECT\",\n                        \"name\": \"entity\",\n                        \"description\": null\n                    }\n                },\n                {\n                    \"name\": \"dataPeriod\",\n                    \"type\": {\n                        \"kind\": \"SCALAR\",\n                        \"name\": \"String\",\n                        \"description\": null\n                    }\n                },\n                {\n                    \"name\": \"dataRecordType\",\n                    \"type\": {\n                        \"kind\": \"SCALAR\",\n                        \"name\": \"String\",\n                        \"description\": null\n                    }\n                },\n                {\n                    \"name\": \"dataStartTime\",\n                    \"type\": {\n                        \"kind\": \"SCALAR\",\n                        \"name\": \"DateTime\",\n                        \"description\": \"The `DateTime` scalar type represents a date and time. `DateTime` expects timestamps to be formatted in accordance with the [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) standard.\"\n                    }\n                },\n                {\n                    \"name\": \"endTime\",\n                    \"type\": {\n                        \"kind\": \"SCALAR\",\n                        \"name\": \"DateTime\",\n                        \"description\": \"The `DateTime` scalar type represents a date and time. `DateTime` expects timestamps to be formatted in accordance with the [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) standard.\"\n                    }\n                },\n                {\n                    \"name\": \"endTimeUTC\",\n                    \"type\": {\n                        \"kind\": \"SCALAR\",\n                        \"name\": \"DateTime\",\n                        \"description\": \"The `DateTime` scalar type represents a date and time. `DateTime` expects timestamps to be formatted in accordance with the [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) standard.\"\n                    }\n                },\n                {\n                    \"name\": \"measuredDepth\",\n                    \"type\": {\n                        \"kind\": \"OBJECT\",\n                        \"name\": \"FloatMeasurement\",\n                        \"description\": null\n                    }\n                },\n                {\n                    \"name\": \"measuredHoleStart\",\n                    \"type\": {\n                        \"kind\": \"OBJECT\",\n                        \"name\": \"FloatMeasurement\",\n                        \"description\": null\n                    }\n                },\n                {\n                    \"name\": \"modified\",\n                    \"type\": {\n                        \"kind\": \"SCALAR\",\n                        \"name\": \"DateTime\",\n                        \"description\": \"The `DateTime` scalar type represents a date and time. `DateTime` expects timestamps to be formatted in accordance with the [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) standard.\"\n                    }\n                },\n                {\n                    \"name\": \"owningEntity\",\n                    \"type\": {\n                        \"kind\": \"OBJECT\",\n                        \"name\": \"entity\",\n                        \"description\": null\n                    }\n                },\n                {\n                    \"name\": \"phase\",\n                    \"type\": {\n                        \"kind\": \"ENUM\",\n                        \"name\": \"ConveyanceType\",\n                        \"description\": null\n                    }\n                },\n                {\n                    \"name\": \"proprietaryCode\",\n                    \"type\": {\n                        \"kind\": \"ENUM\",\n                        \"name\": \"ProprietaryCodeType\",\n                        \"description\": null\n                    }\n                },\n                {\n                    \"name\": \"quality\",\n                    \"type\": {\n                        \"kind\": \"SCALAR\",\n                        \"name\": \"String\",\n                        \"description\": null\n                    }\n                },\n                {\n                    \"name\": \"sourceEndTime\",\n                    \"type\": {\n                        \"kind\": \"SCALAR\",\n                        \"name\": \"DateTime\",\n                        \"description\": \"The `DateTime` scalar type represents a date and time. `DateTime` expects timestamps to be formatted in accordance with the [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) standard.\"\n                    }\n                },\n                {\n                    \"name\": \"sourceEntity\",\n                    \"type\": {\n                        \"kind\": \"OBJECT\",\n                        \"name\": \"entity\",\n                        \"description\": null\n                    }\n                },\n                {\n                    \"name\": \"sourceStartTime\",\n                    \"type\": {\n                        \"kind\": \"SCALAR\",\n                        \"name\": \"DateTime\",\n                        \"description\": \"The `DateTime` scalar type represents a date and time. `DateTime` expects timestamps to be formatted in accordance with the [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) standard.\"\n                    }\n                },\n                {\n                    \"name\": \"sourceSystemName\",\n                    \"type\": {\n                        \"kind\": \"SCALAR\",\n                        \"name\": \"String\",\n                        \"description\": null\n                    }\n                },\n                {\n                    \"name\": \"sourceSystemReportName\",\n                    \"type\": {\n                        \"kind\": \"SCALAR\",\n                        \"name\": \"String\",\n                        \"description\": null\n                    }\n                },\n                {\n                    \"name\": \"sourceSystemVersion\",\n                    \"type\": {\n                        \"kind\": \"SCALAR\",\n                        \"name\": \"Decimal\",\n                        \"description\": null\n                    }\n                },\n                {\n                    \"name\": \"startTime\",\n                    \"type\": {\n                        \"kind\": \"SCALAR\",\n                        \"name\": \"DateTime\",\n                        \"description\": \"The `DateTime` scalar type represents a date and time. `DateTime` expects timestamps to be formatted in accordance with the [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) standard.\"\n                    }\n                },\n                {\n                    \"name\": \"startTimeUTC\",\n                    \"type\": {\n                        \"kind\": \"SCALAR\",\n                        \"name\": \"DateTime\",\n                        \"description\": \"The `DateTime` scalar type represents a date and time. `DateTime` expects timestamps to be formatted in accordance with the [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) standard.\"\n                    }\n                },\n                {\n                    \"name\": \"state\",\n                    \"type\": {\n                        \"kind\": \"ENUM\",\n                        \"name\": \"StateType\",\n                        \"description\": null\n                    }\n                },\n                {\n                    \"name\": \"stateDetailActivity\",\n                    \"type\": {\n                        \"kind\": \"ENUM\",\n                        \"name\": \"StateDetailType\",\n                        \"description\": null\n                    }\n                },\n                {\n                    \"name\": \"time\",\n                    \"type\": {\n                        \"kind\": \"SCALAR\",\n                        \"name\": \"DateTime\",\n                        \"description\": \"The `DateTime` scalar type represents a date and time. `DateTime` expects timestamps to be formatted in accordance with the [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) standard.\"\n                    }\n                },\n                {\n                    \"name\": \"timeUTC\",\n                    \"type\": {\n                        \"kind\": \"SCALAR\",\n                        \"name\": \"DateTime\",\n                        \"description\": \"The `DateTime` scalar type represents a date and time. `DateTime` expects timestamps to be formatted in accordance with the [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) standard.\"\n                    }\n                },\n                {\n                    \"name\": \"trueVerticalDepth\",\n                    \"type\": {\n                        \"kind\": \"OBJECT\",\n                        \"name\": \"FloatMeasurement\",\n                        \"description\": null\n                    }\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"3fa2be55-1d23-4fb8-af0e-ca9d09ab1b64"},{"name":"Get all facilities of type platform","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","",""],"type":"text/javascript"}}],"id":"3cb3ac6b-339b-42a3-a4cf-d5e17c8d584c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"description":"<p>The authentication OAUTH2 token recieved from authentication process</p>\n","key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"description":"<p>OPC subscription key as supplied by NOROG</p>\n","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"graphql"},"url":"{{graphQueryAPI}}","description":"<p>Example query using GraphQL standard to query for all assets in the system of type platform. This query would all facilities as harvested from the NPD factpages of the type fixed facilities identified as beeing platforms.</p>\n","urlObject":{"host":["{{graphQueryAPI}}"],"query":[],"variable":[]}},"response":[{"id":"4ddf82e6-f4a7-4e58-bbb1-d6778ccba3e5","name":"Graph query get all facilities of type platform","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer xxxx","description":"The authentication OAUTH2 token recieved from authentication process","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Ocp-Apim-Subscription-Key","value":"xxxx","description":"OPC subscription key as supplied by NOROG","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query{\n    metadata {\n        facilities(type:\"Platform\"){\n            name\n            created\n            referenceId\n            code\n            type\n            aliases {\n                name\n                code\n                description\n            }\n        }\n        \n    }\n    \n}","variables":""}},"url":"{{graphQueryAPI}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":""},{"key":"Date","value":"Wed, 15 Jan 2020 14:20:39 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"metadata\": {\n            \"facilities\": [\n                {\n                    \"name\": \"10/1-CDP1\",\n                    \"created\": \"2020-01-15T11:41:55.376Z\",\n                    \"referenceId\": \"271861\",\n                    \"code\": \"10/1-CDP1\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"10/1-CDP1\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"36/22\",\n                    \"created\": \"2020-01-15T11:41:55.383Z\",\n                    \"referenceId\": \"274185\",\n                    \"code\": \"36/22\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"36/22\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"36/22-BP\",\n                    \"created\": \"2020-01-15T11:41:55.384Z\",\n                    \"referenceId\": \"286673\",\n                    \"code\": \"36/22-BP\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"36/22-BP\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"37/4\",\n                    \"created\": \"2020-01-15T11:41:55.465Z\",\n                    \"referenceId\": \"274213\",\n                    \"code\": \"37/4\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"37/4\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"37/4-BP\",\n                    \"created\": \"2020-01-15T11:41:55.466Z\",\n                    \"referenceId\": \"286645\",\n                    \"code\": \"37/4-BP\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"37/4-BP\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ALBUSKJELL A\",\n                    \"created\": \"2020-01-15T11:41:55.468Z\",\n                    \"referenceId\": \"271357\",\n                    \"code\": \"ALBUSKJELL A\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ALBUSKJELL A\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ALBUSKJELL A-BS\",\n                    \"created\": \"2020-01-15T11:41:55.47Z\",\n                    \"referenceId\": \"281073\",\n                    \"code\": \"ALBUSKJELL A-BS\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ALBUSKJELL A-BS\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ALBUSKJELL A-FL\",\n                    \"created\": \"2020-01-15T11:41:55.472Z\",\n                    \"referenceId\": \"281101\",\n                    \"code\": \"ALBUSKJELL A-FL\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ALBUSKJELL A-FL\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ALBUSKJELL F\",\n                    \"created\": \"2020-01-15T11:41:55.474Z\",\n                    \"referenceId\": \"271553\",\n                    \"code\": \"ALBUSKJELL F\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ALBUSKJELL F\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ALBUSKJELL F-BS\",\n                    \"created\": \"2020-01-15T11:41:55.476Z\",\n                    \"referenceId\": \"281241\",\n                    \"code\": \"ALBUSKJELL F-BS\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ALBUSKJELL F-BS\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ALBUSKJELL F-FL\",\n                    \"created\": \"2020-01-15T11:41:55.477Z\",\n                    \"referenceId\": \"281269\",\n                    \"code\": \"ALBUSKJELL F-FL\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ALBUSKJELL F-FL\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ALVHEIM EAST RISER BASE\",\n                    \"created\": \"2020-01-15T11:41:55.479Z\",\n                    \"referenceId\": \"425523\",\n                    \"code\": \"ALVHEIM EAST RISER BASE\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ALVHEIM EAST RISER BASE\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ALVHEIM SOUTH RISER BASE\",\n                    \"created\": \"2020-01-15T11:41:55.481Z\",\n                    \"referenceId\": \"425582\",\n                    \"code\": \"ALVHEIM SOUTH RISER BASE\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ALVHEIM SOUTH RISER BASE\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ALVHEIM WEST RISER BASE\",\n                    \"created\": \"2020-01-15T11:41:55.483Z\",\n                    \"referenceId\": \"425640\",\n                    \"code\": \"ALVHEIM WEST RISER BASE\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ALVHEIM WEST RISER BASE\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ALWYN NORTH B\",\n                    \"created\": \"2020-01-15T11:41:55.564Z\",\n                    \"referenceId\": \"372850\",\n                    \"code\": \"ALWYN NORTH B\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ALWYN NORTH B\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ARMADA\",\n                    \"created\": \"2020-01-15T11:41:55.565Z\",\n                    \"referenceId\": \"378185\",\n                    \"code\": \"ARMADA\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ARMADA\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"B-11\",\n                    \"created\": \"2020-01-15T11:41:55.567Z\",\n                    \"referenceId\": \"277265\",\n                    \"code\": \"B-11\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"B-11\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"BALDER GASLIFT MANIFOLD\",\n                    \"created\": \"2020-01-15T11:41:55.569Z\",\n                    \"referenceId\": \"448485\",\n                    \"code\": \"BALDER GASLIFT MANIFOLD\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"BALDER GASLIFT MANIFOLD\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"BALDER SDU A\",\n                    \"created\": \"2020-01-15T11:41:55.571Z\",\n                    \"referenceId\": \"430557\",\n                    \"code\": \"BALDER SDU A\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"BALDER SDU A\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"BALDER SDU B\",\n                    \"created\": \"2020-01-15T11:41:55.573Z\",\n                    \"referenceId\": \"430668\",\n                    \"code\": \"BALDER SDU B\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"BALDER SDU B\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"BALDER SDU D\",\n                    \"created\": \"2020-01-15T11:41:55.575Z\",\n                    \"referenceId\": \"430724\",\n                    \"code\": \"BALDER SDU D\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"BALDER SDU D\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"BRAE A\",\n                    \"created\": \"2020-01-15T11:41:55.577Z\",\n                    \"referenceId\": \"273877\",\n                    \"code\": \"BRAE A\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"BRAE A\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"BRAGE\",\n                    \"created\": \"2020-01-15T11:41:55.58Z\",\n                    \"referenceId\": \"277405\",\n                    \"code\": \"BRAGE\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"BRAGE\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"BRAGE-T\",\n                    \"created\": \"2020-01-15T11:41:55.581Z\",\n                    \"referenceId\": \"287037\",\n                    \"code\": \"BRAGE-T\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"BRAGE-T\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"COD\",\n                    \"created\": \"2020-01-15T11:41:55.583Z\",\n                    \"referenceId\": \"271693\",\n                    \"code\": \"COD\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"COD\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"COD FL\",\n                    \"created\": \"2020-01-15T11:41:55.666Z\",\n                    \"referenceId\": \"281465\",\n                    \"code\": \"COD FL\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"COD FL\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"DRAUGEN\",\n                    \"created\": \"2020-01-15T11:41:55.668Z\",\n                    \"referenceId\": \"272393\",\n                    \"code\": \"DRAUGEN\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"DRAUGEN\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"DRAUGEN D\",\n                    \"created\": \"2020-01-15T11:41:55.671Z\",\n                    \"referenceId\": \"280989\",\n                    \"code\": \"DRAUGEN D\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"DRAUGEN D\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"DRAUGEN FLP\",\n                    \"created\": \"2020-01-15T11:41:55.673Z\",\n                    \"referenceId\": \"280177\",\n                    \"code\": \"DRAUGEN FLP\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"DRAUGEN FLP\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"DRAUGEN FSL\",\n                    \"created\": \"2020-01-15T11:41:55.676Z\",\n                    \"referenceId\": \"425460\",\n                    \"code\": \"DRAUGEN FSL\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"DRAUGEN FSL\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"DRAUGEN PLEM 105\",\n                    \"created\": \"2020-01-15T11:41:55.678Z\",\n                    \"referenceId\": \"281829\",\n                    \"code\": \"DRAUGEN PLEM 105\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"DRAUGEN PLEM 105\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"DRAUGEN PLEM-106\",\n                    \"created\": \"2020-01-15T11:41:55.681Z\",\n                    \"referenceId\": \"281857\",\n                    \"code\": \"DRAUGEN PLEM-106\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"DRAUGEN PLEM-106\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"DRAUGEN SSBP\",\n                    \"created\": \"2020-01-15T11:41:55.683Z\",\n                    \"referenceId\": \"438886\",\n                    \"code\": \"DRAUGEN SSBP\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"DRAUGEN SSBP\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"DRAUGEN T\",\n                    \"created\": \"2020-01-15T11:41:55.766Z\",\n                    \"referenceId\": \"287373\",\n                    \"code\": \"DRAUGEN T\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"DRAUGEN T\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"DRAUPNER E\",\n                    \"created\": \"2020-01-15T11:41:55.767Z\",\n                    \"referenceId\": \"278357\",\n                    \"code\": \"DRAUPNER E\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"DRAUPNER E\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"DRAUPNER S\",\n                    \"created\": \"2020-01-15T11:41:55.769Z\",\n                    \"referenceId\": \"271945\",\n                    \"code\": \"DRAUPNER S\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"DRAUPNER S\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"DVALIN GAS EXPORT RISER BASE\",\n                    \"created\": \"2020-01-15T11:41:55.77Z\",\n                    \"referenceId\": \"458692\",\n                    \"code\": \"DVALIN GAS EXPORT RISER BASE\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"DVALIN GAS EXPORT RISER BASE\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"DVALIN PLEM\",\n                    \"created\": \"2020-01-15T11:41:55.771Z\",\n                    \"referenceId\": \"458633\",\n                    \"code\": \"DVALIN PLEM\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"DVALIN PLEM\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"DVALIN PRODUCTION RISER BASE SSIV\",\n                    \"created\": \"2020-01-15T11:41:55.772Z\",\n                    \"referenceId\": \"458752\",\n                    \"code\": \"DVALIN PRODUCTION RISER BASE SSIV\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"DVALIN PRODUCTION RISER BASE SSIV\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"EDDA\",\n                    \"created\": \"2020-01-15T11:41:55.774Z\",\n                    \"referenceId\": \"271637\",\n                    \"code\": \"EDDA\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"EDDA\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"EDDA FL\",\n                    \"created\": \"2020-01-15T11:41:55.775Z\",\n                    \"referenceId\": \"281381\",\n                    \"code\": \"EDDA FL\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"EDDA FL\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"EDVARD GRIEG\",\n                    \"created\": \"2020-01-15T11:41:55.777Z\",\n                    \"referenceId\": \"436163\",\n                    \"code\": \"EDVARD GRIEG\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"EDVARD GRIEG\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"EKOFISK A\",\n                    \"created\": \"2020-01-15T11:41:55.779Z\",\n                    \"referenceId\": \"271385\",\n                    \"code\": \"EKOFISK A\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"EKOFISK A\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"EKOFISK B\",\n                    \"created\": \"2020-01-15T11:41:55.781Z\",\n                    \"referenceId\": \"271413\",\n                    \"code\": \"EKOFISK B\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"EKOFISK B\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"EKOFISK BS1\",\n                    \"created\": \"2020-01-15T11:41:55.782Z\",\n                    \"referenceId\": \"281129\",\n                    \"code\": \"EKOFISK BS1\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"EKOFISK BS1\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"EKOFISK BS3\",\n                    \"created\": \"2020-01-15T11:41:55.864Z\",\n                    \"referenceId\": \"281157\",\n                    \"code\": \"EKOFISK BS3\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"EKOFISK BS3\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"EKOFISK BS4\",\n                    \"created\": \"2020-01-15T11:41:55.866Z\",\n                    \"referenceId\": \"281185\",\n                    \"code\": \"EKOFISK BS4\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"EKOFISK BS4\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"EKOFISK C\",\n                    \"created\": \"2020-01-15T11:41:55.868Z\",\n                    \"referenceId\": \"271441\",\n                    \"code\": \"EKOFISK C\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"EKOFISK C\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"EKOFISK FTP\",\n                    \"created\": \"2020-01-15T11:41:55.87Z\",\n                    \"referenceId\": \"272281\",\n                    \"code\": \"EKOFISK FTP\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"EKOFISK FTP\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"EKOFISK G\",\n                    \"created\": \"2020-01-15T11:41:55.872Z\",\n                    \"referenceId\": \"272113\",\n                    \"code\": \"EKOFISK G\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"EKOFISK G\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"EKOFISK H\",\n                    \"created\": \"2020-01-15T11:41:55.873Z\",\n                    \"referenceId\": \"272197\",\n                    \"code\": \"EKOFISK H\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"EKOFISK H\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"EKOFISK J\",\n                    \"created\": \"2020-01-15T11:41:55.875Z\",\n                    \"referenceId\": \"277937\",\n                    \"code\": \"EKOFISK J\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"EKOFISK J\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"EKOFISK K\",\n                    \"created\": \"2020-01-15T11:41:55.877Z\",\n                    \"referenceId\": \"271469\",\n                    \"code\": \"EKOFISK K\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"EKOFISK K\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"EKOFISK L\",\n                    \"created\": \"2020-01-15T11:41:55.878Z\",\n                    \"referenceId\": \"425117\",\n                    \"code\": \"EKOFISK L\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"EKOFISK L\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"EKOFISK L-BS\",\n                    \"created\": \"2020-01-15T11:41:55.88Z\",\n                    \"referenceId\": \"425176\",\n                    \"code\": \"EKOFISK L-BS\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"EKOFISK L-BS\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"EKOFISK M\",\n                    \"created\": \"2020-01-15T11:41:55.882Z\",\n                    \"referenceId\": \"364198\",\n                    \"code\": \"EKOFISK M\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"EKOFISK M\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"EKOFISK M-BS\",\n                    \"created\": \"2020-01-15T11:41:55.883Z\",\n                    \"referenceId\": \"364234\",\n                    \"code\": \"EKOFISK M-BS\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"EKOFISK M-BS\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"EKOFISK NORD FL\",\n                    \"created\": \"2020-01-15T11:41:55.966Z\",\n                    \"referenceId\": \"282641\",\n                    \"code\": \"EKOFISK NORD FL\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"EKOFISK NORD FL\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"EKOFISK P\",\n                    \"created\": \"2020-01-15T11:41:55.967Z\",\n                    \"referenceId\": \"272169\",\n                    \"code\": \"EKOFISK P\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"EKOFISK P\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"EKOFISK Q\",\n                    \"created\": \"2020-01-15T11:41:55.969Z\",\n                    \"referenceId\": \"272253\",\n                    \"code\": \"EKOFISK Q\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"EKOFISK Q\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"EKOFISK R\",\n                    \"created\": \"2020-01-15T11:41:55.971Z\",\n                    \"referenceId\": \"272001\",\n                    \"code\": \"EKOFISK R\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"EKOFISK R\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"EKOFISK S\",\n                    \"created\": \"2020-01-15T11:41:55.973Z\",\n                    \"referenceId\": \"271973\",\n                    \"code\": \"EKOFISK S\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"EKOFISK S\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"EKOFISK SBM-1\",\n                    \"created\": \"2020-01-15T11:41:55.974Z\",\n                    \"referenceId\": \"286393\",\n                    \"code\": \"EKOFISK SBM-1\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"EKOFISK SBM-1\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"EKOFISK SBM-2\",\n                    \"created\": \"2020-01-15T11:41:55.976Z\",\n                    \"referenceId\": \"286421\",\n                    \"code\": \"EKOFISK SBM-2\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"EKOFISK SBM-2\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"EKOFISK S-BS\",\n                    \"created\": \"2020-01-15T11:41:55.977Z\",\n                    \"referenceId\": \"281325\",\n                    \"code\": \"EKOFISK S-BS\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"EKOFISK S-BS\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"EKOFISK SØR FL\",\n                    \"created\": \"2020-01-15T11:41:55.979Z\",\n                    \"referenceId\": \"281297\",\n                    \"code\": \"EKOFISK SØR FL\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"EKOFISK SØR FL\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"EKOFISK T\",\n                    \"created\": \"2020-01-15T11:41:55.981Z\",\n                    \"referenceId\": \"272141\",\n                    \"code\": \"EKOFISK T\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"EKOFISK T\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"EKOFISK T WALL\",\n                    \"created\": \"2020-01-15T11:41:55.982Z\",\n                    \"referenceId\": \"282669\",\n                    \"code\": \"EKOFISK T WALL\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"EKOFISK T WALL\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"EKOFISK VB-T\",\n                    \"created\": \"2020-01-15T11:41:56.065Z\",\n                    \"referenceId\": \"426442\",\n                    \"code\": \"EKOFISK VB-T\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"EKOFISK VB-T\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"EKOFISK W\",\n                    \"created\": \"2020-01-15T11:41:56.067Z\",\n                    \"referenceId\": \"277293\",\n                    \"code\": \"EKOFISK W\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"EKOFISK W\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"EKOFISK X\",\n                    \"created\": \"2020-01-15T11:41:56.069Z\",\n                    \"referenceId\": \"278525\",\n                    \"code\": \"EKOFISK X\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"EKOFISK X\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"EKOFISK X-BS\",\n                    \"created\": \"2020-01-15T11:41:56.071Z\",\n                    \"referenceId\": \"281353\",\n                    \"code\": \"EKOFISK X-BS\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"EKOFISK X-BS\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"EKOFISK Z\",\n                    \"created\": \"2020-01-15T11:41:56.073Z\",\n                    \"referenceId\": \"425058\",\n                    \"code\": \"EKOFISK Z\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"EKOFISK Z\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ELDFISK A\",\n                    \"created\": \"2020-01-15T11:41:56.075Z\",\n                    \"referenceId\": \"271581\",\n                    \"code\": \"ELDFISK A\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ELDFISK A\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ELDFISK B\",\n                    \"created\": \"2020-01-15T11:41:56.077Z\",\n                    \"referenceId\": \"271609\",\n                    \"code\": \"ELDFISK B\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ELDFISK B\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ELDFISK B-FL\",\n                    \"created\": \"2020-01-15T11:41:56.08Z\",\n                    \"referenceId\": \"286029\",\n                    \"code\": \"ELDFISK B-FL\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ELDFISK B-FL\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ELDFISK E\",\n                    \"created\": \"2020-01-15T11:41:56.082Z\",\n                    \"referenceId\": \"280093\",\n                    \"code\": \"ELDFISK E\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ELDFISK E\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ELDFISK FTP\",\n                    \"created\": \"2020-01-15T11:41:56.164Z\",\n                    \"referenceId\": \"272057\",\n                    \"code\": \"ELDFISK FTP\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ELDFISK FTP\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ELDFISK FTP-BS\",\n                    \"created\": \"2020-01-15T11:41:56.166Z\",\n                    \"referenceId\": \"281409\",\n                    \"code\": \"ELDFISK FTP-BS\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ELDFISK FTP-BS\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ELDFISK FTP-FL\",\n                    \"created\": \"2020-01-15T11:41:56.168Z\",\n                    \"referenceId\": \"281437\",\n                    \"code\": \"ELDFISK FTP-FL\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ELDFISK FTP-FL\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ELDFISK S\",\n                    \"created\": \"2020-01-15T11:41:56.17Z\",\n                    \"referenceId\": \"432160\",\n                    \"code\": \"ELDFISK S\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ELDFISK S\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ELDFISK S-BS\",\n                    \"created\": \"2020-01-15T11:41:56.172Z\",\n                    \"referenceId\": \"432219\",\n                    \"code\": \"ELDFISK S-BS\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ELDFISK S-BS\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"EMBLA\",\n                    \"created\": \"2020-01-15T11:41:56.174Z\",\n                    \"referenceId\": \"277377\",\n                    \"code\": \"EMBLA\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"EMBLA\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"EMDEN SSIV\",\n                    \"created\": \"2020-01-15T11:41:56.175Z\",\n                    \"referenceId\": \"287121\",\n                    \"code\": \"EMDEN SSIV\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"EMDEN SSIV\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"EUROPIPE-SCP\",\n                    \"created\": \"2020-01-15T11:41:56.177Z\",\n                    \"referenceId\": \"286841\",\n                    \"code\": \"EUROPIPE-SCP\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"EUROPIPE-SCP\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"FENJA GAS INJ/LIFT PLEM\",\n                    \"created\": \"2020-01-15T11:41:56.179Z\",\n                    \"referenceId\": \"459350\",\n                    \"code\": \"FENJA GAS INJ/LIFT PLEM\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"FENJA GAS INJ/LIFT PLEM\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"FENJA PRODUCTION PLET\",\n                    \"created\": \"2020-01-15T11:41:56.264Z\",\n                    \"referenceId\": \"459507\",\n                    \"code\": \"FENJA PRODUCTION PLET\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"FENJA PRODUCTION PLET\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"FENJA WATER INJ RISER BASE\",\n                    \"created\": \"2020-01-15T11:41:56.268Z\",\n                    \"referenceId\": \"459650\",\n                    \"code\": \"FENJA WATER INJ RISER BASE\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"FENJA WATER INJ RISER BASE\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"FLAGS TCS\",\n                    \"created\": \"2020-01-15T11:41:56.27Z\",\n                    \"referenceId\": \"433938\",\n                    \"code\": \"FLAGS TCS\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"FLAGS TCS\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"FLAGS-T\",\n                    \"created\": \"2020-01-15T11:41:56.272Z\",\n                    \"referenceId\": \"377070\",\n                    \"code\": \"FLAGS-T\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"FLAGS-T\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"FLORØ T\",\n                    \"created\": \"2020-01-15T11:41:56.273Z\",\n                    \"referenceId\": \"287513\",\n                    \"code\": \"FLORØ T\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"FLORØ T\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"FRAM T-1\",\n                    \"created\": \"2020-01-15T11:41:56.275Z\",\n                    \"referenceId\": \"371558\",\n                    \"code\": \"FRAM T-1\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"FRAM T-1\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"FRAM T-2\",\n                    \"created\": \"2020-01-15T11:41:56.277Z\",\n                    \"referenceId\": \"371595\",\n                    \"code\": \"FRAM T-2\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"FRAM T-2\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"FRANPIPE T\",\n                    \"created\": \"2020-01-15T11:41:56.278Z\",\n                    \"referenceId\": \"287233\",\n                    \"code\": \"FRANPIPE T\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"FRANPIPE T\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"FRIGG DP1\",\n                    \"created\": \"2020-01-15T11:41:56.28Z\",\n                    \"referenceId\": \"280933\",\n                    \"code\": \"FRIGG DP1\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"FRIGG DP1\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"FRIGG DP2\",\n                    \"created\": \"2020-01-15T11:41:56.282Z\",\n                    \"referenceId\": \"277965\",\n                    \"code\": \"FRIGG DP2\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"FRIGG DP2\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"FRIGG QP\",\n                    \"created\": \"2020-01-15T11:41:56.283Z\",\n                    \"referenceId\": \"365776\",\n                    \"code\": \"FRIGG QP\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"FRIGG QP\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"FRIGG TCP2\",\n                    \"created\": \"2020-01-15T11:41:56.365Z\",\n                    \"referenceId\": \"272561\",\n                    \"code\": \"FRIGG TCP2\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"FRIGG TCP2\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"FRIGG TP1-Y\",\n                    \"created\": \"2020-01-15T11:41:56.366Z\",\n                    \"referenceId\": \"438553\",\n                    \"code\": \"FRIGG TP1-Y\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"FRIGG TP1-Y\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"FRØY\",\n                    \"created\": \"2020-01-15T11:41:56.368Z\",\n                    \"referenceId\": \"277433\",\n                    \"code\": \"FRØY\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"FRØY\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"GINA KROG\",\n                    \"created\": \"2020-01-15T11:41:56.37Z\",\n                    \"referenceId\": \"443856\",\n                    \"code\": \"GINA KROG\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"GINA KROG\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"GINA KROG FSO\",\n                    \"created\": \"2020-01-15T11:41:56.372Z\",\n                    \"referenceId\": \"444592\",\n                    \"code\": \"GINA KROG FSO\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"GINA KROG FSO\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"GINA KROG T\",\n                    \"created\": \"2020-01-15T11:41:56.373Z\",\n                    \"referenceId\": \"444803\",\n                    \"code\": \"GINA KROG T\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"GINA KROG T\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"GJØA\",\n                    \"created\": \"2020-01-15T11:41:56.375Z\",\n                    \"referenceId\": \"406672\",\n                    \"code\": \"GJØA\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"GJØA\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"GJØA-T\",\n                    \"created\": \"2020-01-15T11:41:56.377Z\",\n                    \"referenceId\": \"406731\",\n                    \"code\": \"GJØA-T\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"GJØA-T\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"GRANE\",\n                    \"created\": \"2020-01-15T11:41:56.379Z\",\n                    \"referenceId\": \"283285\",\n                    \"code\": \"GRANE\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"GRANE\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"GRANE SSIV\",\n                    \"created\": \"2020-01-15T11:41:56.38Z\",\n                    \"referenceId\": \"363581\",\n                    \"code\": \"GRANE SSIV\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"GRANE SSIV\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"GRANE-Y\",\n                    \"created\": \"2020-01-15T11:41:56.382Z\",\n                    \"referenceId\": \"441741\",\n                    \"code\": \"GRANE-Y\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"GRANE-Y\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"GUDRUN\",\n                    \"created\": \"2020-01-15T11:41:56.464Z\",\n                    \"referenceId\": \"410651\",\n                    \"code\": \"GUDRUN\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"GUDRUN\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"GULLFAKS A\",\n                    \"created\": \"2020-01-15T11:41:56.466Z\",\n                    \"referenceId\": \"271833\",\n                    \"code\": \"GULLFAKS A\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"GULLFAKS A\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"GULLFAKS A SSIV\",\n                    \"created\": \"2020-01-15T11:41:56.468Z\",\n                    \"referenceId\": \"287317\",\n                    \"code\": \"GULLFAKS A SSIV\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"GULLFAKS A SSIV\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"GULLFAKS A-SPM 1\",\n                    \"created\": \"2020-01-15T11:41:56.47Z\",\n                    \"referenceId\": \"272813\",\n                    \"code\": \"GULLFAKS A-SPM 1\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"GULLFAKS A-SPM 1\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"GULLFAKS A-SPM 2\",\n                    \"created\": \"2020-01-15T11:41:56.472Z\",\n                    \"referenceId\": \"272841\",\n                    \"code\": \"GULLFAKS A-SPM 2\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"GULLFAKS A-SPM 2\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"GULLFAKS B\",\n                    \"created\": \"2020-01-15T11:41:56.473Z\",\n                    \"referenceId\": \"271917\",\n                    \"code\": \"GULLFAKS B\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"GULLFAKS B\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"GULLFAKS C\",\n                    \"created\": \"2020-01-15T11:41:56.475Z\",\n                    \"referenceId\": \"272645\",\n                    \"code\": \"GULLFAKS C\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"GULLFAKS C\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"GULLFAKS C SSIV\",\n                    \"created\": \"2020-01-15T11:41:56.477Z\",\n                    \"referenceId\": \"287345\",\n                    \"code\": \"GULLFAKS C SSIV\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"GULLFAKS C SSIV\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"GULLFAKS OLS-1\",\n                    \"created\": \"2020-01-15T11:41:56.479Z\",\n                    \"referenceId\": \"438710\",\n                    \"code\": \"GULLFAKS OLS-1\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"GULLFAKS OLS-1\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"GULLFAKS OLS-2\",\n                    \"created\": \"2020-01-15T11:41:56.481Z\",\n                    \"referenceId\": \"439911\",\n                    \"code\": \"GULLFAKS OLS-2\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"GULLFAKS OLS-2\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"GULLFAKS SC\",\n                    \"created\": \"2020-01-15T11:41:56.482Z\",\n                    \"referenceId\": \"443567\",\n                    \"code\": \"GULLFAKS SC\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"GULLFAKS SC\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"GULLFAKS T\",\n                    \"created\": \"2020-01-15T11:41:56.564Z\",\n                    \"referenceId\": \"287289\",\n                    \"code\": \"GULLFAKS T\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"GULLFAKS T\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"GYDA\",\n                    \"created\": \"2020-01-15T11:41:56.566Z\",\n                    \"referenceId\": \"272337\",\n                    \"code\": \"GYDA\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"GYDA\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"GYDA-Y\",\n                    \"created\": \"2020-01-15T11:41:56.568Z\",\n                    \"referenceId\": \"286925\",\n                    \"code\": \"GYDA-Y\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"GYDA-Y\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"H-7\",\n                    \"created\": \"2020-01-15T11:41:56.57Z\",\n                    \"referenceId\": \"277237\",\n                    \"code\": \"H-7\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"H-7\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"H-7 BP\",\n                    \"created\": \"2020-01-15T11:41:56.572Z\",\n                    \"referenceId\": \"377218\",\n                    \"code\": \"H-7 BP\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"H-7 BP\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"HARALD A\",\n                    \"created\": \"2020-01-15T11:41:56.573Z\",\n                    \"referenceId\": \"412931\",\n                    \"code\": \"HARALD A\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"HARALD A\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"HARALD-Y\",\n                    \"created\": \"2020-01-15T11:41:56.573Z\",\n                    \"referenceId\": \"441523\",\n                    \"code\": \"HARALD-Y\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"HARALD-Y\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"HEIDRUN\",\n                    \"created\": \"2020-01-15T11:41:56.575Z\",\n                    \"referenceId\": \"272421\",\n                    \"code\": \"HEIDRUN\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"HEIDRUN\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"HEIDRUN FSU\",\n                    \"created\": \"2020-01-15T11:41:56.577Z\",\n                    \"referenceId\": \"443503\",\n                    \"code\": \"HEIDRUN FSU\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"HEIDRUN FSU\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"HEIDRUN PLEM-1\",\n                    \"created\": \"2020-01-15T11:41:56.579Z\",\n                    \"referenceId\": \"286785\",\n                    \"code\": \"HEIDRUN PLEM-1\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"HEIDRUN PLEM-1\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"HEIDRUN PLEM-2\",\n                    \"created\": \"2020-01-15T11:41:56.581Z\",\n                    \"referenceId\": \"286813\",\n                    \"code\": \"HEIDRUN PLEM-2\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"HEIDRUN PLEM-2\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"HEIDRUN RISER-BASE\",\n                    \"created\": \"2020-01-15T11:41:56.583Z\",\n                    \"referenceId\": \"281997\",\n                    \"code\": \"HEIDRUN RISER-BASE\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"HEIDRUN RISER-BASE\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"HEIDRUN SDU\",\n                    \"created\": \"2020-01-15T11:41:56.665Z\",\n                    \"referenceId\": \"282025\",\n                    \"code\": \"HEIDRUN SDU\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"HEIDRUN SDU\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"HEIDRUN STL-I\",\n                    \"created\": \"2020-01-15T11:41:56.667Z\",\n                    \"referenceId\": \"287681\",\n                    \"code\": \"HEIDRUN STL-I\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"HEIDRUN STL-I\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"HEIDRUN STL-II\",\n                    \"created\": \"2020-01-15T11:41:56.669Z\",\n                    \"referenceId\": \"287709\",\n                    \"code\": \"HEIDRUN STL-II\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"HEIDRUN STL-II\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"HEIDRUN UMBILCAL BASE\",\n                    \"created\": \"2020-01-15T11:41:56.671Z\",\n                    \"referenceId\": \"282473\",\n                    \"code\": \"HEIDRUN UMBILCAL BASE\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"HEIDRUN UMBILCAL BASE\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"HEIMDAL\",\n                    \"created\": \"2020-01-15T11:41:56.673Z\",\n                    \"referenceId\": \"271777\",\n                    \"code\": \"HEIMDAL\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"HEIMDAL\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"HEIMDAL HRP\",\n                    \"created\": \"2020-01-15T11:41:56.675Z\",\n                    \"referenceId\": \"280569\",\n                    \"code\": \"HEIMDAL HRP\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"HEIMDAL HRP\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"HOD\",\n                    \"created\": \"2020-01-15T11:41:56.677Z\",\n                    \"referenceId\": \"272309\",\n                    \"code\": \"HOD\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"HOD\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"HULDRA\",\n                    \"created\": \"2020-01-15T11:41:56.679Z\",\n                    \"referenceId\": \"277573\",\n                    \"code\": \"HULDRA\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"HULDRA\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"IVAR AASEN\",\n                    \"created\": \"2020-01-15T11:41:56.765Z\",\n                    \"referenceId\": \"442024\",\n                    \"code\": \"IVAR AASEN\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"IVAR AASEN\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"JOHAN CASTBERG UMBILICAL BASE\",\n                    \"created\": \"2020-01-15T11:41:56.767Z\",\n                    \"referenceId\": \"459964\",\n                    \"code\": \"JOHAN CASTBERG UMBILICAL BASE\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"JOHAN CASTBERG UMBILICAL BASE\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"JOHAN SVERDRUP DP\",\n                    \"created\": \"2020-01-15T11:41:56.77Z\",\n                    \"referenceId\": \"451874\",\n                    \"code\": \"JOHAN SVERDRUP DP\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"JOHAN SVERDRUP DP\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"JOHAN SVERDRUP LQ\",\n                    \"created\": \"2020-01-15T11:41:56.771Z\",\n                    \"referenceId\": \"451651\",\n                    \"code\": \"JOHAN SVERDRUP LQ\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"JOHAN SVERDRUP LQ\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"JOHAN SVERDRUP P1\",\n                    \"created\": \"2020-01-15T11:41:56.773Z\",\n                    \"referenceId\": \"451762\",\n                    \"code\": \"JOHAN SVERDRUP P1\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"JOHAN SVERDRUP P1\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"JOHAN SVERDRUP RP\",\n                    \"created\": \"2020-01-15T11:41:56.775Z\",\n                    \"referenceId\": \"449981\",\n                    \"code\": \"JOHAN SVERDRUP RP\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"JOHAN SVERDRUP RP\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"JOHAN SVERDRUP STATPIPE HOT TAP\",\n                    \"created\": \"2020-01-15T11:41:56.778Z\",\n                    \"referenceId\": \"456869\",\n                    \"code\": \"JOHAN SVERDRUP STATPIPE HOT TAP\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"JOHAN SVERDRUP STATPIPE HOT TAP\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"JOHAN SVERDRUP STATPIPE PLEM\",\n                    \"created\": \"2020-01-15T11:41:56.78Z\",\n                    \"referenceId\": \"456808\",\n                    \"code\": \"JOHAN SVERDRUP STATPIPE PLEM\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"JOHAN SVERDRUP STATPIPE PLEM\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"JOTUN B\",\n                    \"created\": \"2020-01-15T11:41:56.782Z\",\n                    \"referenceId\": \"279365\",\n                    \"code\": \"JOTUN B\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"JOTUN B\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"JOTUN SSIV\",\n                    \"created\": \"2020-01-15T11:41:56.784Z\",\n                    \"referenceId\": \"287177\",\n                    \"code\": \"JOTUN SSIV\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"JOTUN SSIV\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"JOTUN T\",\n                    \"created\": \"2020-01-15T11:41:56.785Z\",\n                    \"referenceId\": \"287093\",\n                    \"code\": \"JOTUN T\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"JOTUN T\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"KOLLSNES T\",\n                    \"created\": \"2020-01-15T11:41:56.787Z\",\n                    \"referenceId\": \"287541\",\n                    \"code\": \"KOLLSNES T\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"KOLLSNES T\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"KRISTIN\",\n                    \"created\": \"2020-01-15T11:41:56.865Z\",\n                    \"referenceId\": \"368635\",\n                    \"code\": \"KRISTIN\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"KRISTIN\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"KRISTIN T\",\n                    \"created\": \"2020-01-15T11:41:56.867Z\",\n                    \"referenceId\": \"287429\",\n                    \"code\": \"KRISTIN T\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"KRISTIN T\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"KVITEBJØRN\",\n                    \"created\": \"2020-01-15T11:41:56.869Z\",\n                    \"referenceId\": \"280877\",\n                    \"code\": \"KVITEBJØRN\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"KVITEBJØRN\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"LANGELED SSVS\",\n                    \"created\": \"2020-01-15T11:41:56.871Z\",\n                    \"referenceId\": \"405699\",\n                    \"code\": \"LANGELED SSVS\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"LANGELED SSVS\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"LILLE-FRIGG A\",\n                    \"created\": \"2020-01-15T11:41:56.872Z\",\n                    \"referenceId\": \"282165\",\n                    \"code\": \"LILLE-FRIGG A\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"LILLE-FRIGG A\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"MAINLINE I.V\",\n                    \"created\": \"2020-01-15T11:41:56.874Z\",\n                    \"referenceId\": \"441580\",\n                    \"code\": \"MAINLINE I.V\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"MAINLINE I.V\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"MARTIN LINGE A\",\n                    \"created\": \"2020-01-15T11:41:56.875Z\",\n                    \"referenceId\": \"436400\",\n                    \"code\": \"MARTIN LINGE A\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"MARTIN LINGE A\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"MARTIN LINGE B\",\n                    \"created\": \"2020-01-15T11:41:56.878Z\",\n                    \"referenceId\": \"444051\",\n                    \"code\": \"MARTIN LINGE B\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"MARTIN LINGE B\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"MTS SSIV\",\n                    \"created\": \"2020-01-15T11:41:56.88Z\",\n                    \"referenceId\": \"395321\",\n                    \"code\": \"MTS SSIV\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"MTS SSIV\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"MURCHISON A\",\n                    \"created\": \"2020-01-15T11:41:56.88Z\",\n                    \"referenceId\": \"372759\",\n                    \"code\": \"MURCHISON A\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"MURCHISON A\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"MØRE T\",\n                    \"created\": \"2020-01-15T11:41:56.882Z\",\n                    \"referenceId\": \"287457\",\n                    \"code\": \"MØRE T\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"MØRE T\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"NAVION SAGA\",\n                    \"created\": \"2020-01-15T11:41:56.883Z\",\n                    \"referenceId\": \"376822\",\n                    \"code\": \"NAVION SAGA\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"NAVION SAGA\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"NJORD A\",\n                    \"created\": \"2020-01-15T11:41:56.965Z\",\n                    \"referenceId\": \"277713\",\n                    \"code\": \"NJORD A\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"NJORD A\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"NJORD BRAVO\",\n                    \"created\": \"2020-01-15T11:41:56.967Z\",\n                    \"referenceId\": \"279561\",\n                    \"code\": \"NJORD BRAVO\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"NJORD BRAVO\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"NJORD SDU-1\",\n                    \"created\": \"2020-01-15T11:41:56.969Z\",\n                    \"referenceId\": \"285329\",\n                    \"code\": \"NJORD SDU-1\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"NJORD SDU-1\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"NJORD SDU-2\",\n                    \"created\": \"2020-01-15T11:41:56.971Z\",\n                    \"referenceId\": \"285385\",\n                    \"code\": \"NJORD SDU-2\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"NJORD SDU-2\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"NJORD STL\",\n                    \"created\": \"2020-01-15T11:41:56.972Z\",\n                    \"referenceId\": \"287737\",\n                    \"code\": \"NJORD STL\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"NJORD STL\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"NJORD T\",\n                    \"created\": \"2020-01-15T11:41:56.974Z\",\n                    \"referenceId\": \"287653\",\n                    \"code\": \"NJORD T\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"NJORD T\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"NORDØST FRIGG A\",\n                    \"created\": \"2020-01-15T11:41:56.976Z\",\n                    \"referenceId\": \"282137\",\n                    \"code\": \"NORDØST FRIGG A\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"NORDØST FRIGG A\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"NORNE ERB\",\n                    \"created\": \"2020-01-15T11:41:56.977Z\",\n                    \"referenceId\": \"282221\",\n                    \"code\": \"NORNE ERB\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"NORNE ERB\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"NORNE/HEIDRUN T\",\n                    \"created\": \"2020-01-15T11:41:56.979Z\",\n                    \"referenceId\": \"287261\",\n                    \"code\": \"NORNE/HEIDRUN T\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"NORNE/HEIDRUN T\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"NORPIPE Y\",\n                    \"created\": \"2020-01-15T11:41:56.98Z\",\n                    \"referenceId\": \"287065\",\n                    \"code\": \"NORPIPE Y\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"NORPIPE Y\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ODIN\",\n                    \"created\": \"2020-01-15T11:41:56.982Z\",\n                    \"referenceId\": \"271805\",\n                    \"code\": \"ODIN\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ODIN\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"OSEBERG A\",\n                    \"created\": \"2020-01-15T11:41:57.064Z\",\n                    \"referenceId\": \"271245\",\n                    \"code\": \"OSEBERG A\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"OSEBERG A\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"OSEBERG B\",\n                    \"created\": \"2020-01-15T11:41:57.066Z\",\n                    \"referenceId\": \"272897\",\n                    \"code\": \"OSEBERG B\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"OSEBERG B\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"OSEBERG C\",\n                    \"created\": \"2020-01-15T11:41:57.068Z\",\n                    \"referenceId\": \"272225\",\n                    \"code\": \"OSEBERG C\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"OSEBERG C\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"OSEBERG D\",\n                    \"created\": \"2020-01-15T11:41:57.07Z\",\n                    \"referenceId\": \"280541\",\n                    \"code\": \"OSEBERG D\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"OSEBERG D\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"OSEBERG H\",\n                    \"created\": \"2020-01-15T11:41:57.072Z\",\n                    \"referenceId\": \"454141\",\n                    \"code\": \"OSEBERG H\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"OSEBERG H\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"OSEBERG SØR\",\n                    \"created\": \"2020-01-15T11:41:57.074Z\",\n                    \"referenceId\": \"280205\",\n                    \"code\": \"OSEBERG SØR\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"OSEBERG SØR\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"OSEBERG ØST\",\n                    \"created\": \"2020-01-15T11:41:57.075Z\",\n                    \"referenceId\": \"277489\",\n                    \"code\": \"OSEBERG ØST\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"OSEBERG ØST\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"OSEBERG-Y\",\n                    \"created\": \"2020-01-15T11:41:57.077Z\",\n                    \"referenceId\": \"286869\",\n                    \"code\": \"OSEBERG-Y\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"OSEBERG-Y\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"RINGHORNE\",\n                    \"created\": \"2020-01-15T11:41:57.079Z\",\n                    \"referenceId\": \"280849\",\n                    \"code\": \"RINGHORNE\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"RINGHORNE\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ROGN SØR MANIFOLD\",\n                    \"created\": \"2020-01-15T11:41:57.081Z\",\n                    \"referenceId\": \"434044\",\n                    \"code\": \"ROGN SØR MANIFOLD\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ROGN SØR MANIFOLD\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SAGE-T\",\n                    \"created\": \"2020-01-15T11:41:57.082Z\",\n                    \"referenceId\": \"375390\",\n                    \"code\": \"SAGE-T\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SAGE-T\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SKARV ERB\",\n                    \"created\": \"2020-01-15T11:41:57.164Z\",\n                    \"referenceId\": \"406335\",\n                    \"code\": \"SKARV ERB\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SKARV ERB\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SKOGUL PLEM\",\n                    \"created\": \"2020-01-15T11:41:57.166Z\",\n                    \"referenceId\": \"507332\",\n                    \"code\": \"SKOGUL PLEM\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SKOGUL PLEM\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SLEIPNER A\",\n                    \"created\": \"2020-01-15T11:41:57.168Z\",\n                    \"referenceId\": \"272365\",\n                    \"code\": \"SLEIPNER A\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SLEIPNER A\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SLEIPNER B\",\n                    \"created\": \"2020-01-15T11:41:57.17Z\",\n                    \"referenceId\": \"277601\",\n                    \"code\": \"SLEIPNER B\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SLEIPNER B\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SLEIPNER FL\",\n                    \"created\": \"2020-01-15T11:41:57.172Z\",\n                    \"referenceId\": \"282305\",\n                    \"code\": \"SLEIPNER FL\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SLEIPNER FL\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SLEIPNER R\",\n                    \"created\": \"2020-01-15T11:41:57.174Z\",\n                    \"referenceId\": \"277797\",\n                    \"code\": \"SLEIPNER R\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SLEIPNER R\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SLEIPNER T\",\n                    \"created\": \"2020-01-15T11:41:57.175Z\",\n                    \"referenceId\": \"277629\",\n                    \"code\": \"SLEIPNER T\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SLEIPNER T\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SNORRE A\",\n                    \"created\": \"2020-01-15T11:41:57.177Z\",\n                    \"referenceId\": \"272085\",\n                    \"code\": \"SNORRE A\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SNORRE A\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SNORRE B\",\n                    \"created\": \"2020-01-15T11:41:57.179Z\",\n                    \"referenceId\": \"280485\",\n                    \"code\": \"SNORRE B\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SNORRE B\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SNORRE B SBV\",\n                    \"created\": \"2020-01-15T11:41:57.266Z\",\n                    \"referenceId\": \"287569\",\n                    \"code\": \"SNORRE B SBV\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SNORRE B SBV\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SNORRE MDU\",\n                    \"created\": \"2020-01-15T11:41:57.268Z\",\n                    \"referenceId\": \"282249\",\n                    \"code\": \"SNORRE MDU\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SNORRE MDU\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SNORRE SDU-1\",\n                    \"created\": \"2020-01-15T11:41:57.269Z\",\n                    \"referenceId\": \"285357\",\n                    \"code\": \"SNORRE SDU-1\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SNORRE SDU-1\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SNORRE SDU-2\",\n                    \"created\": \"2020-01-15T11:41:57.271Z\",\n                    \"referenceId\": \"285413\",\n                    \"code\": \"SNORRE SDU-2\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SNORRE SDU-2\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SNØHVIT CDU-1\",\n                    \"created\": \"2020-01-15T11:41:57.273Z\",\n                    \"referenceId\": \"370616\",\n                    \"code\": \"SNØHVIT CDU-1\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SNØHVIT CDU-1\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SNØHVIT PLEM-1\",\n                    \"created\": \"2020-01-15T11:41:57.275Z\",\n                    \"referenceId\": \"370654\",\n                    \"code\": \"SNØHVIT PLEM-1\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SNØHVIT PLEM-1\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"STATFJ-NORD SSIV\",\n                    \"created\": \"2020-01-15T11:41:57.277Z\",\n                    \"referenceId\": \"287205\",\n                    \"code\": \"STATFJ-NORD SSIV\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"STATFJ-NORD SSIV\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"STATFJORD A\",\n                    \"created\": \"2020-01-15T11:41:57.278Z\",\n                    \"referenceId\": \"271273\",\n                    \"code\": \"STATFJORD A\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"STATFJORD A\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"STATFJORD A-OLS\",\n                    \"created\": \"2020-01-15T11:41:57.281Z\",\n                    \"referenceId\": \"277741\",\n                    \"code\": \"STATFJORD A-OLS\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"STATFJORD A-OLS\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"STATFJORD B\",\n                    \"created\": \"2020-01-15T11:41:57.282Z\",\n                    \"referenceId\": \"271301\",\n                    \"code\": \"STATFJORD B\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"STATFJORD B\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"STATFJORD B-OLS\",\n                    \"created\": \"2020-01-15T11:41:57.364Z\",\n                    \"referenceId\": \"272589\",\n                    \"code\": \"STATFJORD B-OLS\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"STATFJORD B-OLS\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"STATFJORD C\",\n                    \"created\": \"2020-01-15T11:41:57.367Z\",\n                    \"referenceId\": \"271329\",\n                    \"code\": \"STATFJORD C\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"STATFJORD C\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"STATFJORD C-SPM\",\n                    \"created\": \"2020-01-15T11:41:57.368Z\",\n                    \"referenceId\": \"272617\",\n                    \"code\": \"STATFJORD C-SPM\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"STATFJORD C-SPM\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"STATFJORD-A-ALP\",\n                    \"created\": \"2020-01-15T11:41:57.37Z\",\n                    \"referenceId\": \"286561\",\n                    \"code\": \"STATFJORD-A-ALP\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"STATFJORD-A-ALP\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"STATFJORD-B-SPM\",\n                    \"created\": \"2020-01-15T11:41:57.372Z\",\n                    \"referenceId\": \"286589\",\n                    \"code\": \"STATFJORD-B-SPM\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"STATFJORD-B-SPM\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"STAT-SSTC\",\n                    \"created\": \"2020-01-15T11:41:57.373Z\",\n                    \"referenceId\": \"286365\",\n                    \"code\": \"STAT-SSTC\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"STAT-SSTC\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"STT-IN\",\n                    \"created\": \"2020-01-15T11:41:57.374Z\",\n                    \"referenceId\": \"286505\",\n                    \"code\": \"STT-IN\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"STT-IN\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TAMBAR\",\n                    \"created\": \"2020-01-15T11:41:57.376Z\",\n                    \"referenceId\": \"280793\",\n                    \"code\": \"TAMBAR\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TAMBAR\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TEESSIDE SSIV\",\n                    \"created\": \"2020-01-15T11:41:57.378Z\",\n                    \"referenceId\": \"287149\",\n                    \"code\": \"TEESSIDE SSIV\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TEESSIDE SSIV\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TOR\",\n                    \"created\": \"2020-01-15T11:41:57.38Z\",\n                    \"referenceId\": \"271525\",\n                    \"code\": \"TOR\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TOR\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TOR FL\",\n                    \"created\": \"2020-01-15T11:41:57.381Z\",\n                    \"referenceId\": \"281213\",\n                    \"code\": \"TOR FL\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TOR FL\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TOR II Y\",\n                    \"created\": \"2020-01-15T11:41:57.383Z\",\n                    \"referenceId\": \"287597\",\n                    \"code\": \"TOR II Y\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TOR II Y\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TORDIS SSIB\",\n                    \"created\": \"2020-01-15T11:41:57.465Z\",\n                    \"referenceId\": \"377386\",\n                    \"code\": \"TORDIS SSIB\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TORDIS SSIB\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TORDIS-MS\",\n                    \"created\": \"2020-01-15T11:41:57.467Z\",\n                    \"referenceId\": \"282893\",\n                    \"code\": \"TORDIS-MS\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TORDIS-MS\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TROLL A\",\n                    \"created\": \"2020-01-15T11:41:57.469Z\",\n                    \"referenceId\": \"278329\",\n                    \"code\": \"TROLL A\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TROLL A\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TROLL B\",\n                    \"created\": \"2020-01-15T11:41:57.471Z\",\n                    \"referenceId\": \"278273\",\n                    \"code\": \"TROLL B\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TROLL B\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TROLL C\",\n                    \"created\": \"2020-01-15T11:41:57.473Z\",\n                    \"referenceId\": \"279421\",\n                    \"code\": \"TROLL C\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TROLL C\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TROLL D\",\n                    \"created\": \"2020-01-15T11:41:57.475Z\",\n                    \"referenceId\": \"278105\",\n                    \"code\": \"TROLL D\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TROLL D\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TROLL E\",\n                    \"created\": \"2020-01-15T11:41:57.477Z\",\n                    \"referenceId\": \"278133\",\n                    \"code\": \"TROLL E\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TROLL E\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TROLL ERB\",\n                    \"created\": \"2020-01-15T11:41:57.479Z\",\n                    \"referenceId\": \"281493\",\n                    \"code\": \"TROLL ERB\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TROLL ERB\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TROLL ERS\",\n                    \"created\": \"2020-01-15T11:41:57.481Z\",\n                    \"referenceId\": \"281521\",\n                    \"code\": \"TROLL ERS\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TROLL ERS\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TROLL F\",\n                    \"created\": \"2020-01-15T11:41:57.482Z\",\n                    \"referenceId\": \"278161\",\n                    \"code\": \"TROLL F\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TROLL F\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TROLL G\",\n                    \"created\": \"2020-01-15T11:41:57.565Z\",\n                    \"referenceId\": \"278189\",\n                    \"code\": \"TROLL G\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TROLL G\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TROLL H\",\n                    \"created\": \"2020-01-15T11:41:57.567Z\",\n                    \"referenceId\": \"278301\",\n                    \"code\": \"TROLL H\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TROLL H\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TROLL PILOT\",\n                    \"created\": \"2020-01-15T11:41:57.569Z\",\n                    \"referenceId\": \"282921\",\n                    \"code\": \"TROLL PILOT\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TROLL PILOT\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TROLL PRB\",\n                    \"created\": \"2020-01-15T11:41:57.57Z\",\n                    \"referenceId\": \"281885\",\n                    \"code\": \"TROLL PRB\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TROLL PRB\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TROLL PRBN\",\n                    \"created\": \"2020-01-15T11:41:57.572Z\",\n                    \"referenceId\": \"281913\",\n                    \"code\": \"TROLL PRBN\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TROLL PRBN\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TROLL PRBS\",\n                    \"created\": \"2020-01-15T11:41:57.574Z\",\n                    \"referenceId\": \"281941\",\n                    \"code\": \"TROLL PRBS\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TROLL PRBS\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TROLL PRS\",\n                    \"created\": \"2020-01-15T11:41:57.576Z\",\n                    \"referenceId\": \"281969\",\n                    \"code\": \"TROLL PRS\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TROLL PRS\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TROLL PTG\",\n                    \"created\": \"2020-01-15T11:41:57.578Z\",\n                    \"referenceId\": \"282053\",\n                    \"code\": \"TROLL PTG\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TROLL PTG\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TROLL PTO\",\n                    \"created\": \"2020-01-15T11:41:57.579Z\",\n                    \"referenceId\": \"282081\",\n                    \"code\": \"TROLL PTO\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TROLL PTO\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TROLL RB1\",\n                    \"created\": \"2020-01-15T11:41:57.581Z\",\n                    \"referenceId\": \"282109\",\n                    \"code\": \"TROLL RB1\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TROLL RB1\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TROLL RB2\",\n                    \"created\": \"2020-01-15T11:41:57.583Z\",\n                    \"referenceId\": \"283313\",\n                    \"code\": \"TROLL RB2\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TROLL RB2\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TROLL RB3\",\n                    \"created\": \"2020-01-15T11:41:57.665Z\",\n                    \"referenceId\": \"283341\",\n                    \"code\": \"TROLL RB3\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TROLL RB3\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TROLL RB4\",\n                    \"created\": \"2020-01-15T11:41:57.667Z\",\n                    \"referenceId\": \"283369\",\n                    \"code\": \"TROLL RB4\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TROLL RB4\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TROLL RSS1\",\n                    \"created\": \"2020-01-15T11:41:57.669Z\",\n                    \"referenceId\": \"283397\",\n                    \"code\": \"TROLL RSS1\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TROLL RSS1\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TROLL RSS2\",\n                    \"created\": \"2020-01-15T11:41:57.671Z\",\n                    \"referenceId\": \"283425\",\n                    \"code\": \"TROLL RSS2\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TROLL RSS2\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"UK-NL\",\n                    \"created\": \"2020-01-15T11:41:57.673Z\",\n                    \"referenceId\": \"286449\",\n                    \"code\": \"UK-NL\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"UK-NL\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ULA DP\",\n                    \"created\": \"2020-01-15T11:41:57.674Z\",\n                    \"referenceId\": \"271889\",\n                    \"code\": \"ULA DP\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ULA DP\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ULA PP\",\n                    \"created\": \"2020-01-15T11:41:57.676Z\",\n                    \"referenceId\": \"272029\",\n                    \"code\": \"ULA PP\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ULA PP\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ULA QP\",\n                    \"created\": \"2020-01-15T11:41:57.678Z\",\n                    \"referenceId\": \"271665\",\n                    \"code\": \"ULA QP\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ULA QP\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ULA-Y\",\n                    \"created\": \"2020-01-15T11:41:57.68Z\",\n                    \"referenceId\": \"286477\",\n                    \"code\": \"ULA-Y\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ULA-Y\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"URD T\",\n                    \"created\": \"2020-01-15T11:41:57.682Z\",\n                    \"referenceId\": \"372144\",\n                    \"code\": \"URD T\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"URD T\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"VALEMON\",\n                    \"created\": \"2020-01-15T11:41:57.765Z\",\n                    \"referenceId\": \"424932\",\n                    \"code\": \"VALEMON\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"VALEMON\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"VALHALL BVS\",\n                    \"created\": \"2020-01-15T11:41:57.767Z\",\n                    \"referenceId\": \"287009\",\n                    \"code\": \"VALHALL BVS\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"VALHALL BVS\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"VALHALL DP\",\n                    \"created\": \"2020-01-15T11:41:57.769Z\",\n                    \"referenceId\": \"271749\",\n                    \"code\": \"VALHALL DP\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"VALHALL DP\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"VALHALL FLANKE NORD\",\n                    \"created\": \"2020-01-15T11:41:57.77Z\",\n                    \"referenceId\": \"361248\",\n                    \"code\": \"VALHALL FLANKE NORD\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"VALHALL FLANKE NORD\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"VALHALL FLANKE SØR\",\n                    \"created\": \"2020-01-15T11:41:57.772Z\",\n                    \"referenceId\": \"280961\",\n                    \"code\": \"VALHALL FLANKE SØR\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"VALHALL FLANKE SØR\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"VALHALL FLANKE VEST\",\n                    \"created\": \"2020-01-15T11:41:57.774Z\",\n                    \"referenceId\": \"453766\",\n                    \"code\": \"VALHALL FLANKE VEST\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"VALHALL FLANKE VEST\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"VALHALL IP\",\n                    \"created\": \"2020-01-15T11:41:57.776Z\",\n                    \"referenceId\": \"282529\",\n                    \"code\": \"VALHALL IP\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"VALHALL IP\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"VALHALL PCP\",\n                    \"created\": \"2020-01-15T11:41:57.777Z\",\n                    \"referenceId\": \"272449\",\n                    \"code\": \"VALHALL PCP\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"VALHALL PCP\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"VALHALL PH\",\n                    \"created\": \"2020-01-15T11:41:57.779Z\",\n                    \"referenceId\": \"406276\",\n                    \"code\": \"VALHALL PH\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"VALHALL PH\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"VALHALL Q\",\n                    \"created\": \"2020-01-15T11:41:57.781Z\",\n                    \"referenceId\": \"272477\",\n                    \"code\": \"VALHALL Q\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"VALHALL Q\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"VALHALL SSPR\",\n                    \"created\": \"2020-01-15T11:41:57.783Z\",\n                    \"referenceId\": \"286981\",\n                    \"code\": \"VALHALL SSPR\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"VALHALL SSPR\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"VALHALL VTS\",\n                    \"created\": \"2020-01-15T11:41:57.865Z\",\n                    \"referenceId\": \"286953\",\n                    \"code\": \"VALHALL VTS\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"VALHALL VTS\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"VALHALL WP\",\n                    \"created\": \"2020-01-15T11:41:57.867Z\",\n                    \"referenceId\": \"278385\",\n                    \"code\": \"VALHALL WP\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"VALHALL WP\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"VARG A\",\n                    \"created\": \"2020-01-15T11:41:57.868Z\",\n                    \"referenceId\": \"279505\",\n                    \"code\": \"VARG A\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"VARG A\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"VESLEFRIKK A\",\n                    \"created\": \"2020-01-15T11:41:57.87Z\",\n                    \"referenceId\": \"277321\",\n                    \"code\": \"VESLEFRIKK A\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"VESLEFRIKK A\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"VESLEFRIKK B\",\n                    \"created\": \"2020-01-15T11:41:57.872Z\",\n                    \"referenceId\": \"277349\",\n                    \"code\": \"VESLEFRIKK B\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"VESLEFRIKK B\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"VESLEFRIKK T\",\n                    \"created\": \"2020-01-15T11:41:57.873Z\",\n                    \"referenceId\": \"286617\",\n                    \"code\": \"VESLEFRIKK T\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"VESLEFRIKK T\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"VEST EKOFISK\",\n                    \"created\": \"2020-01-15T11:41:57.875Z\",\n                    \"referenceId\": \"271497\",\n                    \"code\": \"VEST EKOFISK\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"VEST EKOFISK\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"VESTERLED T\",\n                    \"created\": \"2020-01-15T11:41:57.876Z\",\n                    \"referenceId\": \"287625\",\n                    \"code\": \"VESTERLED T\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"VESTERLED T\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"VIGDIS NORDØST T\",\n                    \"created\": \"2020-01-15T11:41:57.878Z\",\n                    \"referenceId\": \"430070\",\n                    \"code\": \"VIGDIS NORDØST T\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"VIGDIS NORDØST T\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"VIGDIS-Y\",\n                    \"created\": \"2020-01-15T11:41:57.88Z\",\n                    \"referenceId\": \"286897\",\n                    \"code\": \"VIGDIS-Y\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"VIGDIS-Y\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"VISUND\",\n                    \"created\": \"2020-01-15T11:41:57.882Z\",\n                    \"referenceId\": \"277685\",\n                    \"code\": \"VISUND\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"VISUND\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"VISUND SDU-1\",\n                    \"created\": \"2020-01-15T11:41:57.964Z\",\n                    \"referenceId\": \"283453\",\n                    \"code\": \"VISUND SDU-1\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"VISUND SDU-1\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"VISUND SDU-2\",\n                    \"created\": \"2020-01-15T11:41:57.966Z\",\n                    \"referenceId\": \"283481\",\n                    \"code\": \"VISUND SDU-2\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"VISUND SDU-2\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"VISUND T\",\n                    \"created\": \"2020-01-15T11:41:57.968Z\",\n                    \"referenceId\": \"364607\",\n                    \"code\": \"VISUND T\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"VISUND T\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"VØRING T\",\n                    \"created\": \"2020-01-15T11:41:57.969Z\",\n                    \"referenceId\": \"287485\",\n                    \"code\": \"VØRING T\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"VØRING T\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"YME B\",\n                    \"created\": \"2020-01-15T11:41:57.971Z\",\n                    \"referenceId\": \"278413\",\n                    \"code\": \"YME B\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"YME B\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"YME SLS\",\n                    \"created\": \"2020-01-15T11:41:57.973Z\",\n                    \"referenceId\": \"404044\",\n                    \"code\": \"YME SLS\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"YME SLS\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"YME-STL\",\n                    \"created\": \"2020-01-15T11:41:57.975Z\",\n                    \"referenceId\": \"287765\",\n                    \"code\": \"YME-STL\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"YME-STL\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ZEEPIPE-SCP\",\n                    \"created\": \"2020-01-15T11:41:57.977Z\",\n                    \"referenceId\": \"286533\",\n                    \"code\": \"ZEEPIPE-SCP\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ZEEPIPE-SCP\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ØST FRIGG CMS\",\n                    \"created\": \"2020-01-15T11:41:57.979Z\",\n                    \"referenceId\": \"360641\",\n                    \"code\": \"ØST FRIGG CMS\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ØST FRIGG CMS\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ÅSGARD B\",\n                    \"created\": \"2020-01-15T11:41:58.065Z\",\n                    \"referenceId\": \"280121\",\n                    \"code\": \"ÅSGARD B\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ÅSGARD B\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ÅSGARD C\",\n                    \"created\": \"2020-01-15T11:41:58.067Z\",\n                    \"referenceId\": \"280149\",\n                    \"code\": \"ÅSGARD C\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ÅSGARD C\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ÅSGARD ERB\",\n                    \"created\": \"2020-01-15T11:41:58.069Z\",\n                    \"referenceId\": \"282613\",\n                    \"code\": \"ÅSGARD ERB\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ÅSGARD ERB\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ÅSGARD RB\",\n                    \"created\": \"2020-01-15T11:41:58.071Z\",\n                    \"referenceId\": \"365658\",\n                    \"code\": \"ÅSGARD RB\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ÅSGARD RB\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ÅSGARD SCMS-A\",\n                    \"created\": \"2020-01-15T11:41:58.073Z\",\n                    \"referenceId\": \"432583\",\n                    \"code\": \"ÅSGARD SCMS-A\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ÅSGARD SCMS-A\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ÅSGARD SCSt-A\",\n                    \"created\": \"2020-01-15T11:41:58.074Z\",\n                    \"referenceId\": \"432476\",\n                    \"code\": \"ÅSGARD SCSt-A\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ÅSGARD SCSt-A\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ÅSGARD T\",\n                    \"created\": \"2020-01-15T11:41:58.076Z\",\n                    \"referenceId\": \"287401\",\n                    \"code\": \"ÅSGARD T\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ÅSGARD T\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"AASTA HANSTEEN PLEM\",\n                    \"created\": \"2020-01-15T11:41:58.078Z\",\n                    \"referenceId\": \"459032\",\n                    \"code\": \"AASTA HANSTEEN PLEM\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"AASTA HANSTEEN PLEM\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"AASTA HANSTEEN UMBILICAL RISER BASE\",\n                    \"created\": \"2020-01-15T11:41:58.08Z\",\n                    \"referenceId\": \"459089\",\n                    \"code\": \"AASTA HANSTEEN UMBILICAL RISER BASE\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"AASTA HANSTEEN UMBILICAL RISER BASE\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ABEILLE SUPPORT\",\n                    \"created\": \"2020-01-15T11:41:58.081Z\",\n                    \"referenceId\": \"294544\",\n                    \"code\": \"ABEILLE SUPPORT\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ABEILLE SUPPORT\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ACERGY FALCON\",\n                    \"created\": \"2020-01-15T11:41:58.082Z\",\n                    \"referenceId\": \"402507\",\n                    \"code\": \"ACERGY FALCON\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ACERGY FALCON\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ACERGY OSPREY\",\n                    \"created\": \"2020-01-15T11:41:58.083Z\",\n                    \"referenceId\": \"377007\",\n                    \"code\": \"ACERGY OSPREY\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ACERGY OSPREY\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ACERGY VIKING\",\n                    \"created\": \"2020-01-15T11:41:58.164Z\",\n                    \"referenceId\": \"440555\",\n                    \"code\": \"ACERGY VIKING\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ACERGY VIKING\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"AKOFS SEAFARER\",\n                    \"created\": \"2020-01-15T11:41:58.165Z\",\n                    \"referenceId\": \"706601\",\n                    \"code\": \"AKOFS SEAFARER\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"AKOFS SEAFARER\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ANTIFRITE\",\n                    \"created\": \"2020-01-15T11:41:58.166Z\",\n                    \"referenceId\": \"296920\",\n                    \"code\": \"ANTIFRITE\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ANTIFRITE\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"AQUAMARINE\",\n                    \"created\": \"2020-01-15T11:41:58.167Z\",\n                    \"referenceId\": \"295597\",\n                    \"code\": \"AQUAMARINE\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"AQUAMARINE\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ARTEMIS ARCTIC\",\n                    \"created\": \"2020-01-15T11:41:58.168Z\",\n                    \"referenceId\": \"414880\",\n                    \"code\": \"ARTEMIS ARCTIC\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ARTEMIS ARCTIC\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ASKELADDEN\",\n                    \"created\": \"2020-01-15T11:41:58.169Z\",\n                    \"referenceId\": \"445592\",\n                    \"code\": \"ASKELADDEN\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ASKELADDEN\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ASKEPOTT\",\n                    \"created\": \"2020-01-15T11:41:58.169Z\",\n                    \"referenceId\": \"445646\",\n                    \"code\": \"ASKEPOTT\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ASKEPOTT\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"B.ENTERPRISE 2\",\n                    \"created\": \"2020-01-15T11:41:58.17Z\",\n                    \"referenceId\": \"295381\",\n                    \"code\": \"B.ENTERPRISE 2\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"B.ENTERPRISE 2\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"BELFORD DOLPHIN\",\n                    \"created\": \"2020-01-15T11:41:58.171Z\",\n                    \"referenceId\": \"297946\",\n                    \"code\": \"BELFORD DOLPHIN\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"BELFORD DOLPHIN\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"BIDEFORD DOLPHIN\",\n                    \"created\": \"2020-01-15T11:41:58.172Z\",\n                    \"referenceId\": \"290170\",\n                    \"code\": \"BIDEFORD DOLPHIN\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"BIDEFORD DOLPHIN\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"BOA GIANT\",\n                    \"created\": \"2020-01-15T11:41:58.173Z\",\n                    \"referenceId\": \"297703\",\n                    \"code\": \"BOA GIANT\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"BOA GIANT\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"BORGILA DOLPHIN\",\n                    \"created\": \"2020-01-15T11:41:58.173Z\",\n                    \"referenceId\": \"296974\",\n                    \"code\": \"BORGILA DOLPHIN\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"BORGILA DOLPHIN\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"BORGLAND DOLPHIN\",\n                    \"created\": \"2020-01-15T11:41:58.174Z\",\n                    \"referenceId\": \"297784\",\n                    \"code\": \"BORGLAND DOLPHIN\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"BORGLAND DOLPHIN\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"BORGNY DOLPHIN\",\n                    \"created\": \"2020-01-15T11:41:58.175Z\",\n                    \"referenceId\": \"288280\",\n                    \"code\": \"BORGNY DOLPHIN\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"BORGNY DOLPHIN\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"BORGSTEN DOLPHIN\",\n                    \"created\": \"2020-01-15T11:41:58.176Z\",\n                    \"referenceId\": \"288334\",\n                    \"code\": \"BORGSTEN DOLPHIN\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"BORGSTEN DOLPHIN\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"BP 471\",\n                    \"created\": \"2020-01-15T11:41:58.177Z\",\n                    \"referenceId\": \"296812\",\n                    \"code\": \"BP 471\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"BP 471\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"BREDFORD DOLPHIN\",\n                    \"created\": \"2020-01-15T11:41:58.177Z\",\n                    \"referenceId\": \"373521\",\n                    \"code\": \"BREDFORD DOLPHIN\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"BREDFORD DOLPHIN\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"BUCENTAUR\",\n                    \"created\": \"2020-01-15T11:41:58.178Z\",\n                    \"referenceId\": \"289441\",\n                    \"code\": \"BUCENTAUR\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"BUCENTAUR\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"BULFORD DOLPHIN\",\n                    \"created\": \"2020-01-15T11:41:58.179Z\",\n                    \"referenceId\": \"287956\",\n                    \"code\": \"BULFORD DOLPHIN\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"BULFORD DOLPHIN\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"BYFORD DOLPHIN\",\n                    \"created\": \"2020-01-15T11:41:58.18Z\",\n                    \"referenceId\": \"341331\",\n                    \"code\": \"BYFORD DOLPHIN\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"BYFORD DOLPHIN\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"CASTORO 10\",\n                    \"created\": \"2020-01-15T11:41:58.181Z\",\n                    \"referenceId\": \"297217\",\n                    \"code\": \"CASTORO 10\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"CASTORO 10\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"COSLInnovator\",\n                    \"created\": \"2020-01-15T11:41:58.181Z\",\n                    \"referenceId\": \"413825\",\n                    \"code\": \"COSLInnovator\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"COSLInnovator\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"COSLPioneer\",\n                    \"created\": \"2020-01-15T11:41:58.182Z\",\n                    \"referenceId\": \"413534\",\n                    \"code\": \"COSLPioneer\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"COSLPioneer\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"COSLPromoter\",\n                    \"created\": \"2020-01-15T11:41:58.263Z\",\n                    \"referenceId\": \"413883\",\n                    \"code\": \"COSLPromoter\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"COSLPromoter\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"COSLRigmar\",\n                    \"created\": \"2020-01-15T11:41:58.265Z\",\n                    \"referenceId\": \"297919\",\n                    \"code\": \"COSLRigmar\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"COSLRigmar\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"COSLRival\",\n                    \"created\": \"2020-01-15T11:41:58.266Z\",\n                    \"referenceId\": \"372798\",\n                    \"code\": \"COSLRival\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"COSLRival\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"CSO APACHE\",\n                    \"created\": \"2020-01-15T11:41:58.267Z\",\n                    \"referenceId\": \"374177\",\n                    \"code\": \"CSO APACHE\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"CSO APACHE\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"DEEPSEA ATLANTIC\",\n                    \"created\": \"2020-01-15T11:41:58.268Z\",\n                    \"referenceId\": \"404360\",\n                    \"code\": \"DEEPSEA ATLANTIC\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"DEEPSEA ATLANTIC\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"DEEPSEA BERGEN\",\n                    \"created\": \"2020-01-15T11:41:58.269Z\",\n                    \"referenceId\": \"287983\",\n                    \"code\": \"DEEPSEA BERGEN\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"DEEPSEA BERGEN\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"DEEPSEA NORDKAPP\",\n                    \"created\": \"2020-01-15T11:41:58.27Z\",\n                    \"referenceId\": \"507128\",\n                    \"code\": \"DEEPSEA NORDKAPP\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"DEEPSEA NORDKAPP\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"DEEPSEA PIONEER\",\n                    \"created\": \"2020-01-15T11:41:58.27Z\",\n                    \"referenceId\": \"289090\",\n                    \"code\": \"DEEPSEA PIONEER\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"DEEPSEA PIONEER\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"DEEPSEA STAVANGER\",\n                    \"created\": \"2020-01-15T11:41:58.271Z\",\n                    \"referenceId\": \"445536\",\n                    \"code\": \"DEEPSEA STAVANGER\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"DEEPSEA STAVANGER\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"DEEPSEA YANTAI\",\n                    \"created\": \"2020-01-15T11:41:58.272Z\",\n                    \"referenceId\": \"707616\",\n                    \"code\": \"DEEPSEA YANTAI\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"DEEPSEA YANTAI\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"DRILLMASTER\",\n                    \"created\": \"2020-01-15T11:41:58.273Z\",\n                    \"referenceId\": \"288172\",\n                    \"code\": \"DRILLMASTER\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"DRILLMASTER\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"DRILLSHIP\",\n                    \"created\": \"2020-01-15T11:41:58.274Z\",\n                    \"referenceId\": \"288199\",\n                    \"code\": \"DRILLSHIP\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"DRILLSHIP\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"EDDA FAUNA\",\n                    \"created\": \"2020-01-15T11:41:58.275Z\",\n                    \"referenceId\": \"403711\",\n                    \"code\": \"EDDA FAUNA\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"EDDA FAUNA\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"EDDA FJORD\",\n                    \"created\": \"2020-01-15T11:41:58.275Z\",\n                    \"referenceId\": \"415384\",\n                    \"code\": \"EDDA FJORD\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"EDDA FJORD\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"EDDA FLORA\",\n                    \"created\": \"2020-01-15T11:41:58.276Z\",\n                    \"referenceId\": \"408756\",\n                    \"code\": \"EDDA FLORA\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"EDDA FLORA\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"EDDA FREYA\",\n                    \"created\": \"2020-01-15T11:41:58.277Z\",\n                    \"referenceId\": \"707913\",\n                    \"code\": \"EDDA FREYA\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"EDDA FREYA\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"EIRIK RAUDE\",\n                    \"created\": \"2020-01-15T11:41:58.278Z\",\n                    \"referenceId\": \"341172\",\n                    \"code\": \"EIRIK RAUDE\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"EIRIK RAUDE\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ENDEAVOUR\",\n                    \"created\": \"2020-01-15T11:41:58.279Z\",\n                    \"referenceId\": \"296704\",\n                    \"code\": \"ENDEAVOUR\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ENDEAVOUR\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ESSAR WILDCAT\",\n                    \"created\": \"2020-01-15T11:41:58.28Z\",\n                    \"referenceId\": \"297028\",\n                    \"code\": \"ESSAR WILDCAT\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ESSAR WILDCAT\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"FAR SAGA\",\n                    \"created\": \"2020-01-15T11:41:58.28Z\",\n                    \"referenceId\": \"424872\",\n                    \"code\": \"FAR SAGA\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"FAR SAGA\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"FERDER\",\n                    \"created\": \"2020-01-15T11:41:58.281Z\",\n                    \"referenceId\": \"391059\",\n                    \"code\": \"FERDER\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"FERDER\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"FLOATEL ENDURANCE\",\n                    \"created\": \"2020-01-15T11:41:58.282Z\",\n                    \"referenceId\": \"445043\",\n                    \"code\": \"FLOATEL ENDURANCE\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"FLOATEL ENDURANCE\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"FLOATEL SUPERIOR\",\n                    \"created\": \"2020-01-15T11:41:58.283Z\",\n                    \"referenceId\": \"411482\",\n                    \"code\": \"FLOATEL SUPERIOR\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"FLOATEL SUPERIOR\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"FLOTELL\",\n                    \"created\": \"2020-01-15T11:41:58.365Z\",\n                    \"referenceId\": \"436105\",\n                    \"code\": \"FLOTELL\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"FLOTELL\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"FUGRO DISCOVERY\",\n                    \"created\": \"2020-01-15T11:41:58.365Z\",\n                    \"referenceId\": \"413252\",\n                    \"code\": \"FUGRO DISCOVERY\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"FUGRO DISCOVERY\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"FUGRO EXPLORER\",\n                    \"created\": \"2020-01-15T11:41:58.366Z\",\n                    \"referenceId\": \"373600\",\n                    \"code\": \"FUGRO EXPLORER\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"FUGRO EXPLORER\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"FUGRO MERCATOR\",\n                    \"created\": \"2020-01-15T11:41:58.367Z\",\n                    \"referenceId\": \"404582\",\n                    \"code\": \"FUGRO MERCATOR\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"FUGRO MERCATOR\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"FUGRO SALTIRE\",\n                    \"created\": \"2020-01-15T11:41:58.368Z\",\n                    \"referenceId\": \"413414\",\n                    \"code\": \"FUGRO SALTIRE\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"FUGRO SALTIRE\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"FUGRO SCOUT\",\n                    \"created\": \"2020-01-15T11:41:58.369Z\",\n                    \"referenceId\": \"461170\",\n                    \"code\": \"FUGRO SCOUT\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"FUGRO SCOUT\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"FUGRO SYNERGY\",\n                    \"created\": \"2020-01-15T11:41:58.37Z\",\n                    \"referenceId\": \"451543\",\n                    \"code\": \"FUGRO SYNERGY\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"FUGRO SYNERGY\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"GARD VARIANT\",\n                    \"created\": \"2020-01-15T11:41:58.371Z\",\n                    \"referenceId\": \"297109\",\n                    \"code\": \"GARD VARIANT\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"GARD VARIANT\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"GEOSUND\",\n                    \"created\": \"2020-01-15T11:41:58.371Z\",\n                    \"referenceId\": \"409724\",\n                    \"code\": \"GEOSUND\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"GEOSUND\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"GLOMAR BISCAY II\",\n                    \"created\": \"2020-01-15T11:41:58.372Z\",\n                    \"referenceId\": \"288091\",\n                    \"code\": \"GLOMAR BISCAY II\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"GLOMAR BISCAY II\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"GLOMAR CHALLENGE\",\n                    \"created\": \"2020-01-15T11:41:58.373Z\",\n                    \"referenceId\": \"298108\",\n                    \"code\": \"GLOMAR CHALLENGE\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"GLOMAR CHALLENGE\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"GLOMAR GRAND ISLE\",\n                    \"created\": \"2020-01-15T11:41:58.374Z\",\n                    \"referenceId\": \"288388\",\n                    \"code\": \"GLOMAR GRAND ISLE\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"GLOMAR GRAND ISLE\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"GREATSHIP MANISHA\",\n                    \"created\": \"2020-01-15T11:41:58.375Z\",\n                    \"referenceId\": \"435841\",\n                    \"code\": \"GREATSHIP MANISHA\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"GREATSHIP MANISHA\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"GRENA\",\n                    \"created\": \"2020-01-15T11:41:58.376Z\",\n                    \"referenceId\": \"364529\",\n                    \"code\": \"GRENA\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"GRENA\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"GSF ADRIATIC 1\",\n                    \"created\": \"2020-01-15T11:41:58.377Z\",\n                    \"referenceId\": \"292006\",\n                    \"code\": \"GSF ADRIATIC 1\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"GSF ADRIATIC 1\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"GSF ARCTIC I\",\n                    \"created\": \"2020-01-15T11:41:58.377Z\",\n                    \"referenceId\": \"293572\",\n                    \"code\": \"GSF ARCTIC I\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"GSF ARCTIC I\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"GSF ARCTIC II\",\n                    \"created\": \"2020-01-15T11:41:58.378Z\",\n                    \"referenceId\": \"296353\",\n                    \"code\": \"GSF ARCTIC II\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"GSF ARCTIC II\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"GSF LABRADOR\",\n                    \"created\": \"2020-01-15T11:41:58.379Z\",\n                    \"referenceId\": \"296866\",\n                    \"code\": \"GSF LABRADOR\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"GSF LABRADOR\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"GSF RIG 135\",\n                    \"created\": \"2020-01-15T11:41:58.465Z\",\n                    \"referenceId\": \"298189\",\n                    \"code\": \"GSF RIG 135\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"GSF RIG 135\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"GSF RIG 140\",\n                    \"created\": \"2020-01-15T11:41:58.465Z\",\n                    \"referenceId\": \"292681\",\n                    \"code\": \"GSF RIG 140\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"GSF RIG 140\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"GUARD VALLIANT\",\n                    \"created\": \"2020-01-15T11:41:58.466Z\",\n                    \"referenceId\": \"297541\",\n                    \"code\": \"GUARD VALLIANT\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"GUARD VALLIANT\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"GULFTIDE\",\n                    \"created\": \"2020-01-15T11:41:58.467Z\",\n                    \"referenceId\": \"288307\",\n                    \"code\": \"GULFTIDE\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"GULFTIDE\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"HAVEN\",\n                    \"created\": \"2020-01-15T11:41:58.468Z\",\n                    \"referenceId\": \"411539\",\n                    \"code\": \"HAVEN\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"HAVEN\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"HENRY GOODRICH\",\n                    \"created\": \"2020-01-15T11:41:58.469Z\",\n                    \"referenceId\": \"289387\",\n                    \"code\": \"HENRY GOODRICH\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"HENRY GOODRICH\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"HERMOD\",\n                    \"created\": \"2020-01-15T11:41:58.47Z\",\n                    \"referenceId\": \"446196\",\n                    \"code\": \"HERMOD\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"HERMOD\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ISLAND COMMANDER\",\n                    \"created\": \"2020-01-15T11:41:58.471Z\",\n                    \"referenceId\": \"413474\",\n                    \"code\": \"ISLAND COMMANDER\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ISLAND COMMANDER\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ISLAND CONSTRUCTOR\",\n                    \"created\": \"2020-01-15T11:41:58.471Z\",\n                    \"referenceId\": \"405827\",\n                    \"code\": \"ISLAND CONSTRUCTOR\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ISLAND CONSTRUCTOR\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ISLAND ENFORCER\",\n                    \"created\": \"2020-01-15T11:41:58.472Z\",\n                    \"referenceId\": \"411773\",\n                    \"code\": \"ISLAND ENFORCER\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ISLAND ENFORCER\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ISLAND FRONTIER\",\n                    \"created\": \"2020-01-15T11:41:58.473Z\",\n                    \"referenceId\": \"373829\",\n                    \"code\": \"ISLAND FRONTIER\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ISLAND FRONTIER\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ISLAND INNOVATOR\",\n                    \"created\": \"2020-01-15T11:41:58.474Z\",\n                    \"referenceId\": \"426940\",\n                    \"code\": \"ISLAND INNOVATOR\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ISLAND INNOVATOR\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ISLAND VALIANT\",\n                    \"created\": \"2020-01-15T11:41:58.475Z\",\n                    \"referenceId\": \"408814\",\n                    \"code\": \"ISLAND VALIANT\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ISLAND VALIANT\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ISLAND VANGUARD\",\n                    \"created\": \"2020-01-15T11:41:58.476Z\",\n                    \"referenceId\": \"405770\",\n                    \"code\": \"ISLAND VANGUARD\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ISLAND VANGUARD\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ISLAND WELLSERVER\",\n                    \"created\": \"2020-01-15T11:41:58.476Z\",\n                    \"referenceId\": \"404470\",\n                    \"code\": \"ISLAND WELLSERVER\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ISLAND WELLSERVER\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"J W MCLEAN\",\n                    \"created\": \"2020-01-15T11:41:58.477Z\",\n                    \"referenceId\": \"296731\",\n                    \"code\": \"J W MCLEAN\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"J W MCLEAN\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"JOIDES RESOLUTION\",\n                    \"created\": \"2020-01-15T11:41:58.478Z\",\n                    \"referenceId\": \"291169\",\n                    \"code\": \"JOIDES RESOLUTION\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"JOIDES RESOLUTION\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"KOLSKAYA\",\n                    \"created\": \"2020-01-15T11:41:58.479Z\",\n                    \"referenceId\": \"293977\",\n                    \"code\": \"KOLSKAYA\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"KOLSKAYA\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"LA MURALLA\",\n                    \"created\": \"2020-01-15T11:41:58.48Z\",\n                    \"referenceId\": \"288010\",\n                    \"code\": \"LA MURALLA\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"LA MURALLA\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"LE PELERIN\",\n                    \"created\": \"2020-01-15T11:41:58.481Z\",\n                    \"referenceId\": \"289063\",\n                    \"code\": \"LE PELERIN\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"LE PELERIN\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"LEIV EIRIKSSON\",\n                    \"created\": \"2020-01-15T11:41:58.481Z\",\n                    \"referenceId\": \"297865\",\n                    \"code\": \"LEIV EIRIKSSON\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"LEIV EIRIKSSON\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"M/V CRYSTAL SEA\",\n                    \"created\": \"2020-01-15T11:41:58.482Z\",\n                    \"referenceId\": \"296299\",\n                    \"code\": \"M/V CRYSTAL SEA\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"M/V CRYSTAL SEA\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"MAERSK INTEGRATOR\",\n                    \"created\": \"2020-01-15T11:41:58.483Z\",\n                    \"referenceId\": \"439774\",\n                    \"code\": \"MAERSK INTEGRATOR\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"MAERSK INTEGRATOR\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"MAERSK INTERCEPTOR\",\n                    \"created\": \"2020-01-15T11:41:58.565Z\",\n                    \"referenceId\": \"436222\",\n                    \"code\": \"MAERSK INTERCEPTOR\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"MAERSK INTERCEPTOR\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"MAERSK INTREPID\",\n                    \"created\": \"2020-01-15T11:41:58.566Z\",\n                    \"referenceId\": \"434648\",\n                    \"code\": \"MAERSK INTREPID\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"MAERSK INTREPID\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"MAERSK INVINCIBLE\",\n                    \"created\": \"2020-01-15T11:41:58.567Z\",\n                    \"referenceId\": \"449072\",\n                    \"code\": \"MAERSK INVINCIBLE\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"MAERSK INVINCIBLE\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"MARINER\",\n                    \"created\": \"2020-01-15T11:41:58.568Z\",\n                    \"referenceId\": \"391107\",\n                    \"code\": \"MARINER\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"MARINER\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"MARTIN LINGE FSO\",\n                    \"created\": \"2020-01-15T11:41:58.569Z\",\n                    \"referenceId\": \"704358\",\n                    \"code\": \"MARTIN LINGE FSO\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"MARTIN LINGE FSO\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"MSV BOTNICA\",\n                    \"created\": \"2020-01-15T11:41:58.57Z\",\n                    \"referenceId\": \"402726\",\n                    \"code\": \"MSV BOTNICA\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"MSV BOTNICA\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"MSV ERNEST SHACKLETON\",\n                    \"created\": \"2020-01-15T11:41:58.571Z\",\n                    \"referenceId\": \"374031\",\n                    \"code\": \"MSV ERNEST SHACKLETON\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"MSV ERNEST SHACKLETON\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"MSV PELICAN\",\n                    \"created\": \"2020-01-15T11:41:58.572Z\",\n                    \"referenceId\": \"365715\",\n                    \"code\": \"MSV PELICAN\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"MSV PELICAN\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"MV GARGANO\",\n                    \"created\": \"2020-01-15T11:41:58.573Z\",\n                    \"referenceId\": \"460976\",\n                    \"code\": \"MV GARGANO\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"MV GARGANO\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"MV OCEAN VANTAGE\",\n                    \"created\": \"2020-01-15T11:41:58.574Z\",\n                    \"referenceId\": \"461030\",\n                    \"code\": \"MV OCEAN VANTAGE\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"MV OCEAN VANTAGE\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"MÆRSK ENDEAVOUR\",\n                    \"created\": \"2020-01-15T11:41:58.575Z\",\n                    \"referenceId\": \"292087\",\n                    \"code\": \"MÆRSK ENDEAVOUR\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"MÆRSK ENDEAVOUR\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"MÆRSK EXPLORER\",\n                    \"created\": \"2020-01-15T11:41:58.576Z\",\n                    \"referenceId\": \"362316\",\n                    \"code\": \"MÆRSK EXPLORER\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"MÆRSK EXPLORER\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"MÆRSK GALLANT\",\n                    \"created\": \"2020-01-15T11:41:58.577Z\",\n                    \"referenceId\": \"296002\",\n                    \"code\": \"MÆRSK GALLANT\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"MÆRSK GALLANT\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"MÆRSK GIANT\",\n                    \"created\": \"2020-01-15T11:41:58.578Z\",\n                    \"referenceId\": \"278245\",\n                    \"code\": \"MÆRSK GIANT\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"MÆRSK GIANT\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"MÆRSK GUARDIAN\",\n                    \"created\": \"2020-01-15T11:41:58.579Z\",\n                    \"referenceId\": \"292114\",\n                    \"code\": \"MÆRSK GUARDIAN\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"MÆRSK GUARDIAN\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"MÆRSK INNOVATOR\",\n                    \"created\": \"2020-01-15T11:41:58.58Z\",\n                    \"referenceId\": \"297838\",\n                    \"code\": \"MÆRSK INNOVATOR\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"MÆRSK INNOVATOR\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"MÆRSK INSPIRER\",\n                    \"created\": \"2020-01-15T11:41:58.581Z\",\n                    \"referenceId\": \"369304\",\n                    \"code\": \"MÆRSK INSPIRER\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"MÆRSK INSPIRER\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"MÆRSK REACHER\",\n                    \"created\": \"2020-01-15T11:41:58.582Z\",\n                    \"referenceId\": \"411423\",\n                    \"code\": \"MÆRSK REACHER\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"MÆRSK REACHER\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"NAN HAI VI\",\n                    \"created\": \"2020-01-15T11:41:58.583Z\",\n                    \"referenceId\": \"287848\",\n                    \"code\": \"NAN HAI VI\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"NAN HAI VI\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"NAVION EUROPA\",\n                    \"created\": \"2020-01-15T11:41:58.665Z\",\n                    \"referenceId\": \"408869\",\n                    \"code\": \"NAVION EUROPA\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"NAVION EUROPA\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"NEPTUNE 7\",\n                    \"created\": \"2020-01-15T11:41:58.665Z\",\n                    \"referenceId\": \"288631\",\n                    \"code\": \"NEPTUNE 7\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"NEPTUNE 7\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"NOBLE AL WHITE\",\n                    \"created\": \"2020-01-15T11:41:58.666Z\",\n                    \"referenceId\": \"296947\",\n                    \"code\": \"NOBLE AL WHITE\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"NOBLE AL WHITE\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"NOBLE GEORGE SAUVAGEEAU\",\n                    \"created\": \"2020-01-15T11:41:58.667Z\",\n                    \"referenceId\": \"292141\",\n                    \"code\": \"NOBLE GEORGE SAUVAGEEAU\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"NOBLE GEORGE SAUVAGEEAU\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"NOBLE PIET VAN EDE\",\n                    \"created\": \"2020-01-15T11:41:58.668Z\",\n                    \"referenceId\": \"292168\",\n                    \"code\": \"NOBLE PIET VAN EDE\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"NOBLE PIET VAN EDE\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"NOBLE ROGER EASON\",\n                    \"created\": \"2020-01-15T11:41:58.669Z\",\n                    \"referenceId\": \"291466\",\n                    \"code\": \"NOBLE ROGER EASON\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"NOBLE ROGER EASON\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"NOBLE RONALD HOPE\",\n                    \"created\": \"2020-01-15T11:41:58.669Z\",\n                    \"referenceId\": \"296488\",\n                    \"code\": \"NOBLE RONALD HOPE\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"NOBLE RONALD HOPE\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"NOBLE TON VAN LANGEVELD\",\n                    \"created\": \"2020-01-15T11:41:58.67Z\",\n                    \"referenceId\": \"292627\",\n                    \"code\": \"NOBLE TON VAN LANGEVELD\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"NOBLE TON VAN LANGEVELD\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"NORMAND CARRIER\",\n                    \"created\": \"2020-01-15T11:41:58.671Z\",\n                    \"referenceId\": \"405450\",\n                    \"code\": \"NORMAND CARRIER\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"NORMAND CARRIER\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"NORMAND FLOWER\",\n                    \"created\": \"2020-01-15T11:41:58.672Z\",\n                    \"referenceId\": \"405509\",\n                    \"code\": \"NORMAND FLOWER\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"NORMAND FLOWER\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"NORMAND JARL\",\n                    \"created\": \"2020-01-15T11:41:58.673Z\",\n                    \"referenceId\": \"295975\",\n                    \"code\": \"NORMAND JARL\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"NORMAND JARL\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"NORMAND MERMAID\",\n                    \"created\": \"2020-01-15T11:41:58.673Z\",\n                    \"referenceId\": \"403231\",\n                    \"code\": \"NORMAND MERMAID\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"NORMAND MERMAID\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"NORMAND MJOLNE\",\n                    \"created\": \"2020-01-15T11:41:58.674Z\",\n                    \"referenceId\": \"295111\",\n                    \"code\": \"NORMAND MJOLNE\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"NORMAND MJOLNE\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"NORMAND PROSPER\",\n                    \"created\": \"2020-01-15T11:41:58.675Z\",\n                    \"referenceId\": \"297568\",\n                    \"code\": \"NORMAND PROSPER\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"NORMAND PROSPER\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"NORMAND SKARVEN\",\n                    \"created\": \"2020-01-15T11:41:58.676Z\",\n                    \"referenceId\": \"390818\",\n                    \"code\": \"NORMAND SKARVEN\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"NORMAND SKARVEN\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"NORMAND SUBSEA\",\n                    \"created\": \"2020-01-15T11:41:58.676Z\",\n                    \"referenceId\": \"429605\",\n                    \"code\": \"NORMAND SUBSEA\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"NORMAND SUBSEA\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"NORMAND TONJER\",\n                    \"created\": \"2020-01-15T11:41:58.677Z\",\n                    \"referenceId\": \"364465\",\n                    \"code\": \"NORMAND TONJER\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"NORMAND TONJER\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"NORSHORE ATLANTIC\",\n                    \"created\": \"2020-01-15T11:41:58.678Z\",\n                    \"referenceId\": \"426997\",\n                    \"code\": \"NORSHORE ATLANTIC\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"NORSHORE ATLANTIC\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"OCEAN ALLIANCE\",\n                    \"created\": \"2020-01-15T11:41:58.679Z\",\n                    \"referenceId\": \"292654\",\n                    \"code\": \"OCEAN ALLIANCE\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"OCEAN ALLIANCE\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"OCEAN BARONESS\",\n                    \"created\": \"2020-01-15T11:41:58.679Z\",\n                    \"referenceId\": \"289171\",\n                    \"code\": \"OCEAN BARONESS\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"OCEAN BARONESS\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"OCEAN BOUNTY\",\n                    \"created\": \"2020-01-15T11:41:58.68Z\",\n                    \"referenceId\": \"290008\",\n                    \"code\": \"OCEAN BOUNTY\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"OCEAN BOUNTY\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"OCEAN CLEVER\",\n                    \"created\": \"2020-01-15T11:41:58.681Z\",\n                    \"referenceId\": \"406001\",\n                    \"code\": \"OCEAN CLEVER\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"OCEAN CLEVER\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"OCEAN CONFIDENCE\",\n                    \"created\": \"2020-01-15T11:41:58.682Z\",\n                    \"referenceId\": \"295786\",\n                    \"code\": \"OCEAN CONFIDENCE\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"OCEAN CONFIDENCE\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"OCEAN LIBERATOR\",\n                    \"created\": \"2020-01-15T11:41:58.682Z\",\n                    \"referenceId\": \"296380\",\n                    \"code\": \"OCEAN LIBERATOR\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"OCEAN LIBERATOR\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"OCEAN PRINCESS\",\n                    \"created\": \"2020-01-15T11:41:58.683Z\",\n                    \"referenceId\": \"289360\",\n                    \"code\": \"OCEAN PRINCESS\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"OCEAN PRINCESS\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"OCEAN SKY\",\n                    \"created\": \"2020-01-15T11:41:58.765Z\",\n                    \"referenceId\": \"405947\",\n                    \"code\": \"OCEAN SKY\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"OCEAN SKY\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"OCEAN TIDE\",\n                    \"created\": \"2020-01-15T11:41:58.766Z\",\n                    \"referenceId\": \"288469\",\n                    \"code\": \"OCEAN TIDE\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"OCEAN TIDE\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"OCEAN TRAVELER\",\n                    \"created\": \"2020-01-15T11:41:58.767Z\",\n                    \"referenceId\": \"288496\",\n                    \"code\": \"OCEAN TRAVELER\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"OCEAN TRAVELER\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"OCEAN VALIANT\",\n                    \"created\": \"2020-01-15T11:41:58.767Z\",\n                    \"referenceId\": \"294085\",\n                    \"code\": \"OCEAN VALIANT\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"OCEAN VALIANT\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"OCEAN VANGUARD\",\n                    \"created\": \"2020-01-15T11:41:58.768Z\",\n                    \"referenceId\": \"287902\",\n                    \"code\": \"OCEAN VANGUARD\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"OCEAN VANGUARD\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"OCEAN VICTORY\",\n                    \"created\": \"2020-01-15T11:41:58.769Z\",\n                    \"referenceId\": \"288523\",\n                    \"code\": \"OCEAN VICTORY\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"OCEAN VICTORY\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"OCEAN VIKING\",\n                    \"created\": \"2020-01-15T11:41:58.77Z\",\n                    \"referenceId\": \"296407\",\n                    \"code\": \"OCEAN VIKING\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"OCEAN VIKING\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"OCEAN VOYAGER\",\n                    \"created\": \"2020-01-15T11:41:58.77Z\",\n                    \"referenceId\": \"288550\",\n                    \"code\": \"OCEAN VOYAGER\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"OCEAN VOYAGER\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"OCEAN WINNER\",\n                    \"created\": \"2020-01-15T11:41:58.771Z\",\n                    \"referenceId\": \"298081\",\n                    \"code\": \"OCEAN WINNER\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"OCEAN WINNER\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"OCEAN YATZY\",\n                    \"created\": \"2020-01-15T11:41:58.772Z\",\n                    \"referenceId\": \"289306\",\n                    \"code\": \"OCEAN YATZY\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"OCEAN YATZY\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ODIN DRILL\",\n                    \"created\": \"2020-01-15T11:41:58.773Z\",\n                    \"referenceId\": \"288577\",\n                    \"code\": \"ODIN DRILL\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ODIN DRILL\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"OLYMPIC ZEUS\",\n                    \"created\": \"2020-01-15T11:41:58.773Z\",\n                    \"referenceId\": \"432298\",\n                    \"code\": \"OLYMPIC ZEUS\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"OLYMPIC ZEUS\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ORION\",\n                    \"created\": \"2020-01-15T11:41:58.774Z\",\n                    \"referenceId\": \"288604\",\n                    \"code\": \"ORION\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ORION\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"PAUL B LOYD JR\",\n                    \"created\": \"2020-01-15T11:41:58.775Z\",\n                    \"referenceId\": \"295084\",\n                    \"code\": \"PAUL B LOYD JR\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"PAUL B LOYD JR\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"PELERIN\",\n                    \"created\": \"2020-01-15T11:41:58.776Z\",\n                    \"referenceId\": \"289036\",\n                    \"code\": \"PELERIN\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"PELERIN\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"PENTAGONE 84\",\n                    \"created\": \"2020-01-15T11:41:58.777Z\",\n                    \"referenceId\": \"288982\",\n                    \"code\": \"PENTAGONE 84\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"PENTAGONE 84\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"PETROBRAS XXIII\",\n                    \"created\": \"2020-01-15T11:41:58.777Z\",\n                    \"referenceId\": \"289414\",\n                    \"code\": \"PETROBRAS XXIII\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"PETROBRAS XXIII\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"PHOLAS\",\n                    \"created\": \"2020-01-15T11:41:58.778Z\",\n                    \"referenceId\": \"361873\",\n                    \"code\": \"PHOLAS\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"PHOLAS\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"POLAR BJØRN\",\n                    \"created\": \"2020-01-15T11:41:58.779Z\",\n                    \"referenceId\": \"295516\",\n                    \"code\": \"POLAR BJØRN\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"POLAR BJØRN\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"POLAR KING\",\n                    \"created\": \"2020-01-15T11:41:58.78Z\",\n                    \"referenceId\": \"446304\",\n                    \"code\": \"POLAR KING\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"POLAR KING\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"POLAR PIONEER\",\n                    \"created\": \"2020-01-15T11:41:58.78Z\",\n                    \"referenceId\": \"289333\",\n                    \"code\": \"POLAR PIONEER\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"POLAR PIONEER\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"POLAR PRINCE\",\n                    \"created\": \"2020-01-15T11:41:58.781Z\",\n                    \"referenceId\": \"297379\",\n                    \"code\": \"POLAR PRINCE\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"POLAR PRINCE\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"POLAR QUEEN\",\n                    \"created\": \"2020-01-15T11:41:58.782Z\",\n                    \"referenceId\": \"295489\",\n                    \"code\": \"POLAR QUEEN\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"POLAR QUEEN\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"POLARSTERN\",\n                    \"created\": \"2020-01-15T11:41:58.783Z\",\n                    \"referenceId\": \"378320\",\n                    \"code\": \"POLARSTERN\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"POLARSTERN\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"POLYGLOMAR DRILLER\",\n                    \"created\": \"2020-01-15T11:41:58.864Z\",\n                    \"referenceId\": \"362458\",\n                    \"code\": \"POLYGLOMAR DRILLER\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"POLYGLOMAR DRILLER\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"PRIDE SOUTH PACIFIC\",\n                    \"created\": \"2020-01-15T11:41:58.865Z\",\n                    \"referenceId\": \"288145\",\n                    \"code\": \"PRIDE SOUTH PACIFIC\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"PRIDE SOUTH PACIFIC\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"REGALIA\",\n                    \"created\": \"2020-01-15T11:41:58.866Z\",\n                    \"referenceId\": \"293815\",\n                    \"code\": \"REGALIA\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"REGALIA\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"REM OCEAN\",\n                    \"created\": \"2020-01-15T11:41:58.867Z\",\n                    \"referenceId\": \"440434\",\n                    \"code\": \"REM OCEAN\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"REM OCEAN\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"REM VISION\",\n                    \"created\": \"2020-01-15T11:41:58.868Z\",\n                    \"referenceId\": \"435117\",\n                    \"code\": \"REM VISION\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"REM VISION\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ROCKWATER SEMI 1\",\n                    \"created\": \"2020-01-15T11:41:58.869Z\",\n                    \"referenceId\": \"294166\",\n                    \"code\": \"ROCKWATER SEMI 1\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ROCKWATER SEMI 1\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ROSS RIG (1)\",\n                    \"created\": \"2020-01-15T11:41:58.87Z\",\n                    \"referenceId\": \"446033\",\n                    \"code\": \"ROSS RIG (1)\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ROSS RIG (1)\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ROWAN GORILLA VI\",\n                    \"created\": \"2020-01-15T11:41:58.871Z\",\n                    \"referenceId\": \"375355\",\n                    \"code\": \"ROWAN GORILLA VI\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ROWAN GORILLA VI\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ROWAN NORWAY\",\n                    \"created\": \"2020-01-15T11:41:58.872Z\",\n                    \"referenceId\": \"417599\",\n                    \"code\": \"ROWAN NORWAY\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ROWAN NORWAY\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ROWAN STAVANGER\",\n                    \"created\": \"2020-01-15T11:41:58.873Z\",\n                    \"referenceId\": \"413943\",\n                    \"code\": \"ROWAN STAVANGER\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ROWAN STAVANGER\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ROWAN VIKING\",\n                    \"created\": \"2020-01-15T11:41:58.874Z\",\n                    \"referenceId\": \"434872\",\n                    \"code\": \"ROWAN VIKING\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ROWAN VIKING\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SAFE BOREAS\",\n                    \"created\": \"2020-01-15T11:41:58.875Z\",\n                    \"referenceId\": \"434930\",\n                    \"code\": \"SAFE BOREAS\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SAFE BOREAS\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SAFE BRITANIA\",\n                    \"created\": \"2020-01-15T11:41:58.876Z\",\n                    \"referenceId\": \"296785\",\n                    \"code\": \"SAFE BRITANIA\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SAFE BRITANIA\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SAFE CALEDONIA\",\n                    \"created\": \"2020-01-15T11:41:58.877Z\",\n                    \"referenceId\": \"297730\",\n                    \"code\": \"SAFE CALEDONIA\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SAFE CALEDONIA\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SAFE LANCIA\",\n                    \"created\": \"2020-01-15T11:41:58.878Z\",\n                    \"referenceId\": \"295138\",\n                    \"code\": \"SAFE LANCIA\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SAFE LANCIA\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SAFE SCANDINAVIA\",\n                    \"created\": \"2020-01-15T11:41:58.879Z\",\n                    \"referenceId\": \"297757\",\n                    \"code\": \"SAFE SCANDINAVIA\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SAFE SCANDINAVIA\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SAFE ZEPHYRUS\",\n                    \"created\": \"2020-01-15T11:41:58.88Z\",\n                    \"referenceId\": \"445466\",\n                    \"code\": \"SAFE ZEPHYRUS\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SAFE ZEPHYRUS\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SAIPEM 7000\",\n                    \"created\": \"2020-01-15T11:41:58.881Z\",\n                    \"referenceId\": \"297190\",\n                    \"code\": \"SAIPEM 7000\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SAIPEM 7000\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SAIPEM II\",\n                    \"created\": \"2020-01-15T11:41:58.882Z\",\n                    \"referenceId\": \"288685\",\n                    \"code\": \"SAIPEM II\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SAIPEM II\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SANTA FE 135\",\n                    \"created\": \"2020-01-15T11:41:58.883Z\",\n                    \"referenceId\": \"289792\",\n                    \"code\": \"SANTA FE 135\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SANTA FE 135\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SANTA FE 140\",\n                    \"created\": \"2020-01-15T11:41:58.965Z\",\n                    \"referenceId\": \"289819\",\n                    \"code\": \"SANTA FE 140\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SANTA FE 140\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SCANDI ACERGY\",\n                    \"created\": \"2020-01-15T11:41:58.966Z\",\n                    \"referenceId\": \"415496\",\n                    \"code\": \"SCANDI ACERGY\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SCANDI ACERGY\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SCARABEO 5\",\n                    \"created\": \"2020-01-15T11:41:58.967Z\",\n                    \"referenceId\": \"294058\",\n                    \"code\": \"SCARABEO 5\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SCARABEO 5\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SCARABEO 6\",\n                    \"created\": \"2020-01-15T11:41:58.968Z\",\n                    \"referenceId\": \"297001\",\n                    \"code\": \"SCARABEO 6\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SCARABEO 6\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SCARABEO 8\",\n                    \"created\": \"2020-01-15T11:41:58.968Z\",\n                    \"referenceId\": \"404415\",\n                    \"code\": \"SCARABEO 8\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SCARABEO 8\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SEAWAY CONDOR\",\n                    \"created\": \"2020-01-15T11:41:58.969Z\",\n                    \"referenceId\": \"294220\",\n                    \"code\": \"SEAWAY CONDOR\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SEAWAY CONDOR\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SEAWAY HARRIER\",\n                    \"created\": \"2020-01-15T11:41:58.97Z\",\n                    \"referenceId\": \"294328\",\n                    \"code\": \"SEAWAY HARRIER\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SEAWAY HARRIER\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SEAWAY OSPREY\",\n                    \"created\": \"2020-01-15T11:41:58.971Z\",\n                    \"referenceId\": \"297973\",\n                    \"code\": \"SEAWAY OSPREY\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SEAWAY OSPREY\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SEDCO 135 G\",\n                    \"created\": \"2020-01-15T11:41:58.972Z\",\n                    \"referenceId\": \"288766\",\n                    \"code\": \"SEDCO 135 G\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SEDCO 135 G\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SEDCO 703\",\n                    \"created\": \"2020-01-15T11:41:58.973Z\",\n                    \"referenceId\": \"288793\",\n                    \"code\": \"SEDCO 703\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SEDCO 703\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SEDCO 704\",\n                    \"created\": \"2020-01-15T11:41:58.973Z\",\n                    \"referenceId\": \"288820\",\n                    \"code\": \"SEDCO 704\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SEDCO 704\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SEDCO 707\",\n                    \"created\": \"2020-01-15T11:41:58.974Z\",\n                    \"referenceId\": \"288037\",\n                    \"code\": \"SEDCO 707\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SEDCO 707\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SEDCO H\",\n                    \"created\": \"2020-01-15T11:41:58.975Z\",\n                    \"referenceId\": \"288712\",\n                    \"code\": \"SEDCO H\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SEDCO H\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SEDNETH I\",\n                    \"created\": \"2020-01-15T11:41:58.976Z\",\n                    \"referenceId\": \"288847\",\n                    \"code\": \"SEDNETH I\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SEDNETH I\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SEVEN PELICAN\",\n                    \"created\": \"2020-01-15T11:41:58.977Z\",\n                    \"referenceId\": \"364568\",\n                    \"code\": \"SEVEN PELICAN\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SEVEN PELICAN\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SEVEN SISTERS\",\n                    \"created\": \"2020-01-15T11:41:58.977Z\",\n                    \"referenceId\": \"409783\",\n                    \"code\": \"SEVEN SISTERS\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SEVEN SISTERS\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SEVEN VIKING\",\n                    \"created\": \"2020-01-15T11:41:58.978Z\",\n                    \"referenceId\": \"435177\",\n                    \"code\": \"SEVEN VIKING\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SEVEN VIKING\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SIEM PILOT\",\n                    \"created\": \"2020-01-15T11:41:58.979Z\",\n                    \"referenceId\": \"415967\",\n                    \"code\": \"SIEM PILOT\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SIEM PILOT\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SIRI KNUTSEN\",\n                    \"created\": \"2020-01-15T11:41:58.98Z\",\n                    \"referenceId\": \"432355\",\n                    \"code\": \"SIRI KNUTSEN\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SIRI KNUTSEN\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SKANDI AKER\",\n                    \"created\": \"2020-01-15T11:41:58.981Z\",\n                    \"referenceId\": \"411835\",\n                    \"code\": \"SKANDI AKER\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SKANDI AKER\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SKANDI ARCTIC\",\n                    \"created\": \"2020-01-15T11:41:58.981Z\",\n                    \"referenceId\": \"429269\",\n                    \"code\": \"SKANDI ARCTIC\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SKANDI ARCTIC\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SKANDI BERGEN\",\n                    \"created\": \"2020-01-15T11:41:58.982Z\",\n                    \"referenceId\": \"441099\",\n                    \"code\": \"SKANDI BERGEN\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SKANDI BERGEN\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SKANDI CHIEFTAIN\",\n                    \"created\": \"2020-01-15T11:41:58.983Z\",\n                    \"referenceId\": \"415441\",\n                    \"code\": \"SKANDI CHIEFTAIN\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SKANDI CHIEFTAIN\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SKANDI SEVEN\",\n                    \"created\": \"2020-01-15T11:41:59.064Z\",\n                    \"referenceId\": \"440496\",\n                    \"code\": \"SKANDI SEVEN\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SKANDI SEVEN\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SKANDI SOTRA\",\n                    \"created\": \"2020-01-15T11:41:59.065Z\",\n                    \"referenceId\": \"406180\",\n                    \"code\": \"SKANDI SOTRA\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SKANDI SOTRA\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SONGA DEE\",\n                    \"created\": \"2020-01-15T11:41:59.066Z\",\n                    \"referenceId\": \"290980\",\n                    \"code\": \"SONGA DEE\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SONGA DEE\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SONGA DELTA\",\n                    \"created\": \"2020-01-15T11:41:59.067Z\",\n                    \"referenceId\": \"287821\",\n                    \"code\": \"SONGA DELTA\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SONGA DELTA\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SONGA TRYM\",\n                    \"created\": \"2020-01-15T11:41:59.068Z\",\n                    \"referenceId\": \"296164\",\n                    \"code\": \"SONGA TRYM\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SONGA TRYM\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"SOVEREIGN EXPLOR\",\n                    \"created\": \"2020-01-15T11:41:59.068Z\",\n                    \"referenceId\": \"289846\",\n                    \"code\": \"SOVEREIGN EXPLOR\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"SOVEREIGN EXPLOR\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"STENA DON\",\n                    \"created\": \"2020-01-15T11:41:59.069Z\",\n                    \"referenceId\": \"297649\",\n                    \"code\": \"STENA DON\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"STENA DON\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TOISA PERSEUS\",\n                    \"created\": \"2020-01-15T11:41:59.07Z\",\n                    \"referenceId\": \"297676\",\n                    \"code\": \"TOISA PERSEUS\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TOISA PERSEUS\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TOISA POLARIS\",\n                    \"created\": \"2020-01-15T11:41:59.071Z\",\n                    \"referenceId\": \"297622\",\n                    \"code\": \"TOISA POLARIS\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TOISA POLARIS\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TRANSOCEAN AMIRANTE\",\n                    \"created\": \"2020-01-15T11:41:59.072Z\",\n                    \"referenceId\": \"290737\",\n                    \"code\": \"TRANSOCEAN AMIRANTE\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TRANSOCEAN AMIRANTE\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TRANSOCEAN ARCTIC\",\n                    \"created\": \"2020-01-15T11:41:59.072Z\",\n                    \"referenceId\": \"294382\",\n                    \"code\": \"TRANSOCEAN ARCTIC\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TRANSOCEAN ARCTIC\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TRANSOCEAN BARENTS\",\n                    \"created\": \"2020-01-15T11:41:59.073Z\",\n                    \"referenceId\": \"404303\",\n                    \"code\": \"TRANSOCEAN BARENTS\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TRANSOCEAN BARENTS\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TRANSOCEAN ENABLER\",\n                    \"created\": \"2020-01-15T11:41:59.074Z\",\n                    \"referenceId\": \"439972\",\n                    \"code\": \"TRANSOCEAN ENABLER\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TRANSOCEAN ENABLER\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TRANSOCEAN ENCOURAGE\",\n                    \"created\": \"2020-01-15T11:41:59.075Z\",\n                    \"referenceId\": \"440029\",\n                    \"code\": \"TRANSOCEAN ENCOURAGE\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TRANSOCEAN ENCOURAGE\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TRANSOCEAN ENDURANCE\",\n                    \"created\": \"2020-01-15T11:41:59.076Z\",\n                    \"referenceId\": \"435043\",\n                    \"code\": \"TRANSOCEAN ENDURANCE\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TRANSOCEAN ENDURANCE\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TRANSOCEAN EQUINOX\",\n                    \"created\": \"2020-01-15T11:41:59.076Z\",\n                    \"referenceId\": \"434985\",\n                    \"code\": \"TRANSOCEAN EQUINOX\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TRANSOCEAN EQUINOX\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TRANSOCEAN LEADER\",\n                    \"created\": \"2020-01-15T11:41:59.077Z\",\n                    \"referenceId\": \"296677\",\n                    \"code\": \"TRANSOCEAN LEADER\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TRANSOCEAN LEADER\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TRANSOCEAN NORDIC\",\n                    \"created\": \"2020-01-15T11:41:59.078Z\",\n                    \"referenceId\": \"296191\",\n                    \"code\": \"TRANSOCEAN NORDIC\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TRANSOCEAN NORDIC\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TRANSOCEAN NORGE\",\n                    \"created\": \"2020-01-15T11:41:59.079Z\",\n                    \"referenceId\": \"705700\",\n                    \"code\": \"TRANSOCEAN NORGE\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TRANSOCEAN NORGE\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TRANSOCEAN PROSPECT\",\n                    \"created\": \"2020-01-15T11:41:59.08Z\",\n                    \"referenceId\": \"296218\",\n                    \"code\": \"TRANSOCEAN PROSPECT\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TRANSOCEAN PROSPECT\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TRANSOCEAN SEARCHER\",\n                    \"created\": \"2020-01-15T11:41:59.08Z\",\n                    \"referenceId\": \"296245\",\n                    \"code\": \"TRANSOCEAN SEARCHER\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TRANSOCEAN SEARCHER\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TRANSOCEAN SPITSBERGEN\",\n                    \"created\": \"2020-01-15T11:41:59.081Z\",\n                    \"referenceId\": \"404201\",\n                    \"code\": \"TRANSOCEAN SPITSBERGEN\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TRANSOCEAN SPITSBERGEN\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TRANSOCEAN WINNER\",\n                    \"created\": \"2020-01-15T11:41:59.082Z\",\n                    \"referenceId\": \"296326\",\n                    \"code\": \"TRANSOCEAN WINNER\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TRANSOCEAN WINNER\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"TRANSWORLD RIG61\",\n                    \"created\": \"2020-01-15T11:41:59.083Z\",\n                    \"referenceId\": \"362531\",\n                    \"code\": \"TRANSWORLD RIG61\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"TRANSWORLD RIG61\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"VIKING ENERGY\",\n                    \"created\": \"2020-01-15T11:41:59.164Z\",\n                    \"referenceId\": \"445975\",\n                    \"code\": \"VIKING ENERGY\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"VIKING ENERGY\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"VIKING POSEIDON\",\n                    \"created\": \"2020-01-15T11:41:59.165Z\",\n                    \"referenceId\": \"368585\",\n                    \"code\": \"VIKING POSEIDON\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"VIKING POSEIDON\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"VOLSTAD SUPPLIER\",\n                    \"created\": \"2020-01-15T11:41:59.166Z\",\n                    \"referenceId\": \"395490\",\n                    \"code\": \"VOLSTAD SUPPLIER\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"VOLSTAD SUPPLIER\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"VOLSTAD SURVEYOR\",\n                    \"created\": \"2020-01-15T11:41:59.167Z\",\n                    \"referenceId\": \"436341\",\n                    \"code\": \"VOLSTAD SURVEYOR\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"VOLSTAD SURVEYOR\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"WELLSERVICER\",\n                    \"created\": \"2020-01-15T11:41:59.168Z\",\n                    \"referenceId\": \"373983\",\n                    \"code\": \"WELLSERVICER\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"WELLSERVICER\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"WEST ALPHA\",\n                    \"created\": \"2020-01-15T11:41:59.168Z\",\n                    \"referenceId\": \"297514\",\n                    \"code\": \"WEST ALPHA\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"WEST ALPHA\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"WEST BETA\",\n                    \"created\": \"2020-01-15T11:41:59.169Z\",\n                    \"referenceId\": \"288118\",\n                    \"code\": \"WEST BETA\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"WEST BETA\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"WEST BOLLSTA\",\n                    \"created\": \"2020-01-15T11:41:59.17Z\",\n                    \"referenceId\": \"709498\",\n                    \"code\": \"WEST BOLLSTA\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"WEST BOLLSTA\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"WEST ELARA\",\n                    \"created\": \"2020-01-15T11:41:59.171Z\",\n                    \"referenceId\": \"414002\",\n                    \"code\": \"WEST ELARA\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"WEST ELARA\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"WEST EPSILON\",\n                    \"created\": \"2020-01-15T11:41:59.172Z\",\n                    \"referenceId\": \"296110\",\n                    \"code\": \"WEST EPSILON\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"WEST EPSILON\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"WEST GAMMA\",\n                    \"created\": \"2020-01-15T11:41:59.172Z\",\n                    \"referenceId\": \"288226\",\n                    \"code\": \"WEST GAMMA\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"WEST GAMMA\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"WEST HERCULES\",\n                    \"created\": \"2020-01-15T11:41:59.173Z\",\n                    \"referenceId\": \"415836\",\n                    \"code\": \"WEST HERCULES\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"WEST HERCULES\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"WEST LINUS\",\n                    \"created\": \"2020-01-15T11:41:59.174Z\",\n                    \"referenceId\": \"433653\",\n                    \"code\": \"WEST LINUS\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"WEST LINUS\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"WEST MIRA\",\n                    \"created\": \"2020-01-15T11:41:59.175Z\",\n                    \"referenceId\": \"706302\",\n                    \"code\": \"WEST MIRA\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"WEST MIRA\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"WEST NAVIGATOR\",\n                    \"created\": \"2020-01-15T11:41:59.175Z\",\n                    \"referenceId\": \"297082\",\n                    \"code\": \"WEST NAVIGATOR\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"WEST NAVIGATOR\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"WEST PHOENIX\",\n                    \"created\": \"2020-01-15T11:41:59.176Z\",\n                    \"referenceId\": \"390874\",\n                    \"code\": \"WEST PHOENIX\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"WEST PHOENIX\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"WEST VENTURE\",\n                    \"created\": \"2020-01-15T11:41:59.177Z\",\n                    \"referenceId\": \"297055\",\n                    \"code\": \"WEST VENTURE\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"WEST VENTURE\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"WEST VENTURE OLD\",\n                    \"created\": \"2020-01-15T11:41:59.178Z\",\n                    \"referenceId\": \"362494\",\n                    \"code\": \"WEST VENTURE OLD\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"WEST VENTURE OLD\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"WEST VISION\",\n                    \"created\": \"2020-01-15T11:41:59.178Z\",\n                    \"referenceId\": \"289495\",\n                    \"code\": \"WEST VISION\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"WEST VISION\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"WILLNOVATOR\",\n                    \"created\": \"2020-01-15T11:41:59.179Z\",\n                    \"referenceId\": \"404524\",\n                    \"code\": \"WILLNOVATOR\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"WILLNOVATOR\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ZAPATA EXPLORER\",\n                    \"created\": \"2020-01-15T11:41:59.266Z\",\n                    \"referenceId\": \"288901\",\n                    \"code\": \"ZAPATA EXPLORER\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ZAPATA EXPLORER\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"ZAPATA NORDIC\",\n                    \"created\": \"2020-01-15T11:41:59.266Z\",\n                    \"referenceId\": \"288928\",\n                    \"code\": \"ZAPATA NORDIC\",\n                    \"type\": \"Platform\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"ZAPATA NORDIC\",\n                            \"code\": null,\n                            \"description\": null\n                        }\n                    ]\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"3cb3ac6b-339b-42a3-a4cf-d5e17c8d584c"},{"name":"Get all operators","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","","var template = `","    <table>","        <tr>","            <th>Name</th>","            <th>Short Name</th>","            <th>Nation</th>","            <th>Organisation Number</th>","            <th>Description</th>","            <th>NPD Id</th>","        </tr>","","        {{#each response.data.metadata.operators}}","            <tr>","                <th>{{name}}</th>","                <th>{{shortName}}</th>","                <th>{{nation}}</th>","                <th>{{organisationNumber}}</th>","                <th>{{description}}</th>","                <th>{{referenceId}}</th>","            </tr>","        {{/each}}","    </table>","`;","","pm.visualizer.set(template, {","    // Pass the response body parsed as JSON as `data`","    response: pm.response.json()","});"],"type":"text/javascript"}}],"id":"328958f0-a0ef-46c6-ada3-9ee77b7c0162","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"description":"<p>The authentication OAUTH2 token recieved from authentication process</p>\n","key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"description":"<p>OPC subscription key as supplied by NOROG</p>\n","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"graphql"},"url":"{{graphQueryAPI}}","description":"<p>Example query using GraphQL standard to query for operator company names registered in the system-</p>\n","urlObject":{"host":["{{graphQueryAPI}}"],"query":[],"variable":[]}},"response":[{"id":"23a6adb7-4a97-41c6-8b65-f446f4d68a67","name":"Graph query get all operators","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer xxx","description":"The authentication OAUTH2 token recieved from authentication process","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Ocp-Apim-Subscription-Key","value":"xxxx","description":"OPC subscription key as supplied by NOROG","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query{\n    metadata {\n        operators{\n            name\n            shortName\n            nation\n            organisationNumber\n            description\n            referenceId\n            \n        }\n        \n    }\n    \n}","variables":""}},"url":"{{graphQueryAPI}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":""},{"key":"Date","value":"Wed, 15 Jan 2020 14:35:47 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"metadata\": {\n            \"operators\": [\n                {\n                    \"name\": \"SHELL NORGE\",\n                    \"shortName\": \"SHELL NORGE\",\n                    \"nation\": \"NO\",\n                    \"organisationNumber\": 914807077,\n                    \"description\": \"A/S Norske Shell\",\n                    \"referenceId\": \"562\"\n                },\n                {\n                    \"name\": \"AKER BP ASA\",\n                    \"shortName\": \"AKER BP ASA\",\n                    \"nation\": \"NO\",\n                    \"organisationNumber\": 989795848,\n                    \"description\": \"Aker BP ASA\",\n                    \"referenceId\": \"28544099\"\n                },\n                {\n                    \"name\": \"CAPRICORN NORGE AS\",\n                    \"shortName\": \"CAPRICORN NORGE AS\",\n                    \"nation\": \"NO\",\n                    \"organisationNumber\": 994434403,\n                    \"description\": \"Capricorn Norge AS\",\n                    \"referenceId\": \"23297570\"\n                },\n                {\n                    \"name\": \"CHRYSAOR NORGE AS\",\n                    \"shortName\": \"CHRYSAOR NORGE AS\",\n                    \"nation\": \"NO\",\n                    \"organisationNumber\": 919496649,\n                    \"description\": \"Chrysaor Norge AS\",\n                    \"referenceId\": \"32035996\"\n                },\n                {\n                    \"name\": \"CONOCOPHILLIPS SKANDINAVIA\",\n                    \"shortName\": \"CONOCOPHILLIPS SKANDINAVIA\",\n                    \"nation\": \"NO\",\n                    \"organisationNumber\": 918110127,\n                    \"description\": \"ConocoPhillips Skandinavia AS\",\n                    \"referenceId\": \"2410696\"\n                },\n                {\n                    \"name\": \"DNO NORGE AS\",\n                    \"shortName\": \"DNO NORGE AS\",\n                    \"nation\": \"NO\",\n                    \"organisationNumber\": 913905881,\n                    \"description\": \"DNO Norge AS\",\n                    \"referenceId\": \"29468270\"\n                },\n                {\n                    \"name\": \"EDISON NORGE AS\",\n                    \"shortName\": \"EDISON NORGE AS\",\n                    \"nation\": \"NO\",\n                    \"organisationNumber\": 914515300,\n                    \"description\": \"Edison Norge AS\",\n                    \"referenceId\": \"25612292\"\n                },\n                {\n                    \"name\": \"EQUINOR ENERGY AS\",\n                    \"shortName\": \"EQUINOR ENERGY AS\",\n                    \"nation\": \"NO\",\n                    \"organisationNumber\": 990888213,\n                    \"description\": \"Equinor Energy AS\",\n                    \"referenceId\": \"32011216\"\n                },\n                {\n                    \"name\": \"INEOS E&P NORGE AS\",\n                    \"shortName\": \"INEOS E&P NORGE AS\",\n                    \"nation\": \"NO\",\n                    \"organisationNumber\": 931713671,\n                    \"description\": \"INEOS E&P Norge AS\",\n                    \"referenceId\": \"29805656\"\n                },\n                {\n                    \"name\": \"KUFPEC NORWAY\",\n                    \"shortName\": \"KUFPEC NORWAY\",\n                    \"nation\": \"NO\",\n                    \"organisationNumber\": 946680591,\n                    \"description\": \"KUFPEC Norway AS\",\n                    \"referenceId\": \"23750622\"\n                },\n                {\n                    \"name\": \"LUNDIN NORWAY\",\n                    \"shortName\": \"LUNDIN NORWAY\",\n                    \"nation\": \"NO\",\n                    \"organisationNumber\": 986209409,\n                    \"description\": \"Lundin Norway AS\",\n                    \"referenceId\": \"2767314\"\n                },\n                {\n                    \"name\": \"MOL NORGE AS\",\n                    \"shortName\": \"MOL NORGE AS\",\n                    \"nation\": \"NO\",\n                    \"organisationNumber\": 988120545,\n                    \"description\": \"MOL Norge AS\",\n                    \"referenceId\": \"26464449\"\n                },\n                {\n                    \"name\": \"NEPTUNE ENERGY NORGE AS\",\n                    \"shortName\": \"NEPTUNE ENERGY NORGE AS\",\n                    \"nation\": \"NO\",\n                    \"organisationNumber\": 983426417,\n                    \"description\": \"Neptune Energy Norge AS\",\n                    \"referenceId\": \"31123361\"\n                },\n                {\n                    \"name\": \"OKEA ASA\",\n                    \"shortName\": \"OKEA ASA\",\n                    \"nation\": \"NO\",\n                    \"organisationNumber\": 915419062,\n                    \"description\": \"OKEA ASA\",\n                    \"referenceId\": \"34925006\"\n                },\n                {\n                    \"name\": \"OMV NORGE AS\",\n                    \"shortName\": \"OMV NORGE AS\",\n                    \"nation\": \"NO\",\n                    \"organisationNumber\": 988400025,\n                    \"description\": \"OMV (Norge) AS\",\n                    \"referenceId\": \"4460594\"\n                },\n                {\n                    \"name\": \"PETROLIA NOCO AS\",\n                    \"shortName\": \"PETROLIA NOCO AS\",\n                    \"nation\": \"NO\",\n                    \"organisationNumber\": 997015231,\n                    \"description\": \"Petrolia NOCO AS\",\n                    \"referenceId\": \"28518657\"\n                },\n                {\n                    \"name\": \"PGNIG UPSTREAM NORWAY AS\",\n                    \"shortName\": \"PGNIG UPSTREAM NORWAY AS\",\n                    \"nation\": \"NO\",\n                    \"organisationNumber\": 991317155,\n                    \"description\": \"PGNiG Upstream Norway AS\",\n                    \"referenceId\": \"29394105\"\n                },\n                {\n                    \"name\": \"REPSOL NORGE AS\",\n                    \"shortName\": \"REPSOL NORGE AS\",\n                    \"nation\": \"NO\",\n                    \"organisationNumber\": 993787787,\n                    \"description\": \"Repsol Norge AS\",\n                    \"referenceId\": \"27052812\"\n                },\n                {\n                    \"name\": \"SPIRIT ENERGY NORWAY AS\",\n                    \"shortName\": \"SPIRIT ENERGY NORWAY AS\",\n                    \"nation\": \"NO\",\n                    \"organisationNumber\": 919603771,\n                    \"description\": \"Spirit Energy Norway AS\",\n                    \"referenceId\": \"33342085\"\n                },\n                {\n                    \"name\": \"SUNCOR ENERGY NORGE\",\n                    \"shortName\": \"SUNCOR ENERGY NORGE\",\n                    \"nation\": \"NO\",\n                    \"organisationNumber\": 989362100,\n                    \"description\": \"Suncor Energy Norge AS\",\n                    \"referenceId\": \"20426420\"\n                },\n                {\n                    \"name\": \"TOTAL E&P NORGE\",\n                    \"shortName\": \"TOTAL E&P NORGE\",\n                    \"nation\": \"NO\",\n                    \"organisationNumber\": 927066440,\n                    \"description\": \"Total E&P Norge AS\",\n                    \"referenceId\": \"2410708\"\n                },\n                {\n                    \"name\": \"VÅR ENERGI AS\",\n                    \"shortName\": \"VÅR ENERGI AS\",\n                    \"nation\": \"NO\",\n                    \"organisationNumber\": 919160675,\n                    \"description\": \"Vår Energi AS\",\n                    \"referenceId\": \"33360957\"\n                },\n                {\n                    \"name\": \"WELLESLEY PETROLEUM AS\",\n                    \"shortName\": \"WELLESLEY PETROLEUM AS\",\n                    \"nation\": \"NO\",\n                    \"organisationNumber\": 913561473,\n                    \"description\": \"Wellesley Petroleum AS\",\n                    \"referenceId\": \"26464257\"\n                },\n                {\n                    \"name\": \"WINTERSHALL DEA NORGE AS\",\n                    \"shortName\": \"WINTERSHALL DEA NORGE AS\",\n                    \"nation\": \"NO\",\n                    \"organisationNumber\": 985224323,\n                    \"description\": \"Wintershall Dea Norge AS\",\n                    \"referenceId\": \"35318843\"\n                }\n            ]\n        }\n    }\n}"},{"id":"76818c4d-438b-46dd-8ae3-8619c8d0d566","name":"Validate - That report has a report date element","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer xxxx","type":"text"},{"key":"Report-Type","value":"DPR20","type":"text"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"Ocp-Apim-Subscription-Key","value":"xxxx","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"DPR20_VALIDATE_SERVICE_FAIL_MISSING_REPORTDATE.xml\n","key":"file","type":"file","src":"DPR20/DPR20_VALIDATE_SERVICE_FAIL_MISSING_REPORTDATE.xml"}]},"url":"{{ValidateAPI}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":"appId=cid-v1:b3cd985b-9ef8-4b6a-8751-714f67ebcf8d"},{"key":"Date","value":"Tue, 13 Aug 2019 19:32:12 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"fileName\": \"DPR20_VALIDATE_SERVICE_FAIL_MISSING_REPORTDATE.xml\",\n    \"fileReferenceId\": null,\n    \"isReportFinal\": false,\n    \"reportType\": \"dpr20\",\n    \"success\": true,\n    \"resultCount\": 12,\n    \"results\": [\n        {\n            \"ruleName\": \"All reports must follow the XML schema\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"All reports must have a title\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Field 'kind' can only have supported values\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must have Title field\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must contain report version\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must contain report status\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must contain installation with uidRef attribute\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"/context/installation uidRef must match factpages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"/context/installation field must exist\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"Report must contain field /object/name\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"object/installation uidRef must match NPD factpages\",\n            \"success\": true,\n            \"message\": null\n        },\n        {\n            \"ruleName\": \"/objects/object/flow must contain uid attribute\",\n            \"success\": true,\n            \"message\": null\n        }\n    ]\n}"}],"_postman_id":"328958f0-a0ef-46c6-ada3-9ee77b7c0162"},{"name":"Get operatorship and license information for operator with specified name","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","",""],"type":"text/javascript"}}],"id":"a2ebd561-9829-4bdc-b1bb-f6ed73698436","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"description":"<p>The authentication OAUTH2 token recieved from authentication process</p>\n","key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"description":"<p>OPC subscription key as supplied by NOROG</p>\n","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"graphql"},"url":"{{graphQueryAPI}}","description":"<p>Example query using GraphQL standard to query for operatorship and interests for all licenses for a given operator with name. The result will return information on all licenses where the operator of the license is equal to the specified name included a detailed breakdown on all licenses and their ownership interest</p>\n","urlObject":{"host":["{{graphQueryAPI}}"],"query":[],"variable":[]}},"response":[{"id":"e8004817-8353-4c77-b3b8-8acd20eda335","name":"Get license information on operator with name","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer xxx","description":"The authentication OAUTH2 token recieved from authentication process","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Ocp-Apim-Subscription-Key","value":"xxxx","description":"OPC subscription key as supplied by NOROG","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query{\n    metadata {\n        operators(name:\"SHELL NORGE\"){\n            name\n            shortName\n            nation\n            organisationNumber\n            description\n            referenceId\n            licenses{\n                name\n                description\n                validFrom\n                validTo\n                status\n                type\n                interests{\n                    name\n                    interestValue\n                    validFrom\n                    validTo\n                    description\n                }\n            }\n        }\n        \n    }\n    \n}","variables":""}},"url":"{{graphQueryAPI}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":""},{"key":"Date","value":"Thu, 16 Jan 2020 11:40:18 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"metadata\": {\n            \"operators\": [\n                {\n                    \"name\": \"SHELL NORGE\",\n                    \"shortName\": \"SHELL NORGE\",\n                    \"nation\": \"NO\",\n                    \"organisationNumber\": 914807077,\n                    \"description\": \"A/S Norske Shell\",\n                    \"referenceId\": \"562\",\n                    \"licenses\": [\n                        {\n                            \"name\": \"250\",\n                            \"description\": null,\n                            \"validFrom\": \"1999-10-22T00:00:00Z\",\n                            \"validTo\": \"2041-02-02T00:00:00Z\",\n                            \"status\": \"ACTIVE\",\n                            \"type\": \"PRODUCTION\",\n                            \"interests\": [\n                                {\n                                    \"name\": \"VÅR ENERGI AS\",\n                                    \"interestValue\": 5.91,\n                                    \"validFrom\": \"2019-12-10T00:00:00Z\",\n                                    \"validTo\": null,\n                                    \"description\": null,\n                                    \"licenseId\": \"2ae36a34cc4ad894025400cbcdec80b9\",\n                                    \"party\": {\n                                        \"name\": \"VÅR ENERGI AS\"\n                                    }\n                                },\n                                {\n                                    \"name\": \"EQUINOR ENERGY AS\",\n                                    \"interestValue\": 23.65,\n                                    \"validFrom\": \"2019-12-10T00:00:00Z\",\n                                    \"validTo\": null,\n                                    \"description\": null,\n                                    \"licenseId\": \"2ae36a34cc4ad894025400cbcdec80b9\",\n                                    \"party\": {\n                                        \"name\": \"EQUINOR ENERGY AS\"\n                                    }\n                                },\n                                {\n                                    \"name\": \"INEOS E&P NORGE AS\",\n                                    \"interestValue\": 9.44,\n                                    \"validFrom\": \"2019-12-10T00:00:00Z\",\n                                    \"validTo\": null,\n                                    \"description\": null,\n                                    \"licenseId\": \"2ae36a34cc4ad894025400cbcdec80b9\",\n                                    \"party\": {\n                                        \"name\": \"INEOS E&P NORGE AS\"\n                                    }\n                                },\n                                {\n                                    \"name\": \"PETORO\",\n                                    \"interestValue\": 45,\n                                    \"validFrom\": \"2019-12-10T00:00:00Z\",\n                                    \"validTo\": null,\n                                    \"description\": null,\n                                    \"licenseId\": \"2ae36a34cc4ad894025400cbcdec80b9\",\n                                    \"party\": {\n                                        \"name\": \"PETORO\"\n                                    }\n                                },\n                                {\n                                    \"name\": \"SHELL NORGE\",\n                                    \"interestValue\": 16,\n                                    \"validFrom\": \"2019-12-10T00:00:00Z\",\n                                    \"validTo\": null,\n                                    \"description\": null,\n                                    \"licenseId\": \"2ae36a34cc4ad894025400cbcdec80b9\",\n                                    \"party\": {\n                                        \"name\": \"SHELL NORGE\"\n                                    }\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"255\",\n                            \"description\": null,\n                            \"validFrom\": \"2000-05-12T00:00:00Z\",\n                            \"validTo\": \"2038-05-12T00:00:00Z\",\n                            \"status\": \"ACTIVE\",\n                            \"type\": \"PRODUCTION\",\n                            \"interests\": [\n                                {\n                                    \"name\": \"EQUINOR ENERGY AS\",\n                                    \"interestValue\": 20,\n                                    \"validFrom\": \"2018-05-16T00:00:00Z\",\n                                    \"validTo\": null,\n                                    \"description\": null,\n                                    \"licenseId\": \"5a43d4f1466183267afc2e57e6fae0bb\",\n                                    \"party\": {\n                                        \"name\": \"EQUINOR ENERGY AS\"\n                                    }\n                                },\n                                {\n                                    \"name\": \"TOTAL E&P NORGE\",\n                                    \"interestValue\": 20,\n                                    \"validFrom\": \"2018-05-16T00:00:00Z\",\n                                    \"validTo\": null,\n                                    \"description\": null,\n                                    \"licenseId\": \"5a43d4f1466183267afc2e57e6fae0bb\",\n                                    \"party\": {\n                                        \"name\": \"TOTAL E&P NORGE\"\n                                    }\n                                },\n                                {\n                                    \"name\": \"PETORO\",\n                                    \"interestValue\": 30,\n                                    \"validFrom\": \"2018-05-16T00:00:00Z\",\n                                    \"validTo\": null,\n                                    \"description\": null,\n                                    \"licenseId\": \"5a43d4f1466183267afc2e57e6fae0bb\",\n                                    \"party\": {\n                                        \"name\": \"PETORO\"\n                                    }\n                                },\n                                {\n                                    \"name\": \"SHELL NORGE\",\n                                    \"interestValue\": 30,\n                                    \"validFrom\": \"2018-05-16T00:00:00Z\",\n                                    \"validTo\": null,\n                                    \"description\": null,\n                                    \"licenseId\": \"5a43d4f1466183267afc2e57e6fae0bb\",\n                                    \"party\": {\n                                        \"name\": \"SHELL NORGE\"\n                                    }\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"292\",\n                            \"description\": null,\n                            \"validFrom\": \"2003-04-11T00:00:00Z\",\n                            \"validTo\": \"2026-04-01T00:00:00Z\",\n                            \"status\": \"ACTIVE\",\n                            \"type\": \"PRODUCTION\",\n                            \"interests\": [\n                                {\n                                    \"name\": \"SHELL NORGE\",\n                                    \"interestValue\": 60,\n                                    \"validFrom\": \"2016-08-31T00:00:00Z\",\n                                    \"validTo\": null,\n                                    \"description\": null,\n                                    \"licenseId\": \"2b2578d11309e40483efd247bed19da4\",\n                                    \"party\": {\n                                        \"name\": \"SHELL NORGE\"\n                                    }\n                                },\n                                {\n                                    \"name\": \"LUNDIN NORWAY\",\n                                    \"interestValue\": 40,\n                                    \"validFrom\": \"2016-08-31T00:00:00Z\",\n                                    \"validTo\": null,\n                                    \"description\": null,\n                                    \"licenseId\": \"2b2578d11309e40483efd247bed19da4\",\n                                    \"party\": {\n                                        \"name\": \"LUNDIN NORWAY\"\n                                    }\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"292 B\",\n                            \"description\": null,\n                            \"validFrom\": \"2009-01-23T00:00:00Z\",\n                            \"validTo\": \"2026-04-01T00:00:00Z\",\n                            \"status\": \"ACTIVE\",\n                            \"type\": \"PRODUCTION\",\n                            \"interests\": [\n                                {\n                                    \"name\": \"SHELL NORGE\",\n                                    \"interestValue\": 60,\n                                    \"validFrom\": \"2016-08-31T00:00:00Z\",\n                                    \"validTo\": null,\n                                    \"description\": null,\n                                    \"licenseId\": \"b7706142bf219aef3e22cb878fe2693f\",\n                                    \"party\": {\n                                        \"name\": \"SHELL NORGE\"\n                                    }\n                                },\n                                {\n                                    \"name\": \"LUNDIN NORWAY\",\n                                    \"interestValue\": 40,\n                                    \"validFrom\": \"2016-08-31T00:00:00Z\",\n                                    \"validTo\": null,\n                                    \"description\": null,\n                                    \"licenseId\": \"b7706142bf219aef3e22cb878fe2693f\",\n                                    \"party\": {\n                                        \"name\": \"LUNDIN NORWAY\"\n                                    }\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"373 S\",\n                            \"description\": null,\n                            \"validFrom\": \"2006-01-06T00:00:00Z\",\n                            \"validTo\": \"2038-01-06T00:00:00Z\",\n                            \"status\": \"ACTIVE\",\n                            \"type\": \"PRODUCTION\",\n                            \"interests\": [\n                                {\n                                    \"name\": \"WINTERSHALL DEA NORGE AS\",\n                                    \"interestValue\": 30,\n                                    \"validFrom\": \"2019-11-13T00:00:00Z\",\n                                    \"validTo\": null,\n                                    \"description\": null,\n                                    \"licenseId\": \"b8153466e1ebe92a3960e29e205e3391\",\n                                    \"party\": {\n                                        \"name\": \"WINTERSHALL DEA NORGE AS\"\n                                    }\n                                },\n                                {\n                                    \"name\": \"SHELL NORGE\",\n                                    \"interestValue\": 45,\n                                    \"validFrom\": \"2019-11-13T00:00:00Z\",\n                                    \"validTo\": null,\n                                    \"description\": null,\n                                    \"licenseId\": \"b8153466e1ebe92a3960e29e205e3391\",\n                                    \"party\": {\n                                        \"name\": \"SHELL NORGE\"\n                                    }\n                                },\n                                {\n                                    \"name\": \"IDEMITSU\",\n                                    \"interestValue\": 25,\n                                    \"validFrom\": \"2019-11-13T00:00:00Z\",\n                                    \"validTo\": null,\n                                    \"description\": null,\n                                    \"licenseId\": \"b8153466e1ebe92a3960e29e205e3391\",\n                                    \"party\": {\n                                        \"name\": \"IDEMITSU\"\n                                    }\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"832\",\n                            \"description\": null,\n                            \"validFrom\": \"2016-02-05T00:00:00Z\",\n                            \"validTo\": \"2025-02-05T00:00:00Z\",\n                            \"status\": \"ACTIVE\",\n                            \"type\": \"PRODUCTION\",\n                            \"interests\": [\n                                {\n                                    \"name\": \"WINTERSHALL DEA NORGE AS\",\n                                    \"interestValue\": 15,\n                                    \"validFrom\": \"2019-11-13T00:00:00Z\",\n                                    \"validTo\": null,\n                                    \"description\": null,\n                                    \"licenseId\": \"1db7c559e75feb507aa2f0c7128e4ecc\",\n                                    \"party\": {\n                                        \"name\": \"WINTERSHALL DEA NORGE AS\"\n                                    }\n                                },\n                                {\n                                    \"name\": \"SPIRIT ENERGY NORWAY AS\",\n                                    \"interestValue\": 20,\n                                    \"validFrom\": \"2019-11-13T00:00:00Z\",\n                                    \"validTo\": null,\n                                    \"description\": null,\n                                    \"licenseId\": \"1db7c559e75feb507aa2f0c7128e4ecc\",\n                                    \"party\": {\n                                        \"name\": \"SPIRIT ENERGY NORWAY AS\"\n                                    }\n                                },\n                                {\n                                    \"name\": \"PETORO\",\n                                    \"interestValue\": 20,\n                                    \"validFrom\": \"2019-11-13T00:00:00Z\",\n                                    \"validTo\": null,\n                                    \"description\": null,\n                                    \"licenseId\": \"1db7c559e75feb507aa2f0c7128e4ecc\",\n                                    \"party\": {\n                                        \"name\": \"PETORO\"\n                                    }\n                                },\n                                {\n                                    \"name\": \"SHELL NORGE\",\n                                    \"interestValue\": 45,\n                                    \"validFrom\": \"2019-11-13T00:00:00Z\",\n                                    \"validTo\": null,\n                                    \"description\": null,\n                                    \"licenseId\": \"1db7c559e75feb507aa2f0c7128e4ecc\",\n                                    \"party\": {\n                                        \"name\": \"SHELL NORGE\"\n                                    }\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"832 B\",\n                            \"description\": null,\n                            \"validFrom\": \"2018-03-02T00:00:00Z\",\n                            \"validTo\": \"2025-02-05T00:00:00Z\",\n                            \"status\": \"ACTIVE\",\n                            \"type\": \"PRODUCTION\",\n                            \"interests\": [\n                                {\n                                    \"name\": \"WINTERSHALL DEA NORGE AS\",\n                                    \"interestValue\": 15,\n                                    \"validFrom\": \"2019-11-13T00:00:00Z\",\n                                    \"validTo\": null,\n                                    \"description\": null,\n                                    \"licenseId\": \"365e3a95b710d0b2678d0cc13cb2630e\",\n                                    \"party\": {\n                                        \"name\": \"WINTERSHALL DEA NORGE AS\"\n                                    }\n                                },\n                                {\n                                    \"name\": \"SPIRIT ENERGY NORWAY AS\",\n                                    \"interestValue\": 20,\n                                    \"validFrom\": \"2019-11-13T00:00:00Z\",\n                                    \"validTo\": null,\n                                    \"description\": null,\n                                    \"licenseId\": \"365e3a95b710d0b2678d0cc13cb2630e\",\n                                    \"party\": {\n                                        \"name\": \"SPIRIT ENERGY NORWAY AS\"\n                                    }\n                                },\n                                {\n                                    \"name\": \"SHELL NORGE\",\n                                    \"interestValue\": 45,\n                                    \"validFrom\": \"2019-11-13T00:00:00Z\",\n                                    \"validTo\": null,\n                                    \"description\": null,\n                                    \"licenseId\": \"365e3a95b710d0b2678d0cc13cb2630e\",\n                                    \"party\": {\n                                        \"name\": \"SHELL NORGE\"\n                                    }\n                                },\n                                {\n                                    \"name\": \"PETORO\",\n                                    \"interestValue\": 20,\n                                    \"validFrom\": \"2019-11-13T00:00:00Z\",\n                                    \"validTo\": null,\n                                    \"description\": null,\n                                    \"licenseId\": \"365e3a95b710d0b2678d0cc13cb2630e\",\n                                    \"party\": {\n                                        \"name\": \"PETORO\"\n                                    }\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"862\",\n                            \"description\": null,\n                            \"validFrom\": \"2017-02-10T00:00:00Z\",\n                            \"validTo\": \"2026-02-10T00:00:00Z\",\n                            \"status\": \"ACTIVE\",\n                            \"type\": \"PRODUCTION\",\n                            \"interests\": [\n                                {\n                                    \"name\": \"SHELL NORGE\",\n                                    \"interestValue\": 50,\n                                    \"validFrom\": \"2017-02-10T00:00:00Z\",\n                                    \"validTo\": null,\n                                    \"description\": null,\n                                    \"licenseId\": \"c5e0beb8f800270b8260b28211658625\",\n                                    \"party\": {\n                                        \"name\": \"SHELL NORGE\"\n                                    }\n                                },\n                                {\n                                    \"name\": \"AKER BP ASA\",\n                                    \"interestValue\": 50,\n                                    \"validFrom\": \"2017-02-10T00:00:00Z\",\n                                    \"validTo\": null,\n                                    \"description\": null,\n                                    \"licenseId\": \"c5e0beb8f800270b8260b28211658625\",\n                                    \"party\": {\n                                        \"name\": \"AKER BP ASA\"\n                                    }\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"863\",\n                            \"description\": null,\n                            \"validFrom\": \"2017-02-10T00:00:00Z\",\n                            \"validTo\": \"2025-02-10T00:00:00Z\",\n                            \"status\": \"ACTIVE\",\n                            \"type\": \"PRODUCTION\",\n                            \"interests\": [\n                                {\n                                    \"name\": \"SHELL NORGE\",\n                                    \"interestValue\": 60,\n                                    \"validFrom\": \"2017-02-10T00:00:00Z\",\n                                    \"validTo\": null,\n                                    \"description\": null,\n                                    \"licenseId\": \"8f0aaed6010897acbdf39bf3db256fff\",\n                                    \"party\": {\n                                        \"name\": \"SHELL NORGE\"\n                                    }\n                                },\n                                {\n                                    \"name\": \"AKER BP ASA\",\n                                    \"interestValue\": 40,\n                                    \"validFrom\": \"2017-02-10T00:00:00Z\",\n                                    \"validTo\": null,\n                                    \"description\": null,\n                                    \"licenseId\": \"8f0aaed6010897acbdf39bf3db256fff\",\n                                    \"party\": {\n                                        \"name\": \"AKER BP ASA\"\n                                    }\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"863 B\",\n                            \"description\": null,\n                            \"validFrom\": \"2018-03-02T00:00:00Z\",\n                            \"validTo\": \"2025-02-10T00:00:00Z\",\n                            \"status\": \"ACTIVE\",\n                            \"type\": \"PRODUCTION\",\n                            \"interests\": [\n                                {\n                                    \"name\": \"SHELL NORGE\",\n                                    \"interestValue\": 60,\n                                    \"validFrom\": \"2018-03-02T00:00:00Z\",\n                                    \"validTo\": null,\n                                    \"description\": null,\n                                    \"licenseId\": \"49a8e8baff240dbaa5b26ab802a0bddf\",\n                                    \"party\": {\n                                        \"name\": \"SHELL NORGE\"\n                                    }\n                                },\n                                {\n                                    \"name\": \"AKER BP ASA\",\n                                    \"interestValue\": 40,\n                                    \"validFrom\": \"2018-03-02T00:00:00Z\",\n                                    \"validTo\": null,\n                                    \"description\": null,\n                                    \"licenseId\": \"49a8e8baff240dbaa5b26ab802a0bddf\",\n                                    \"party\": {\n                                        \"name\": \"AKER BP ASA\"\n                                    }\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"876 S\",\n                            \"description\": null,\n                            \"validFrom\": \"2017-02-10T00:00:00Z\",\n                            \"validTo\": \"2024-02-10T00:00:00Z\",\n                            \"status\": \"ACTIVE\",\n                            \"type\": \"PRODUCTION\",\n                            \"interests\": [\n                                {\n                                    \"name\": \"SPIRIT ENERGY NORWAY AS\",\n                                    \"interestValue\": 20,\n                                    \"validFrom\": \"2018-12-04T00:00:00Z\",\n                                    \"validTo\": null,\n                                    \"description\": null,\n                                    \"licenseId\": \"3851908074289bc192aaac819d0b474d\",\n                                    \"party\": {\n                                        \"name\": \"SPIRIT ENERGY NORWAY AS\"\n                                    }\n                                },\n                                {\n                                    \"name\": \"SHELL NORGE\",\n                                    \"interestValue\": 50,\n                                    \"validFrom\": \"2018-12-04T00:00:00Z\",\n                                    \"validTo\": null,\n                                    \"description\": null,\n                                    \"licenseId\": \"3851908074289bc192aaac819d0b474d\",\n                                    \"party\": {\n                                        \"name\": \"SHELL NORGE\"\n                                    }\n                                },\n                                {\n                                    \"name\": \"WELLESLEY PETROLEUM AS\",\n                                    \"interestValue\": 30,\n                                    \"validFrom\": \"2018-12-04T00:00:00Z\",\n                                    \"validTo\": null,\n                                    \"description\": null,\n                                    \"licenseId\": \"3851908074289bc192aaac819d0b474d\",\n                                    \"party\": {\n                                        \"name\": \"WELLESLEY PETROLEUM AS\"\n                                    }\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"892\",\n                            \"description\": null,\n                            \"validFrom\": \"2017-02-10T00:00:00Z\",\n                            \"validTo\": \"2026-02-10T00:00:00Z\",\n                            \"status\": \"ACTIVE\",\n                            \"type\": \"PRODUCTION\",\n                            \"interests\": [\n                                {\n                                    \"name\": \"SHELL NORGE\",\n                                    \"interestValue\": 50,\n                                    \"validFrom\": \"2017-02-10T00:00:00Z\",\n                                    \"validTo\": null,\n                                    \"description\": null,\n                                    \"licenseId\": \"587a317f7a8d2265243d85daa85c833b\",\n                                    \"party\": {\n                                        \"name\": \"SHELL NORGE\"\n                                    }\n                                },\n                                {\n                                    \"name\": \"PETORO\",\n                                    \"interestValue\": 20,\n                                    \"validFrom\": \"2017-02-10T00:00:00Z\",\n                                    \"validTo\": null,\n                                    \"description\": null,\n                                    \"licenseId\": \"587a317f7a8d2265243d85daa85c833b\",\n                                    \"party\": {\n                                        \"name\": \"PETORO\"\n                                    }\n                                },\n                                {\n                                    \"name\": \"AKER BP ASA\",\n                                    \"interestValue\": 30,\n                                    \"validFrom\": \"2017-02-10T00:00:00Z\",\n                                    \"validTo\": null,\n                                    \"description\": null,\n                                    \"licenseId\": \"587a317f7a8d2265243d85daa85c833b\",\n                                    \"party\": {\n                                        \"name\": \"AKER BP ASA\"\n                                    }\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"996\",\n                            \"description\": null,\n                            \"validFrom\": \"2019-03-01T00:00:00Z\",\n                            \"validTo\": \"2026-03-01T00:00:00Z\",\n                            \"status\": \"ACTIVE\",\n                            \"type\": \"PRODUCTION\",\n                            \"interests\": [\n                                {\n                                    \"name\": \"SHELL NORGE\",\n                                    \"interestValue\": 50,\n                                    \"validFrom\": \"2019-03-01T00:00:00Z\",\n                                    \"validTo\": null,\n                                    \"description\": null,\n                                    \"licenseId\": \"c03f683ed3e55629c7d0cd390a0882c5\",\n                                    \"party\": {\n                                        \"name\": \"SHELL NORGE\"\n                                    }\n                                },\n                                {\n                                    \"name\": \"EQUINOR ENERGY AS\",\n                                    \"interestValue\": 50,\n                                    \"validFrom\": \"2019-03-01T00:00:00Z\",\n                                    \"validTo\": null,\n                                    \"description\": null,\n                                    \"licenseId\": \"c03f683ed3e55629c7d0cd390a0882c5\",\n                                    \"party\": {\n                                        \"name\": \"EQUINOR ENERGY AS\"\n                                    }\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"997\",\n                            \"description\": null,\n                            \"validFrom\": \"2019-03-01T00:00:00Z\",\n                            \"validTo\": \"2028-03-01T00:00:00Z\",\n                            \"status\": \"ACTIVE\",\n                            \"type\": \"PRODUCTION\",\n                            \"interests\": [\n                                {\n                                    \"name\": \"SHELL NORGE\",\n                                    \"interestValue\": 35,\n                                    \"validFrom\": \"2019-03-01T00:00:00Z\",\n                                    \"validTo\": null,\n                                    \"description\": null,\n                                    \"licenseId\": \"884768b7bc93e0e18f57d201b9e71186\",\n                                    \"party\": {\n                                        \"name\": \"SHELL NORGE\"\n                                    }\n                                },\n                                {\n                                    \"name\": \"INEOS E&P NORGE AS\",\n                                    \"interestValue\": 30,\n                                    \"validFrom\": \"2019-03-01T00:00:00Z\",\n                                    \"validTo\": null,\n                                    \"description\": null,\n                                    \"licenseId\": \"884768b7bc93e0e18f57d201b9e71186\",\n                                    \"party\": {\n                                        \"name\": \"INEOS E&P NORGE AS\"\n                                    }\n                                },\n                                {\n                                    \"name\": \"EQUINOR ENERGY AS\",\n                                    \"interestValue\": 35,\n                                    \"validFrom\": \"2019-03-01T00:00:00Z\",\n                                    \"validTo\": null,\n                                    \"description\": null,\n                                    \"licenseId\": \"884768b7bc93e0e18f57d201b9e71186\",\n                                    \"party\": {\n                                        \"name\": \"EQUINOR ENERGY AS\"\n                                    }\n                                }\n                            ]\n                        }\n                    ]\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"a2ebd561-9829-4bdc-b1bb-f6ed73698436"},{"name":"Get license information on license with specified name","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","",""],"type":"text/javascript"}}],"id":"b3abe2e7-e607-4d08-9951-fa32de31d1d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"description":"<p>The authentication OAUTH2 token recieved from authentication process</p>\n","key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"description":"<p>OPC subscription key as supplied by NOROG</p>\n","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"graphql"},"url":"{{graphQueryAPI}}","description":"<p>Example query using GraphQL standard to query for operatorship and partners in a given license (in this case the license PL 250).</p>\n","urlObject":{"host":["{{graphQueryAPI}}"],"query":[],"variable":[]}},"response":[{"id":"aae755fe-ca7f-457c-ab8c-b1c99df2abfc","name":"Get license information on license with specified name","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer xxxx","description":"The authentication OAUTH2 token recieved from authentication process","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Ocp-Apim-Subscription-Key","value":"xxxx","description":"OPC subscription key as supplied by NOROG","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query{\n    metadata {\n        licenses(name:\"250\"){\n            \n                name\n                description\n                validFrom\n                validTo\n                status\n                type\n                interests{\n                    name\n                    interestValue\n                    validFrom\n                    validTo\n                    description\n                }\n            }\n        }\n        \n    \n    \n}","variables":""}},"url":"{{graphQueryAPI}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":""},{"key":"Date","value":"Thu, 16 Jan 2020 12:00:32 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"metadata\": {\n            \"licenses\": [\n                {\n                    \"name\": \"250\",\n                    \"description\": null,\n                    \"validFrom\": \"1999-10-22T00:00:00Z\",\n                    \"validTo\": \"2041-02-02T00:00:00Z\",\n                    \"status\": \"ACTIVE\",\n                    \"type\": \"PRODUCTION\",\n                    \"interests\": [\n                        {\n                            \"name\": \"VÅR ENERGI AS\",\n                            \"interestValue\": 5.91,\n                            \"validFrom\": \"2019-12-10T00:00:00Z\",\n                            \"validTo\": null,\n                            \"description\": null\n                        },\n                        {\n                            \"name\": \"EQUINOR ENERGY AS\",\n                            \"interestValue\": 23.65,\n                            \"validFrom\": \"2019-12-10T00:00:00Z\",\n                            \"validTo\": null,\n                            \"description\": null\n                        },\n                        {\n                            \"name\": \"INEOS E&P NORGE AS\",\n                            \"interestValue\": 9.44,\n                            \"validFrom\": \"2019-12-10T00:00:00Z\",\n                            \"validTo\": null,\n                            \"description\": null\n                        },\n                        {\n                            \"name\": \"PETORO\",\n                            \"interestValue\": 45,\n                            \"validFrom\": \"2019-12-10T00:00:00Z\",\n                            \"validTo\": null,\n                            \"description\": null\n                        },\n                        {\n                            \"name\": \"SHELL NORGE\",\n                            \"interestValue\": 16,\n                            \"validFrom\": \"2019-12-10T00:00:00Z\",\n                            \"validTo\": null,\n                            \"description\": null\n                        }\n                    ]\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"b3abe2e7-e607-4d08-9951-fa32de31d1d1"},{"name":"Get metadata for the field Alve","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","",""],"type":"text/javascript"}}],"id":"4bd5b812-3bbc-4ade-b2a1-ba8ea1688655","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"description":"<p>The authentication OAUTH2 token recieved from authentication process</p>\n","key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"description":"<p>OPC subscription key as supplied by NOROG</p>\n","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"graphql"},"url":"{{graphQueryAPI}}","description":"<p>An example query for fetching metadata on the field Alve including basis information on the field such as license information, all of the wells and wellbores in the license including exploration and production,platforms belonging to the installation.</p>\n","urlObject":{"host":["{{graphQueryAPI}}"],"query":[],"variable":[]}},"response":[{"id":"cabf08d7-4a14-415d-8d8e-c61e1085bb9f","name":"Get metadata for the field Alve","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer xxx","type":"text"},{"key":"Report-Type","value":"DPR20","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Ocp-Apim-Subscription-Key","value":"xxxx","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query{\n    metadata {\n        fields(name:\"ALVE\"){\n            name\n            status\n            country\n            referenceId\n            wells{\n                name\n                referenceId\n                drillingOperator {\n                  name\n                }\n                kind\n                productionFacility {\n                  name\n                }\n               factPageUrl\n               purpose\n                status\n                \n            }\n            platforms {\n                name\n                referenceId\n            }\n            wellbores{\n                name\n                status\n                referenceId\n                completedDate\n                drillingOperator {\n                  name\n                }\n                kind\n                productionFacility {\n                  name\n                }\n               factPageUrl\n               purpose\n                status\n            }\n            license {\n                name\n                referenceId\n          \n            }\n           \n        }\n        \n    }\n    \n}","variables":""}},"url":"{{graphQueryAPI}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Encoding","value":"br"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":"appId=cid-v1:b3cd985b-9ef8-4b6a-8751-714f67ebcf8d"},{"key":"Set-Cookie","value":"ReportingHubAPI=CfDJ8MlDUcewhZpFrAiZxPy1tr5PUh5ZWWDKWwTj866ZdrBTdKzvGKcwX9B1J141g3yhgSMgfPYqjVAXOe5pkdtMxiREd32U6ymzp6XWNrz5n8Wnde-_BkNRchu4EA1omxy1ANLUqifWwNUvtsO2TvRFt3Fz9vJs3cO5V25o8tGK7U4J92G-YT-jr7PTIRSGGv7GOQtHTyt4gb-hXE4E85LwZMQlhFk9uXVOA61whJiqlSyFQ6AT_GaAeYwmqyNwg2_55RPU2h_Fbo8S_QNMeaUSc6IR_A7PHeI0tJY9_MnJHou7fZ6jljo5uFmI3orublzggcxP_HmvalBGP0YMeDk5-O7NzaMvhyVOVaEQJZBHW4AVqCQDQxHT0zA-5wbuBbGTmNl4SyDU1c5_rfWfWzDbUVzjmW4K0HF5FwjXE5nrcWVuV9loxebS3IgjxqGtlr8BVTiaw9xB2vtAkGCWN9jdq5x29M9XFSWKk7T9jizR4wg0wvfZ0E8b4x-pZZdQoMRsB0JB_dXV6rgLiNVP4_CpvW-kpAvL8nmA-BbtJBR49yNRx2ck_6Ksp4QPDsbIenezyW7rgey62DYdrMXBPDrvccErq__vxp1QPLZBKJvxwYCZQtphlTwQy4ZRx34TlinzsbKLg3sg-0JswouG3s19u2-_IGOH_AKotUXsvLHWzWNYij3Z5RKmDLTGsaHC3YUWiZIJ8J0viiUAvpu9GEBDA6joUypHTOA93IRJniroyOiYkCQamkIF88H_aUgyhtNm8FnszjCx8mZDI0MgjcjF9QZx5alCfPpySVZGBUuFX6dxOKDsFJush-1y_qHcxqowg5tJlVZGg-khU7TWzxwPnMVRl8OKhWJd7oAdhOdI2XhuQMoh7lj4mnz2ZhzYJoYIjnWKRDLRtkSfbZzp3kV2P2R2dt-LmpfQVvu_k_SGYz_iEqos0jc6Z5NbkFOS7gWpaCfqgR-YfTboqBlHgmzwihqCtdb2zDBkevTK9-F0pqkbHdQ1AWPQmU1zq141GJCqUj2rlU_ojaJa6npYKqvhPtsZM9X8d-pHPX1BknhoY8Kl18-OkcaeNNpRFDGJnAeLvi2yY4ccxhf2aVz0ZDQEaemMkOFmXDEjaM8CXFoJZ9PPWuUqjsQvlRwrnzEV983aVteg04Hi1trfxSJVVh5v44jMag1wgBmt7xu-B3BtJk7Km3VAArgsETE182SMeAYPWkIBcBYiIEndKrUfqG3aAiY9N2LjwiL7rgz5okMebXL1zbF8QiOywaJUKfi4XsGcw0WnqvTbVKO4TB962dhvgYh4NfrdIHiqGHHbH5KbM125LJO-IktdsebEieKQgXxRBEG06lohzUC_-o9SR3uSQMW-FpZW17EhAvAzWTdpEcmMc-2knwRVcWZ8dhMnYV43HeCgf-9O6x0dLWzZuT8FcIkvGqdYng7iFB5Qv_O_E-3KuC-JjBbcwL-3qer5H1wk1pIkTuwoeqibWlSTqq-5eN4SGwQ6kZnllhnoDi8GFrP1ocK1NfZF4mfdKq-kVyikghMbMsKKoN7dvWS5Uk_q9HIOwm7W7FnU96fWDbmzFPKN9uIIu6eG_DrT7PoBF5ga1SsoO5xAxho0qOqsq7fg_bEa1hrGgm503zYnXI9S-PjH7pMMvyaUYLAt2iY2kkBo6Ys4uikw8kcC3xC1dY2tgfaoWXOYp06fJ5xy2hpujj-3zPlYL82xHFBCTV5DI1EZb8G9G_R7nVJ8ivB_El2kbdPx1bLjrm7RK53G180b5NQcpM_a7js9bQ1ygVNOJXA1IEXqB5Syrd8bSkBFT2ZBrOZRY9zp8dQO8pE2KN4YJuUj8ua3gEihowxE_1dm5aSI7LppvIqbzTbzBQuCgjQNzHRAZfQ2aD0dhORPaxao4ZogA5AvWrufUbe0zrs4Sh6R46BCEa73lAfhmt9g_1mk5MhYCmM7R-cuDghoBN4U8aevn25G4ysm88H0mUB5rw8DmnZeRjzj2_HPXJOyE8uRNFH3vGRVT8quGcQ0Dw0S4dskmmSToHw6diAVz6Yiz7zrAQ; path=/; secure; samesite=none; httponly"},{"key":"Date","value":"Mon, 20 Jan 2020 20:08:07 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"metadata\": {\n            \"fields\": [\n                {\n                    \"name\": \"ALVE\",\n                    \"status\": \"PRODUCING\",\n                    \"country\": \"NO\",\n                    \"referenceId\": \"4444332\",\n                    \"wells\": [\n                        {\n                            \"name\": \"6507/3-1\",\n                            \"referenceId\": \"1533\",\n                            \"drillingOperator\": {\n                                \"name\": \"STATOIL\"\n                            },\n                            \"kind\": \"EXPLORATION\",\n                            \"productionFacility\": null,\n                            \"factPageUrl\": \"https://factpages.npd.no/factpages/default.aspx?nav1=wellbore&nav2=PageView|Exploration|All&nav3=1533\",\n                            \"purpose\": \"WILDCAT\",\n                            \"status\": \"PA\"\n                        },\n                        {\n                            \"name\": \"6507/3-4\",\n                            \"referenceId\": \"4905\",\n                            \"drillingOperator\": {\n                                \"name\": \"STATOIL ASA (OLD)\"\n                            },\n                            \"kind\": \"EXPLORATION\",\n                            \"productionFacility\": null,\n                            \"factPageUrl\": \"https://factpages.npd.no/factpages/default.aspx?nav1=wellbore&nav2=PageView|Exploration|All&nav3=4905\",\n                            \"purpose\": \"APPRAISAL\",\n                            \"status\": \"PA\"\n                        },\n                        {\n                            \"name\": \"6507/3-5\",\n                            \"referenceId\": \"0-5307\",\n                            \"drillingOperator\": {\n                                \"name\": \"STATOILHYDRO ASA\"\n                            },\n                            \"kind\": \"NULL\",\n                            \"productionFacility\": null,\n                            \"factPageUrl\": null,\n                            \"purpose\": \"NULL\",\n                            \"status\": \"NULL\"\n                        },\n                        {\n                            \"name\": \"6507/3-L-1\",\n                            \"referenceId\": \"7986\",\n                            \"drillingOperator\": {\n                                \"name\": \"STATOIL PETROLEUM AS\"\n                            },\n                            \"kind\": \"DEVELOPMENT\",\n                            \"productionFacility\": {\n                                \"name\": \"ALVE\"\n                            },\n                            \"factPageUrl\": \"https://factpages.npd.no/factpages/default.aspx?nav1=wellbore&nav2=PageView|Development|All&nav3=7986\",\n                            \"purpose\": \"PRODUCTION\",\n                            \"status\": \"NULL\"\n                        },\n                        {\n                            \"name\": \"6507/3-L-2\",\n                            \"referenceId\": \"6002\",\n                            \"drillingOperator\": {\n                                \"name\": \"STATOILHYDRO PETROLEUM\"\n                            },\n                            \"kind\": \"DEVELOPMENT\",\n                            \"productionFacility\": {\n                                \"name\": \"ALVE\"\n                            },\n                            \"factPageUrl\": \"https://factpages.npd.no/factpages/default.aspx?nav1=wellbore&nav2=PageView|Development|All&nav3=6002\",\n                            \"purpose\": \"PRODUCTION\",\n                            \"status\": \"NULL\"\n                        },\n                        {\n                            \"name\": \"6507/3-L-4\",\n                            \"referenceId\": \"6389\",\n                            \"drillingOperator\": {\n                                \"name\": \"STATOIL PETROLEUM AS\"\n                            },\n                            \"kind\": \"DEVELOPMENT\",\n                            \"productionFacility\": {\n                                \"name\": \"ALVE\"\n                            },\n                            \"factPageUrl\": \"https://factpages.npd.no/factpages/default.aspx?nav1=wellbore&nav2=PageView|Development|All&nav3=6389\",\n                            \"purpose\": \"OBSERVATION\",\n                            \"status\": \"PLUGGED\"\n                        }\n                    ],\n                    \"platforms\": [\n                        {\n                            \"name\": \"ALVE\",\n                            \"referenceId\": \"378362\"\n                        }\n                    ],\n                    \"wellbores\": [\n                        {\n                            \"name\": \"6507/3-5 S\",\n                            \"status\": \"PA\",\n                            \"referenceId\": \"5307\",\n                            \"completedDate\": null,\n                            \"drillingOperator\": {\n                                \"name\": \"STATOILHYDRO ASA\"\n                            },\n                            \"kind\": \"EXPLORATION\",\n                            \"productionFacility\": null,\n                            \"factPageUrl\": \"https://factpages.npd.no/factpages/default.aspx?nav1=wellbore&nav2=PageView|Exploration|All&nav3=5307\",\n                            \"purpose\": \"WILDCAT\"\n                        },\n                        {\n                            \"name\": \"6507/3-L-1 H\",\n                            \"status\": \"NULL\",\n                            \"referenceId\": \"7986\",\n                            \"completedDate\": null,\n                            \"drillingOperator\": {\n                                \"name\": \"STATOIL PETROLEUM AS\"\n                            },\n                            \"kind\": \"DEVELOPMENT\",\n                            \"productionFacility\": {\n                                \"name\": \"ALVE\"\n                            },\n                            \"factPageUrl\": \"https://factpages.npd.no/factpages/default.aspx?nav1=wellbore&nav2=PageView|Development|All&nav3=7986\",\n                            \"purpose\": \"PRODUCTION\"\n                        },\n                        {\n                            \"name\": \"6507/3-L-2 H\",\n                            \"status\": \"NULL\",\n                            \"referenceId\": \"6002\",\n                            \"completedDate\": null,\n                            \"drillingOperator\": {\n                                \"name\": \"STATOILHYDRO PETROLEUM\"\n                            },\n                            \"kind\": \"DEVELOPMENT\",\n                            \"productionFacility\": {\n                                \"name\": \"ALVE\"\n                            },\n                            \"factPageUrl\": \"https://factpages.npd.no/factpages/default.aspx?nav1=wellbore&nav2=PageView|Development|All&nav3=6002\",\n                            \"purpose\": \"PRODUCTION\"\n                        },\n                        {\n                            \"name\": \"6507/3-L-4 H\",\n                            \"status\": \"PLUGGED\",\n                            \"referenceId\": \"6389\",\n                            \"completedDate\": null,\n                            \"drillingOperator\": {\n                                \"name\": \"STATOIL PETROLEUM AS\"\n                            },\n                            \"kind\": \"DEVELOPMENT\",\n                            \"productionFacility\": {\n                                \"name\": \"ALVE\"\n                            },\n                            \"factPageUrl\": \"https://factpages.npd.no/factpages/default.aspx?nav1=wellbore&nav2=PageView|Development|All&nav3=6389\",\n                            \"purpose\": \"OBSERVATION\"\n                        },\n                        {\n                            \"name\": \"6507/3-L-4 AH\",\n                            \"status\": \"NULL\",\n                            \"referenceId\": \"6390\",\n                            \"completedDate\": null,\n                            \"drillingOperator\": {\n                                \"name\": \"STATOIL PETROLEUM AS\"\n                            },\n                            \"kind\": \"DEVELOPMENT\",\n                            \"productionFacility\": {\n                                \"name\": \"ALVE\"\n                            },\n                            \"factPageUrl\": \"https://factpages.npd.no/factpages/default.aspx?nav1=wellbore&nav2=PageView|Development|All&nav3=6390\",\n                            \"purpose\": \"PRODUCTION\"\n                        },\n                        {\n                            \"name\": \"6507/3-1\",\n                            \"status\": \"PA\",\n                            \"referenceId\": \"1533\",\n                            \"completedDate\": null,\n                            \"drillingOperator\": {\n                                \"name\": \"STATOIL\"\n                            },\n                            \"kind\": \"EXPLORATION\",\n                            \"productionFacility\": null,\n                            \"factPageUrl\": \"https://factpages.npd.no/factpages/default.aspx?nav1=wellbore&nav2=PageView|Exploration|All&nav3=1533\",\n                            \"purpose\": \"WILDCAT\"\n                        },\n                        {\n                            \"name\": \"6507/3-4\",\n                            \"status\": \"PA\",\n                            \"referenceId\": \"4905\",\n                            \"completedDate\": null,\n                            \"drillingOperator\": {\n                                \"name\": \"STATOIL ASA (OLD)\"\n                            },\n                            \"kind\": \"EXPLORATION\",\n                            \"productionFacility\": null,\n                            \"factPageUrl\": \"https://factpages.npd.no/factpages/default.aspx?nav1=wellbore&nav2=PageView|Exploration|All&nav3=4905\",\n                            \"purpose\": \"APPRAISAL\"\n                        },\n                        {\n                            \"name\": \"6507/3-5\",\n                            \"status\": \"NULL\",\n                            \"referenceId\": \"0-5307\",\n                            \"completedDate\": null,\n                            \"drillingOperator\": {\n                                \"name\": \"STATOILHYDRO ASA\"\n                            },\n                            \"kind\": \"NULL\",\n                            \"productionFacility\": null,\n                            \"factPageUrl\": null,\n                            \"purpose\": \"NULL\"\n                        },\n                        {\n                            \"name\": \"6507/3-L-1\",\n                            \"status\": \"NULL\",\n                            \"referenceId\": \"7986\",\n                            \"completedDate\": null,\n                            \"drillingOperator\": {\n                                \"name\": \"STATOIL PETROLEUM AS\"\n                            },\n                            \"kind\": \"DEVELOPMENT\",\n                            \"productionFacility\": {\n                                \"name\": \"ALVE\"\n                            },\n                            \"factPageUrl\": \"https://factpages.npd.no/factpages/default.aspx?nav1=wellbore&nav2=PageView|Development|All&nav3=7986\",\n                            \"purpose\": \"PRODUCTION\"\n                        },\n                        {\n                            \"name\": \"6507/3-L-2\",\n                            \"status\": \"NULL\",\n                            \"referenceId\": \"6002\",\n                            \"completedDate\": null,\n                            \"drillingOperator\": {\n                                \"name\": \"STATOILHYDRO PETROLEUM\"\n                            },\n                            \"kind\": \"DEVELOPMENT\",\n                            \"productionFacility\": {\n                                \"name\": \"ALVE\"\n                            },\n                            \"factPageUrl\": \"https://factpages.npd.no/factpages/default.aspx?nav1=wellbore&nav2=PageView|Development|All&nav3=6002\",\n                            \"purpose\": \"PRODUCTION\"\n                        },\n                        {\n                            \"name\": \"6507/3-L-4\",\n                            \"status\": \"PLUGGED\",\n                            \"referenceId\": \"6389\",\n                            \"completedDate\": null,\n                            \"drillingOperator\": {\n                                \"name\": \"STATOIL PETROLEUM AS\"\n                            },\n                            \"kind\": \"DEVELOPMENT\",\n                            \"productionFacility\": {\n                                \"name\": \"ALVE\"\n                            },\n                            \"factPageUrl\": \"https://factpages.npd.no/factpages/default.aspx?nav1=wellbore&nav2=PageView|Development|All&nav3=6389\",\n                            \"purpose\": \"OBSERVATION\"\n                        }\n                    ],\n                    \"license\": {\n                        \"name\": \"159 B\",\n                        \"referenceId\": \"2819945\"\n                    }\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"4bd5b812-3bbc-4ade-b2a1-ba8ea1688655"},{"name":"Get metadata for the platform Eldfisk A","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","",""],"type":"text/javascript"}}],"id":"b1ae1470-bfb4-477b-84cb-93bcc1a118bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{bearerToken}}","description":"<p>The authentication OAUTH2 token recieved from authentication process</p>\n"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}","description":"<p>OPC subscription key as supplied by NOROG</p>\n"}],"body":{"mode":"graphql"},"url":"{{graphQueryAPI}}","description":"<p>An example query for fetching metadata on the platform Eldfisk A</p>\n","urlObject":{"host":["{{graphQueryAPI}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b1ae1470-bfb4-477b-84cb-93bcc1a118bb"},{"name":"Graph query get license with NPD id","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","",""],"type":"text/javascript"}}],"id":"0eacc0f1-4685-483c-bdf0-130ccd79da93","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"description":"<p>The authentication OAUTH2 token recieved from authentication process</p>\n","key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"description":"<p>OPC subscription key as supplied by NOROG</p>\n","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"graphql"},"url":"{{graphQueryAPI}}","description":"<p>Example query to get information on a license with a given NPD id</p>\n","urlObject":{"host":["{{graphQueryAPI}}"],"query":[],"variable":[]}},"response":[{"id":"52916949-9483-4992-9ece-405151a1c89e","name":"Graph query get license with NPD id","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer xxxx","type":"text"},{"key":"Report-Type","value":"DPR20","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Ocp-Apim-Subscription-Key","value":"xxxx","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query{\n    metadata {\n        facilities(referenceId:\"20900\"){\n            name\n            created\n            createdBy\n            referenceId\n            type\n        \t\tcountry\n            aliases {\n                name\n            }\n        }\n        \n    }\n    \n}","variables":""}},"url":"{{graphQueryAPI}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":""},{"key":"Date","value":"Mon, 20 Jan 2020 20:20:18 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"metadata\": {\n            \"facilities\": [\n                {\n                    \"name\": \"018\",\n                    \"created\": \"2020-01-20T12:52:15.803Z\",\n                    \"createdBy\": \"ProductionLicenseAggregator\",\n                    \"referenceId\": \"20900\",\n                    \"type\": \"License\",\n                    \"country\": \"NO\",\n                    \"aliases\": [\n                        {\n                            \"name\": \"018\"\n                        }\n                    ]\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"0eacc0f1-4685-483c-bdf0-130ccd79da93"}],"id":"bcac51a4-a737-43fa-a8e7-cc9e9d6cfc2d","description":"<p>The following collection contains examples of querying for common metadata from the system. Example of such inform ation could be data harvested from e.g. the NPD fact pages such as e.g. field information, ownership information and so on.</p>\n","_postman_id":"bcac51a4-a737-43fa-a8e7-cc9e9d6cfc2d"},{"name":"Production queries","item":[{"name":"Query get produced volumes registered for the field Åsgard in the given time period","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","","var template = `","    <table>","        <tr>","            <th>Source entity</th>","            <th>Source entity uid</th>","            <th>Source entity type</th>","            <th>Owning entity</th>","            <th>Owning entity uid</th>","            <th>Owning entity type</th>","            <th>Reporting entity</th>","            <th>Reporting entity uid</th>","            <th>Reporting entity type</th>","            <th>Report start time</th>","            <th>Report end time</th>","            <th>Data start time</th>","            <th>Data end time</th>","            <th>Data period</th>","            <th>Flow name</th>","            <th>Type</th>","            <th>Qualifier</th>","            <th>Product</th>","            <th>Volume</th>","            <th>UoM</th>","        </tr>","","        {{#each response.data.production.data}}","            <tr>","                <th>{{sourceEntity.name}}</th>","                <th>{{sourceEntity.uid}}</th>","                <th>{{sourceEntity.type}}</th>","                <th>{{owningEntity.name}}</th>","                <th>{{owningEntity.uid}}</th>","                <th>{{owningEntity.type}}</th>","                <th>{{dataEntity.name}}</th>","                <th>{{dataEntity.uid}}</th>","                <th>{{dataEntity.type}}</th>","                <th>{{sourceStartTime}}</th>","                <th>{{sourceEndTime}}</th>","                 <th>{{dataStartTime}}</th>","                <th>{{dataEndTime}}</th>","                 <th>{{dataPeriod}}</th>","                 <th>{{name}}</th>","                <th>{{type}}</th>","                 <th>{{qualifier}}</th>","                <th>{{product}}</th>","                 <th>{{volume.Value}}</th>","                <th>{{volume.uom}}</th>","               ","            </tr>","        {{/each}}","    </table>","`;","","pm.visualizer.set(template, {","    // Pass the response body parsed as JSON as `data`","    response: pm.response.json()","});","",""],"type":"text/javascript"}}],"id":"5f8f8107-2cb5-40c3-a7ff-068c7541226a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"description":"<p>OPC subscription key as supplied by NOROG</p>\n","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"graphql"},"url":"{{graphQueryAPI}}","description":"<p>Example query using GraphQL standard to query for produced volumes for the Åsgard field for a specified period of time (one month in 2001)</p>\n","urlObject":{"host":["{{graphQueryAPI}}"],"query":[],"variable":[]}},"response":[{"id":"b330cbc4-76bc-499c-993a-640bd3d45c5a","name":"Query get produced volumes registered for the field Åsgard in the given time period","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer xxxx","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Ocp-Apim-Subscription-Key","value":"xxxx","description":"OPC subscription key as supplied by NOROG","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query{\n    production {\n        data(start: \"2000-12-31T23:00:00.000Z\" end: \"2001-01-30T23:00:00.000Z\" types: [\"production\"] entity_names: [\"ÅSGARD\"] limit: 1000){\n            dataEntity{\n                name\n                uid\n                type\n            }\n            sourceEntity{ \n                    name \n                    uid\n                    type\n                \n            }\n            owningEntity{\n                name\n                uid\n                type\n            }\n            sourceStartTime\n            sourceEndTime \n            dataStartTime\n            dataEndTime\n            dataPeriod\n            name\n            type\n            product\n            qualifier\n            volume {\n                value\n                uom\n            }\n            sourceSystemName\n            sourceSystemVersion\n            quality\n        }\n        }\n        \n    }\n    \n\n","variables":""}},"url":"{{graphQueryAPI}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":""},{"key":"Date","value":"Sun, 26 Jan 2020 19:44:25 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"production\": {\n            \"data\": [\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6407/2-Z-3\",\n                        \"uid\": \"xxxx\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6407/2-Z-3 H\",\n                    \"type\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 378,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6407/2-Z-3\",\n                        \"uid\": \"xxxx\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6407/2-Z-3 H\",\n                    \"type\": \"production\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 1814,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6407/2-Z-3\",\n                        \"uid\": \"xxxx\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6407/2-Z-3 H\",\n                    \"type\": \"production\",\n                    \"product\": \"water\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 72,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6407/2-Z-3\",\n                        \"uid\": \"xxxx\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6407/2-Z-3 H\",\n                    \"type\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 378,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6407/2-Z-3\",\n                        \"uid\": \"xxxx\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6407/2-Z-3 H\",\n                    \"type\": \"production\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 1814,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6407/2-Z-3\",\n                        \"uid\": \"xxxx\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6407/2-Z-3 H\",\n                    \"type\": \"production\",\n                    \"product\": \"water\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 72,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6407/2-Z-4\",\n                        \"uid\": \"NPD_DO_NOT_HAVE_IDS_FOR_WELLS\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6407/2-Z-4\",\n                    \"type\": \"production\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 1151,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6407/2-Z-4\",\n                        \"uid\": \"NPD_DO_NOT_HAVE_IDS_FOR_WELLS\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6407/2-Z-4\",\n                    \"type\": \"production\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 1151,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6506/11-G-3\",\n                        \"uid\": \"NPD_DO_NOT_HAVE_IDS_FOR_WELLS\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6506/11-G-3\",\n                    \"type\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 366,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6506/11-G-3\",\n                        \"uid\": \"NPD_DO_NOT_HAVE_IDS_FOR_WELLS\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6506/11-G-3\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 347,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6506/11-G-3\",\n                        \"uid\": \"NPD_DO_NOT_HAVE_IDS_FOR_WELLS\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6506/11-G-3\",\n                    \"type\": \"production\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 1958,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6506/11-G-3\",\n                        \"uid\": \"NPD_DO_NOT_HAVE_IDS_FOR_WELLS\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6506/11-G-3\",\n                    \"type\": \"production\",\n                    \"product\": \"water\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 82,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6506/11-G-3\",\n                        \"uid\": \"NPD_DO_NOT_HAVE_IDS_FOR_WELLS\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6506/11-G-3\",\n                    \"type\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 366,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6506/11-G-3\",\n                        \"uid\": \"NPD_DO_NOT_HAVE_IDS_FOR_WELLS\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6506/11-G-3\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 347,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6506/11-G-3\",\n                        \"uid\": \"NPD_DO_NOT_HAVE_IDS_FOR_WELLS\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6506/11-G-3\",\n                    \"type\": \"production\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 1958,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6506/11-G-3\",\n                        \"uid\": \"NPD_DO_NOT_HAVE_IDS_FOR_WELLS\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6506/11-G-3\",\n                    \"type\": \"production\",\n                    \"product\": \"water\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 82,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6506/12-J-3\",\n                        \"uid\": \"NPD_DO_NOT_HAVE_IDS_FOR_WELLS\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6506/11-G-3\",\n                    \"type\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 366,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6506/12-J-3\",\n                        \"uid\": \"NPD_DO_NOT_HAVE_IDS_FOR_WELLS\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6506/11-G-3\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 347,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6506/12-J-3\",\n                        \"uid\": \"NPD_DO_NOT_HAVE_IDS_FOR_WELLS\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6506/11-G-3\",\n                    \"type\": \"production\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 1958,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6506/12-J-3\",\n                        \"uid\": \"NPD_DO_NOT_HAVE_IDS_FOR_WELLS\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6506/11-G-3\",\n                    \"type\": \"production\",\n                    \"product\": \"water\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 82,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6506/12-J-3\",\n                        \"uid\": \"NPD_DO_NOT_HAVE_IDS_FOR_WELLS\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6506/11-G-3\",\n                    \"type\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 366,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6506/12-J-3\",\n                        \"uid\": \"NPD_DO_NOT_HAVE_IDS_FOR_WELLS\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6506/11-G-3\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 347,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6506/12-J-3\",\n                        \"uid\": \"NPD_DO_NOT_HAVE_IDS_FOR_WELLS\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6506/11-G-3\",\n                    \"type\": \"production\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 1958,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6506/12-J-3\",\n                        \"uid\": \"NPD_DO_NOT_HAVE_IDS_FOR_WELLS\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6506/11-G-3\",\n                    \"type\": \"production\",\n                    \"product\": \"water\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 82,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6506/12-PB-1\",\n                        \"uid\": \"NPD_DO_NOT_HAVE_IDS_FOR_WELLS\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6506/12-PB-1\",\n                    \"type\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 396,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6506/12-PB-1\",\n                        \"uid\": \"NPD_DO_NOT_HAVE_IDS_FOR_WELLS\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6506/12-PB-1\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 230,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6506/12-PB-1\",\n                        \"uid\": \"NPD_DO_NOT_HAVE_IDS_FOR_WELLS\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6506/12-PB-1\",\n                    \"type\": \"production\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 1520,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6506/12-PB-1\",\n                        \"uid\": \"NPD_DO_NOT_HAVE_IDS_FOR_WELLS\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6506/12-PB-1\",\n                    \"type\": \"production\",\n                    \"product\": \"water\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 19,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6506/12-PB-1\",\n                        \"uid\": \"NPD_DO_NOT_HAVE_IDS_FOR_WELLS\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6506/12-PB-1\",\n                    \"type\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 396,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6506/12-PB-1\",\n                        \"uid\": \"NPD_DO_NOT_HAVE_IDS_FOR_WELLS\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6506/12-PB-1\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 230,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6506/12-PB-1\",\n                        \"uid\": \"NPD_DO_NOT_HAVE_IDS_FOR_WELLS\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6506/12-PB-1\",\n                    \"type\": \"production\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 1520,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6506/12-PB-1\",\n                        \"uid\": \"NPD_DO_NOT_HAVE_IDS_FOR_WELLS\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6506/12-PB-1\",\n                    \"type\": \"production\",\n                    \"product\": \"water\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 19,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond Production Mikkel on ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 223,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Cond Production Mikkel on ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 2261,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Cond Production Mikkel on ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 11597,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-13T07:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T10:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"product\": null,\n                    \"qualifier\": null,\n                    \"volume\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-13T03:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"product\": null,\n                    \"qualifier\": null,\n                    \"volume\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond Production Mikkel on ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 223,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Cond Production Mikkel on ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 2261,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Cond Production Mikkel on ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 11597,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T07:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T10:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"product\": null,\n                    \"qualifier\": null,\n                    \"volume\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"product\": null,\n                    \"qualifier\": null,\n                    \"volume\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MORVIN\",\n                        \"uid\": \"4966234\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Morvin on ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 396,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MORVIN\",\n                        \"uid\": \"4966234\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Oil Production Morvin on ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 3098,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MORVIN\",\n                        \"uid\": \"4966234\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Oil Production Morvin on ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 16543,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MORVIN\",\n                        \"uid\": \"4966234\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Morvin on ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 396,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MORVIN\",\n                        \"uid\": \"4966234\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Oil Production Morvin on ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 3098,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MORVIN\",\n                        \"uid\": \"4966234\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Oil Production Morvin on ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 16543,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated Production Åsgard field\",\n                    \"type\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 357,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Allocated Production Åsgard field\",\n                    \"type\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 1113,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Allocated Production Åsgard field\",\n                    \"type\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 11583,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated Production Åsgard field\",\n                    \"type\": \"production\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 1607,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Allocated Production Åsgard field\",\n                    \"type\": \"production\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 16920,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Allocated Production Åsgard field\",\n                    \"type\": \"production\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 130152,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated Production Åsgard field\",\n                    \"type\": \"production\",\n                    \"product\": \"water\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 26,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Allocated Production Åsgard field\",\n                    \"type\": \"production\",\n                    \"product\": \"water\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 131,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Allocated Production Åsgard field\",\n                    \"type\": \"production\",\n                    \"product\": \"water\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 567,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-13T12:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"product\": null,\n                    \"qualifier\": null,\n                    \"volume\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-13T13:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"product\": null,\n                    \"qualifier\": null,\n                    \"volume\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated Production Åsgard field\",\n                    \"type\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 357,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Allocated Production Åsgard field\",\n                    \"type\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 1113,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Allocated Production Åsgard field\",\n                    \"type\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 11583,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated Production Åsgard field\",\n                    \"type\": \"production\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 1607,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Allocated Production Åsgard field\",\n                    \"type\": \"production\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 16920,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Allocated Production Åsgard field\",\n                    \"type\": \"production\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 130152,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated Production Åsgard field\",\n                    \"type\": \"production\",\n                    \"product\": \"water\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 26,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Allocated Production Åsgard field\",\n                    \"type\": \"production\",\n                    \"product\": \"water\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 131,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Allocated Production Åsgard field\",\n                    \"type\": \"production\",\n                    \"product\": \"water\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 567,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"product\": null,\n                    \"qualifier\": null,\n                    \"volume\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"product\": null,\n                    \"qualifier\": null,\n                    \"volume\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production Åsgard A\",\n                    \"type\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 284,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Allocated production Åsgard A\",\n                    \"type\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 2693,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Allocated production Åsgard A\",\n                    \"type\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 15306,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production Åsgard A\",\n                    \"type\": \"production\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 1254,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Allocated production Åsgard A\",\n                    \"type\": \"production\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 12821,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Allocated production Åsgard A\",\n                    \"type\": \"production\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 178860,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production Åsgard A\",\n                    \"type\": \"production\",\n                    \"product\": \"diesel\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 172,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Allocated production Åsgard A\",\n                    \"type\": \"production\",\n                    \"product\": \"diesel\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 476,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Allocated production Åsgard A\",\n                    \"type\": \"production\",\n                    \"product\": \"diesel\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 589,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Measured Water production Åsgard A\",\n                    \"type\": \"production\",\n                    \"product\": \"water\",\n                    \"qualifier\": \"measured\",\n                    \"volume\": {\n                        \"value\": 90,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Measured Water production Åsgard A\",\n                    \"type\": \"production\",\n                    \"product\": \"water\",\n                    \"qualifier\": \"measured\",\n                    \"volume\": {\n                        \"value\": 65,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Measured Water production Åsgard A\",\n                    \"type\": \"production\",\n                    \"product\": \"water\",\n                    \"qualifier\": \"measured\",\n                    \"volume\": {\n                        \"value\": 978,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production from Wells on ASGA\",\n                    \"type\": \"production\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 1683,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Gas Production from Wells on ASGA\",\n                    \"type\": \"production\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 19789,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Gas Production from Wells on ASGA\",\n                    \"type\": \"production\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 192221,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Total on ASGA\",\n                    \"type\": \"production\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 1091,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Gas Production Total on ASGA\",\n                    \"type\": \"production\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 14931,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Gas Production Total on ASGA\",\n                    \"type\": \"production\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 192699,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production on ASGA\",\n                    \"type\": \"production\",\n                    \"product\": \"water\",\n                    \"qualifier\": \"measured\",\n                    \"volume\": {\n                        \"value\": 96,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Water Production on ASGA\",\n                    \"type\": \"production\",\n                    \"product\": \"water\",\n                    \"qualifier\": \"measured\",\n                    \"volume\": {\n                        \"value\": 102,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Water Production on ASGA\",\n                    \"type\": \"production\",\n                    \"product\": \"water\",\n                    \"qualifier\": \"measured\",\n                    \"volume\": {\n                        \"value\": 706,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Measured Water production Åsgard B\",\n                    \"type\": \"production\",\n                    \"product\": \"water\",\n                    \"qualifier\": \"measured\",\n                    \"volume\": {\n                        \"value\": 60,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated Production Åsgard B\",\n                    \"type\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 427,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Allocated Production Åsgard B\",\n                    \"type\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 2615,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Allocated Production Åsgard B\",\n                    \"type\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 11307,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated Production Åsgard B\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 496,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Allocated Production Åsgard B\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 4585,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Allocated Production Åsgard B\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 13221,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated Production Åsgard B\",\n                    \"type\": \"production\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 1721,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Allocated Production Åsgard B\",\n                    \"type\": \"production\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 16445,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Allocated Production Åsgard B\",\n                    \"type\": \"production\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 108552,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Deferral (appd B)\",\n                    \"type\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 401,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Oil Deferral (appd B)\",\n                    \"type\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 3491,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Oil Deferral (appd B)\",\n                    \"type\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 13697,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond Production Total on ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 271,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Cond Production Total on ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 3141,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Cond Production Total on ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 11872,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL A\",\n                        \"uid\": \"283509\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond Production from Mikkel A to ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 241,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL A\",\n                        \"uid\": \"283509\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Cond Production from Mikkel A to ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 2290,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL A\",\n                        \"uid\": \"283509\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Cond Production from Mikkel A to ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 15391,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL B\",\n                        \"uid\": \"283537\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond Production from Mikkel B to ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 371,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL B\",\n                        \"uid\": \"283537\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Cond Production from Mikkel B to ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 3051,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL B\",\n                        \"uid\": \"283537\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Cond Production from Mikkel B to ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 16842,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-13T01:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"product\": null,\n                    \"qualifier\": null,\n                    \"volume\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-13T03:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"product\": null,\n                    \"qualifier\": null,\n                    \"volume\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-13T01:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"product\": null,\n                    \"qualifier\": null,\n                    \"volume\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-13T10:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T15:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"product\": null,\n                    \"qualifier\": null,\n                    \"volume\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production Åsgard A\",\n                    \"type\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 284,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Allocated production Åsgard A\",\n                    \"type\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 2693,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Allocated production Åsgard A\",\n                    \"type\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 15306,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production Åsgard A\",\n                    \"type\": \"production\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 1254,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Allocated production Åsgard A\",\n                    \"type\": \"production\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 12821,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Allocated production Åsgard A\",\n                    \"type\": \"production\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 178860,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production Åsgard A\",\n                    \"type\": \"production\",\n                    \"product\": \"diesel\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 172,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Allocated production Åsgard A\",\n                    \"type\": \"production\",\n                    \"product\": \"diesel\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 476,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Allocated production Åsgard A\",\n                    \"type\": \"production\",\n                    \"product\": \"diesel\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 589,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Measured Water production Åsgard A\",\n                    \"type\": \"production\",\n                    \"product\": \"water\",\n                    \"qualifier\": \"measured\",\n                    \"volume\": {\n                        \"value\": 90,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Measured Water production Åsgard A\",\n                    \"type\": \"production\",\n                    \"product\": \"water\",\n                    \"qualifier\": \"measured\",\n                    \"volume\": {\n                        \"value\": 65,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Measured Water production Åsgard A\",\n                    \"type\": \"production\",\n                    \"product\": \"water\",\n                    \"qualifier\": \"measured\",\n                    \"volume\": {\n                        \"value\": 978,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production from Wells on ASGA\",\n                    \"type\": \"production\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 1683,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Gas Production from Wells on ASGA\",\n                    \"type\": \"production\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 19789,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Gas Production from Wells on ASGA\",\n                    \"type\": \"production\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 192221,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Total on ASGA\",\n                    \"type\": \"production\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 1091,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Gas Production Total on ASGA\",\n                    \"type\": \"production\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 14931,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Gas Production Total on ASGA\",\n                    \"type\": \"production\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 192699,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production on ASGA\",\n                    \"type\": \"production\",\n                    \"product\": \"water\",\n                    \"qualifier\": \"measured\",\n                    \"volume\": {\n                        \"value\": 96,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Water Production on ASGA\",\n                    \"type\": \"production\",\n                    \"product\": \"water\",\n                    \"qualifier\": \"measured\",\n                    \"volume\": {\n                        \"value\": 102,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Water Production on ASGA\",\n                    \"type\": \"production\",\n                    \"product\": \"water\",\n                    \"qualifier\": \"measured\",\n                    \"volume\": {\n                        \"value\": 706,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Measured Water production Åsgard B\",\n                    \"type\": \"production\",\n                    \"product\": \"water\",\n                    \"qualifier\": \"measured\",\n                    \"volume\": {\n                        \"value\": 60,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated Production Åsgard B\",\n                    \"type\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 427,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Allocated Production Åsgard B\",\n                    \"type\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 2615,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Allocated Production Åsgard B\",\n                    \"type\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 11307,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated Production Åsgard B\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 496,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Allocated Production Åsgard B\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 4585,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Allocated Production Åsgard B\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 13221,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated Production Åsgard B\",\n                    \"type\": \"production\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 1721,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Allocated Production Åsgard B\",\n                    \"type\": \"production\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 16445,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Allocated Production Åsgard B\",\n                    \"type\": \"production\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 108552,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Deferral (appd B)\",\n                    \"type\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 401,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Oil Deferral (appd B)\",\n                    \"type\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 3491,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Oil Deferral (appd B)\",\n                    \"type\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 13697,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond Production Total on ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 271,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Cond Production Total on ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 3141,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Cond Production Total on ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 11872,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL A\",\n                        \"uid\": \"283509\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond Production from Mikkel A to ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 241,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL A\",\n                        \"uid\": \"283509\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Cond Production from Mikkel A to ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 2290,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL A\",\n                        \"uid\": \"283509\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Cond Production from Mikkel A to ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 15391,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL B\",\n                        \"uid\": \"283537\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond Production from Mikkel B to ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 371,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL B\",\n                        \"uid\": \"283537\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Cond Production from Mikkel B to ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 3051,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL B\",\n                        \"uid\": \"283537\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Cond Production from Mikkel B to ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 16842,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"product\": null,\n                    \"qualifier\": null,\n                    \"volume\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"product\": null,\n                    \"qualifier\": null,\n                    \"volume\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"product\": null,\n                    \"qualifier\": null,\n                    \"volume\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T10:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T15:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"product\": null,\n                    \"qualifier\": null,\n                    \"volume\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"5f8f8107-2cb5-40c3-a7ff-068c7541226a"},{"name":"Query get injected volumes registered for the field Åsgard in the given time period","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","","var template = `","    <table>","        <tr>","            <th>Source entity</th>","            <th>Source entity uid</th>","            <th>Source entity type</th>","            <th>Owning entity</th>","            <th>Owning entity uid</th>","            <th>Owning entity type</th>","            <th>Reporting entity</th>","            <th>Reporting entity uid</th>","            <th>Reporting entity type</th>","            <th>Report start time</th>","            <th>Report end time</th>","            <th>Data start time</th>","            <th>Data end time</th>","            <th>Data period</th>","            <th>Flow name</th>","            <th>Type</th>","            <th>Qualifier</th>","            <th>Product</th>","            <th>Volume</th>","            <th>UoM</th>","        </tr>","","        {{#each response.data.production.data}}","            <tr>","                <th>{{sourceEntity.name}}</th>","                <th>{{sourceEntity.uid}}</th>","                <th>{{sourceEntity.type}}</th>","                <th>{{owningEntity.name}}</th>","                <th>{{owningEntity.uid}}</th>","                <th>{{owningEntity.type}}</th>","                <th>{{dataEntity.name}}</th>","                <th>{{dataEntity.uid}}</th>","                <th>{{dataEntity.type}}</th>","                <th>{{sourceStartTime}}</th>","                <th>{{sourceEndTime}}</th>","                 <th>{{dataStartTime}}</th>","                <th>{{dataEndTime}}</th>","                 <th>{{dataPeriod}}</th>","                 <th>{{name}}</th>","                <th>{{type}}</th>","                 <th>{{qualifier}}</th>","                <th>{{product}}</th>","                 <th>{{volume.Value}}</th>","                <th>{{volume.uom}}</th>","               ","            </tr>","        {{/each}}","    </table>","`;","","pm.visualizer.set(template, {","    // Pass the response body parsed as JSON as `data`","    response: pm.response.json()","});","",""],"type":"text/javascript"}}],"id":"55695b2c-1545-4f5b-82a8-1a084ddb5f00","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"description":"<p>OPC subscription key as supplied by NOROG</p>\n","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"graphql"},"url":"{{graphQueryAPI}}","description":"<p>Example query using GraphQL standard to query for injected volumes for the Åsgard field for a specified period of time (one month in 2001)</p>\n","urlObject":{"host":["{{graphQueryAPI}}"],"query":[],"variable":[]}},"response":[{"id":"0cb5171d-6c14-473c-b9a3-fae3a7164dcb","name":"Query get injected volumes registered for the field Åsgard in the given time period","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer xxx","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Ocp-Apim-Subscription-Key","value":"xxxx","description":"OPC subscription key as supplied by NOROG","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query{\n    production {\n        data(start: \"2000-12-31T23:00:00.000Z\" end: \"2001-01-30T23:00:00.000Z\" types: [\"injection\"] entity_names: [\"ÅSGARD\"] limit: 1000){\n            dataEntity{\n                name\n                uid\n                type\n            }\n            sourceEntity{ \n                    name \n                    uid\n                    type\n                \n            }\n            owningEntity{\n                name\n                uid\n                type\n            }\n            sourceStartTime\n            sourceEndTime \n            dataStartTime\n            dataEndTime\n            dataPeriod\n            name\n            type\n            product\n            qualifier\n            volume {\n                value\n                uom\n            }\n            sourceSystemName\n            sourceSystemVersion\n            quality\n        }\n        }\n        \n    }\n    \n\n","variables":""}},"url":"{{graphQueryAPI}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":""},{"key":"Date","value":"Sun, 26 Jan 2020 19:49:12 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"production\": {\n            \"data\": [\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6506/11-G-2\",\n                        \"uid\": \"NPD_DO_NOT_HAVE_IDS_FOR_WELLS\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated injection 6506/11-G-2\",\n                    \"type\": \"injection\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 1025,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6506/11-G-2\",\n                        \"uid\": \"NPD_DO_NOT_HAVE_IDS_FOR_WELLS\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated injection 6506/11-G-2\",\n                    \"type\": \"injection\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 1025,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection on ASGB\",\n                    \"type\": \"injection\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 1400,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Gas Injection on ASGB\",\n                    \"type\": \"injection\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 14979,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Gas Injection on ASGB\",\n                    \"type\": \"injection\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 160398,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection on ASGB\",\n                    \"type\": \"injection\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 1400,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Gas Injection on ASGB\",\n                    \"type\": \"injection\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 14979,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Gas Injection on ASGB\",\n                    \"type\": \"injection\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 160398,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"55695b2c-1545-4f5b-82a8-1a084ddb5f00"},{"name":"Query get produced volumes registered for the tie-in field Mikkel(which produces through other installation) in the given time period Copy","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","","var template = `","    <table>","        <tr>","            <th>Source entity</th>","            <th>Source entity uid</th>","            <th>Source entity type</th>","            <th>Owning entity</th>","            <th>Owning entity uid</th>","            <th>Owning entity type</th>","            <th>Reporting entity</th>","            <th>Reporting entity uid</th>","            <th>Reporting entity type</th>","            <th>Report start time</th>","            <th>Report end time</th>","            <th>Data start time</th>","            <th>Data end time</th>","            <th>Data period</th>","            <th>Flow name</th>","            <th>Type</th>","            <th>Qualifier</th>","            <th>Product</th>","            <th>Volume</th>","            <th>UoM</th>","        </tr>","","        {{#each response.data.production.data}}","            <tr>","                <th>{{sourceEntity.name}}</th>","                <th>{{sourceEntity.uid}}</th>","                <th>{{sourceEntity.type}}</th>","                <th>{{owningEntity.name}}</th>","                <th>{{owningEntity.uid}}</th>","                <th>{{owningEntity.type}}</th>","                <th>{{dataEntity.name}}</th>","                <th>{{dataEntity.uid}}</th>","                <th>{{dataEntity.type}}</th>","                <th>{{sourceStartTime}}</th>","                <th>{{sourceEndTime}}</th>","                 <th>{{dataStartTime}}</th>","                <th>{{dataEndTime}}</th>","                 <th>{{dataPeriod}}</th>","                 <th>{{name}}</th>","                <th>{{type}}</th>","                 <th>{{qualifier}}</th>","                <th>{{product}}</th>","                 <th>{{volume.Value}}</th>","                <th>{{volume.uom}}</th>","               ","            </tr>","        {{/each}}","    </table>","`;","","pm.visualizer.set(template, {","    // Pass the response body parsed as JSON as `data`","    response: pm.response.json()","});","",""],"type":"text/javascript"}}],"id":"000cb3b6-4be3-4955-8e22-87d555914c8b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"description":"<p>OPC subscription key as supplied by NOROG</p>\n","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"graphql"},"url":"{{graphQueryAPI}}","description":"<p>Example query using GraphQL standard to query for produced volumes for the Mikkel tie-in field for a specified period of time (one month in 2001).</p>\n<p>The example illustrates how volumes for a tie-in would be captured along all of the reporting entities where the volumes is actually measured as belonging to the given field.</p>\n<p>In this example it is clear that Mikkel has been reported through the sourceEntity of the field Åsgard as this is the operating host.</p>\n","urlObject":{"host":["{{graphQueryAPI}}"],"query":[],"variable":[]}},"response":[{"id":"1e170298-4061-4bd5-882c-fb22ff9ac217","name":"Query get produced volumes registered for the tie-in field Mikkel(which produces through other installation) in the given time period Copy","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"description":"OPC subscription key as supplied by NOROG","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"graphql","graphql":{"query":"query{\n    production {\n        data(start: \"2000-12-31T23:00:00.000Z\" end: \"2001-01-30T23:00:00.000Z\" types: [\"production\"] entity_names: [\"MIKKEL\"] limit: 1000){\n            dataEntity{\n                name\n                uid\n                type\n            }\n            sourceEntity{ \n                    name \n                    uid\n                    type\n                \n            }\n            owningEntity{\n                name\n                uid\n                type\n            }\n            sourceStartTime\n            sourceEndTime \n            dataStartTime\n            dataEndTime\n            dataPeriod\n            name\n            type\n            product\n            qualifier\n            volume {\n                value\n                uom\n            }\n            sourceSystemName\n            sourceSystemVersion\n            quality\n        }\n        }\n        \n    }\n    \n\n","variables":""}},"url":"{{graphQueryAPI}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":""},{"key":"Date","value":"Sun, 26 Jan 2020 19:46:51 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"production\": {\n            \"data\": [\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond Production Mikkel on ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 223,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Cond Production Mikkel on ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 2261,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Cond Production Mikkel on ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 11597,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-13T07:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T10:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"product\": null,\n                    \"qualifier\": null,\n                    \"volume\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-13T03:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"product\": null,\n                    \"qualifier\": null,\n                    \"volume\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond Production Mikkel on ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 223,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Cond Production Mikkel on ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 2261,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Cond Production Mikkel on ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 11597,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T07:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T10:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"product\": null,\n                    \"qualifier\": null,\n                    \"volume\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"product\": null,\n                    \"qualifier\": null,\n                    \"volume\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL A\",\n                        \"uid\": \"283509\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond Production from Mikkel A to ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 241,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL A\",\n                        \"uid\": \"283509\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Cond Production from Mikkel A to ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 2290,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL A\",\n                        \"uid\": \"283509\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Cond Production from Mikkel A to ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 15391,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL B\",\n                        \"uid\": \"283537\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond Production from Mikkel B to ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 371,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL B\",\n                        \"uid\": \"283537\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Cond Production from Mikkel B to ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 3051,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL B\",\n                        \"uid\": \"283537\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Cond Production from Mikkel B to ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 16842,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL A\",\n                        \"uid\": \"283509\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond Production from Mikkel A to ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 241,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL A\",\n                        \"uid\": \"283509\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Cond Production from Mikkel A to ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 2290,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL A\",\n                        \"uid\": \"283509\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Cond Production from Mikkel A to ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 15391,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL B\",\n                        \"uid\": \"283537\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond Production from Mikkel B to ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 371,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL B\",\n                        \"uid\": \"283537\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"month to date\",\n                    \"name\": \"Cond Production from Mikkel B to ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 3051,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL B\",\n                        \"uid\": \"283537\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2000-12-31T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"year to date\",\n                    \"name\": \"Cond Production from Mikkel B to ASGB\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 16842,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"000cb3b6-4be3-4955-8e22-87d555914c8b"},{"name":"Query get produced volumes for 2 wells on the field Åsgard","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","","var template = `","    <table>","        <tr>","            <th>Source entity</th>","            <th>Source entity uid</th>","            <th>Source entity type</th>","            <th>Owning entity</th>","            <th>Owning entity uid</th>","            <th>Owning entity type</th>","            <th>Reporting entity</th>","            <th>Reporting entity uid</th>","            <th>Reporting entity type</th>","            <th>Report start time</th>","            <th>Report end time</th>","            <th>Data start time</th>","            <th>Data end time</th>","            <th>Data period</th>","            <th>Flow name</th>","            <th>Type</th>","            <th>Qualifier</th>","            <th>Product</th>","            <th>Volume</th>","            <th>UoM</th>","        </tr>","","        {{#each response.data.production.data}}","            <tr>","                <th>{{sourceEntity.name}}</th>","                <th>{{sourceEntity.uid}}</th>","                <th>{{sourceEntity.type}}</th>","                <th>{{owningEntity.name}}</th>","                <th>{{owningEntity.uid}}</th>","                <th>{{owningEntity.type}}</th>","                <th>{{dataEntity.name}}</th>","                <th>{{dataEntity.uid}}</th>","                <th>{{dataEntity.type}}</th>","                <th>{{sourceStartTime}}</th>","                <th>{{sourceEndTime}}</th>","                 <th>{{dataStartTime}}</th>","                <th>{{dataEndTime}}</th>","                 <th>{{dataPeriod}}</th>","                 <th>{{name}}</th>","                <th>{{type}}</th>","                 <th>{{qualifier}}</th>","                <th>{{product}}</th>","                 <th>{{volume.Value}}</th>","                <th>{{volume.uom}}</th>","               ","            </tr>","        {{/each}}","    </table>","`;","","pm.visualizer.set(template, {","    // Pass the response body parsed as JSON as `data`","    response: pm.response.json()","});","",""],"type":"text/javascript"}}],"id":"1c5ec3d2-268d-431a-8695-51e98d7689ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"description":"<p>OPC subscription key as supplied by NOROG</p>\n","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"graphql","graphql":{"query":"query{\n    production {\n        data(start: \"2000-12-31T23:00:00.000Z\" end: \"2001-01-30T23:00:00.000Z\" types: [\"production\"] entity_names: [\"6506/12-J-3\",\"6506/12-PB-1\"] limit: 1000){\n            dataEntity{\n                name\n                uid\n                type\n            }\n            sourceEntity{ \n                    name \n                    uid\n                    type\n                \n            }\n            owningEntity{\n                name\n                uid\n                type\n            }\n            sourceStartTime\n            sourceEndTime \n            dataStartTime\n            dataEndTime\n            dataPeriod\n            name\n            type\n            product\n            qualifier\n            volume {\n                value\n                uom\n            }\n            wellMeasurements { \n                \n                \n                chokeSize { \n                    uom \n                    value\n                \n                } \n                 \n                wht \n                { \n                    uom \n                    value\n                    \n                }\n            }\n            sourceSystemName\n            sourceSystemVersion\n            quality\n        }\n        }\n        \n    }\n    \n\n\n","variables":""}},"url":"{{graphQueryAPI}}","description":"<p>Example query using GraphQL standard to query for produced volumes for produced volumes on a set of wells for a specified period of time (one month in 2001). The example also shows how to get e.g. choke, whp, bht ++ from the well measurements.</p>\n","urlObject":{"host":["{{graphQueryAPI}}"],"query":[],"variable":[]}},"response":[{"id":"a8d4f61b-e72b-4e3e-a401-8b7b71b7b38b","name":"Query get produced volumes for 2 wells on the field Åsgard","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"description":"OPC subscription key as supplied by NOROG","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"graphql","graphql":{"query":"query{\n    production {\n        data(start: \"2000-12-31T23:00:00.000Z\" end: \"2001-01-30T23:00:00.000Z\" types: [\"production\"] entity_names: [\"6506/12-J-3\",\"6506/12-PB-1\"] limit: 1000){\n            dataEntity{\n                name\n                uid\n                type\n            }\n            sourceEntity{ \n                    name \n                    uid\n                    type\n                \n            }\n            owningEntity{\n                name\n                uid\n                type\n            }\n            sourceStartTime\n            sourceEndTime \n            dataStartTime\n            dataEndTime\n            dataPeriod\n            name\n            type\n            product\n            qualifier\n            volume {\n                value\n                uom\n            }\n            measurements { \n                bhp { \n                    uom \n                    value\n                \n                }\n                chokeSize { \n                    uom \n                    value\n                \n                } \n                whp { \n                    uom \n                    value\n                \n                } \n                wht \n                { \n                    uom \n                    value\n                    \n                }\n            }\n            sourceSystemName\n            sourceSystemVersion\n            quality\n        }\n        }\n        \n    }\n    \n\n\n","variables":""}},"url":"{{graphQueryAPI}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":""},{"key":"Date","value":"Sun, 26 Jan 2020 19:55:48 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"production\": {\n            \"data\": [\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6506/12-J-3\",\n                        \"uid\": \"NPD_DO_NOT_HAVE_IDS_FOR_WELLS\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6506/11-G-3\",\n                    \"type\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 366,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"measurements\": {\n                        \"bhp\": null,\n                        \"chokeSize\": null,\n                        \"whp\": null,\n                        \"wht\": null\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6506/12-J-3\",\n                        \"uid\": \"NPD_DO_NOT_HAVE_IDS_FOR_WELLS\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6506/11-G-3\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 347,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"measurements\": {\n                        \"bhp\": null,\n                        \"chokeSize\": null,\n                        \"whp\": null,\n                        \"wht\": null\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6506/12-J-3\",\n                        \"uid\": \"NPD_DO_NOT_HAVE_IDS_FOR_WELLS\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6506/11-G-3\",\n                    \"type\": \"production\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 1958,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"measurements\": {\n                        \"bhp\": null,\n                        \"chokeSize\": null,\n                        \"whp\": null,\n                        \"wht\": null\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6506/12-J-3\",\n                        \"uid\": \"NPD_DO_NOT_HAVE_IDS_FOR_WELLS\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6506/11-G-3\",\n                    \"type\": \"production\",\n                    \"product\": \"water\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 82,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"measurements\": {\n                        \"bhp\": null,\n                        \"chokeSize\": null,\n                        \"whp\": null,\n                        \"wht\": null\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6506/12-J-3\",\n                        \"uid\": \"NPD_DO_NOT_HAVE_IDS_FOR_WELLS\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6506/11-G-3\",\n                    \"type\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 366,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"measurements\": {\n                        \"bhp\": null,\n                        \"chokeSize\": null,\n                        \"whp\": null,\n                        \"wht\": null\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6506/12-J-3\",\n                        \"uid\": \"NPD_DO_NOT_HAVE_IDS_FOR_WELLS\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6506/11-G-3\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 347,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"measurements\": {\n                        \"bhp\": null,\n                        \"chokeSize\": null,\n                        \"whp\": null,\n                        \"wht\": null\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6506/12-J-3\",\n                        \"uid\": \"NPD_DO_NOT_HAVE_IDS_FOR_WELLS\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6506/11-G-3\",\n                    \"type\": \"production\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 1958,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"measurements\": {\n                        \"bhp\": null,\n                        \"chokeSize\": null,\n                        \"whp\": null,\n                        \"wht\": null\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6506/12-J-3\",\n                        \"uid\": \"NPD_DO_NOT_HAVE_IDS_FOR_WELLS\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6506/11-G-3\",\n                    \"type\": \"production\",\n                    \"product\": \"water\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 82,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"measurements\": {\n                        \"bhp\": null,\n                        \"chokeSize\": null,\n                        \"whp\": null,\n                        \"wht\": null\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6506/12-PB-1\",\n                        \"uid\": \"NPD_DO_NOT_HAVE_IDS_FOR_WELLS\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6506/12-PB-1\",\n                    \"type\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 396,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"measurements\": {\n                        \"bhp\": null,\n                        \"chokeSize\": null,\n                        \"whp\": null,\n                        \"wht\": null\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6506/12-PB-1\",\n                        \"uid\": \"NPD_DO_NOT_HAVE_IDS_FOR_WELLS\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6506/12-PB-1\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 230,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"measurements\": {\n                        \"bhp\": null,\n                        \"chokeSize\": null,\n                        \"whp\": null,\n                        \"wht\": null\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6506/12-PB-1\",\n                        \"uid\": \"NPD_DO_NOT_HAVE_IDS_FOR_WELLS\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6506/12-PB-1\",\n                    \"type\": \"production\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 1520,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"measurements\": {\n                        \"bhp\": null,\n                        \"chokeSize\": null,\n                        \"whp\": null,\n                        \"wht\": null\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6506/12-PB-1\",\n                        \"uid\": \"NPD_DO_NOT_HAVE_IDS_FOR_WELLS\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-14T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-13T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6506/12-PB-1\",\n                    \"type\": \"production\",\n                    \"product\": \"water\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 19,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"measurements\": {\n                        \"bhp\": null,\n                        \"chokeSize\": null,\n                        \"whp\": null,\n                        \"wht\": null\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6506/12-PB-1\",\n                        \"uid\": \"NPD_DO_NOT_HAVE_IDS_FOR_WELLS\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6506/12-PB-1\",\n                    \"type\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 396,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"measurements\": {\n                        \"bhp\": null,\n                        \"chokeSize\": null,\n                        \"whp\": null,\n                        \"wht\": null\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6506/12-PB-1\",\n                        \"uid\": \"NPD_DO_NOT_HAVE_IDS_FOR_WELLS\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6506/12-PB-1\",\n                    \"type\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 230,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"measurements\": {\n                        \"bhp\": null,\n                        \"chokeSize\": null,\n                        \"whp\": null,\n                        \"wht\": null\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6506/12-PB-1\",\n                        \"uid\": \"NPD_DO_NOT_HAVE_IDS_FOR_WELLS\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6506/12-PB-1\",\n                    \"type\": \"production\",\n                    \"product\": \"gas\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 1520,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"measurements\": {\n                        \"bhp\": null,\n                        \"chokeSize\": null,\n                        \"whp\": null,\n                        \"wht\": null\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6506/12-PB-1\",\n                        \"uid\": \"NPD_DO_NOT_HAVE_IDS_FOR_WELLS\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2001-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2001-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2001-01-11T23:00:00Z\",\n                    \"dataEndTime\": \"2001-01-12T23:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Allocated production 6506/12-PB-1\",\n                    \"type\": \"production\",\n                    \"product\": \"water\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 19,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"measurements\": {\n                        \"bhp\": null,\n                        \"chokeSize\": null,\n                        \"whp\": null,\n                        \"wht\": null\n                    },\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\"\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"1c5ec3d2-268d-431a-8695-51e98d7689ec"},{"name":"Query get produced volumes for produced saleable and inventory volumes for the field Troll as reported on the terminal Mongstad","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","","var template = `","    <table>","        <tr>","            <th>Created</th>","            <th>Source entity</th>","            <th>Source entity uid</th>","            <th>Source entity type</th>","            <th>Owning entity</th>","            <th>Owning entity uid</th>","            <th>Owning entity type</th>","            <th>Reporting entity</th>","            <th>Reporting entity uid</th>","            <th>Reporting entity type</th>","            <th>Report start time</th>","            <th>Report end time</th>","            <th>Data start time</th>","            <th>Data end time</th>","            <th>Data period</th>","            <th>Flow name</th>","            <th>Type</th>","            <th>Qualifier</th>","            <th>Product</th>","            <th>Volume</th>","            <th>UoM</th>","            <th>Density</th>","            <th>UoM</th>","            <th>Mass</th>","            <th>UoM</th>","        </tr>","","        {{#each response.data.production.data}}","            <tr>","                <th>{{created}}</th>","                <th>{{sourceEntity.name}}</th>","                <th>{{sourceEntity.uid}}</th>","                <th>{{sourceEntity.type}}</th>","                <th>{{owningEntity.name}}</th>","                <th>{{owningEntity.uid}}</th>","                <th>{{owningEntity.type}}</th>","                <th>{{dataEntity.name}}</th>","                <th>{{dataEntity.uid}}</th>","                <th>{{dataEntity.type}}</th>","                <th>{{sourceStartTime}}</th>","                <th>{{sourceEndTime}}</th>","                 <th>{{dataStartTime}}</th>","                <th>{{dataEndTime}}</th>","                 <th>{{dataPeriod}}</th>","                 <th>{{name}}</th>","                <th>{{type}}</th>","                 <th>{{qualifier}}</th>","                <th>{{product}}</th>","                 <th>{{volume.Value}}</th>","                <th>{{volume.uom}}</th>","                 <th>{{measurements.density.value}}</th>","                <th>{{measurements.density.uom}}</th>","                <th>{{measurements.mass.value}}</th>","                <th>{{measurements.mass.uom}}</th>","               ","            </tr>","        {{/each}}","    </table>","`;","","pm.visualizer.set(template, {","    // Pass the response body parsed as JSON as `data`","    response: pm.response.json()","});","",""],"type":"text/javascript"}}],"id":"f7fe680a-3387-4e4f-99aa-bb4d78384a4b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"description":"<p>OPC subscription key as supplied by NOROG</p>\n","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"graphql"},"url":"{{graphQueryAPI}}","description":"<p>Example query using GraphQL standard to query for volumes registered as belonging to the Troll field but in this case the volumes have actually not been reported from the field itself it rathers comes from the onshore terminal.</p>\n<p>The query also includes data for density and mass as measured on the terminal.</p>\n","urlObject":{"host":["{{graphQueryAPI}}"],"query":[],"variable":[]}},"response":[{"id":"3135e951-b03d-4f35-a47d-14bc12e27a16","name":"Query get produced volumes for produced saleable and inventory volumes for the field Troll","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"description":"OPC subscription key as supplied by NOROG","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"graphql","graphql":{"query":"query{\n    production {\n        data(start: \"1999-05-31T22:00:00.000Z\" end: \"1999-06-30T23:00:00.000Z\" types: [\"production\",\"inventory\"] entity_names: [\"TROLL\"] limit: 1000){\n            created\n            dataEntity{\n                name\n                uid\n                type\n            }\n            sourceEntity{ \n                    name \n                    uid\n                    type\n                \n            }\n            owningEntity{\n                name\n                uid\n                type\n            }\n            sourceStartTime\n            sourceEndTime \n            dataStartTime\n            dataEndTime\n            dataPeriod\n            name\n            type\n            product\n            qualifier\n            volume {\n                value\n                uom\n            }\n            measurements{\n              density {\n                uom\n                value\n              }\n              mass {\n                uom\n                value\n              }\n            }\n            sourceSystemName\n            sourceSystemVersion\n            quality\n        }\n        }\n        \n    }\n    \n\n\n","variables":""}},"url":"{{graphQueryAPI}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":""},{"key":"Date","value":"Sun, 26 Jan 2020 20:20:55 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"production\": {\n            \"data\": [\n                {\n                    \"created\": \"2020-01-26T20:05:37Z\",\n                    \"dataEntity\": {\n                        \"name\": \"TROLL\",\n                        \"uid\": \"46437\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"MONGSTAD\",\n                        \"uid\": \"286701\",\n                        \"type\": \"terminal\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"MONGSTAD\",\n                        \"uid\": \"286701\",\n                        \"type\": \"terminal\"\n                    },\n                    \"sourceStartTime\": \"1999-06-01T00:00:00Z\",\n                    \"sourceEndTime\": \"1999-06-30T23:59:59Z\",\n                    \"dataStartTime\": \"1999-06-01T00:00:00Z\",\n                    \"dataEndTime\": \"1999-06-30T00:00:00Z\",\n                    \"dataPeriod\": \"month\",\n                    \"name\": \"FIELD_TROLL_PRODUCTION_SALEABLE\",\n                    \"type\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"qualifier\": \"saleable\",\n                    \"volume\": {\n                        \"value\": 11.07,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"measurements\": {\n                        \"density\": {\n                            \"uom\": \"kg/m3\",\n                            \"value\": 23.26\n                        },\n                        \"mass\": {\n                            \"uom\": \"kg\",\n                            \"value\": 12.14\n                        }\n                    },\n                    \"sourceSystemName\": \"MPRML-GOV\",\n                    \"sourceSystemVersion\": 1,\n                    \"quality\": \"official\"\n                },\n                {\n                    \"created\": \"2020-01-26T20:05:37Z\",\n                    \"dataEntity\": {\n                        \"name\": \"TROLL\",\n                        \"uid\": \"46437\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"MONGSTAD\",\n                        \"uid\": \"286701\",\n                        \"type\": \"terminal\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"MONGSTAD\",\n                        \"uid\": \"286701\",\n                        \"type\": \"terminal\"\n                    },\n                    \"sourceStartTime\": \"1999-06-01T00:00:00Z\",\n                    \"sourceEndTime\": \"1999-06-30T23:59:59Z\",\n                    \"dataStartTime\": \"1999-06-01T00:00:00Z\",\n                    \"dataEndTime\": \"1999-06-30T00:00:00Z\",\n                    \"dataPeriod\": \"month\",\n                    \"name\": \"FIELD_TROLL_INVENTORY_ALLOCATED\",\n                    \"type\": \"inventory\",\n                    \"product\": \"oil - net\",\n                    \"qualifier\": \"allocated\",\n                    \"volume\": {\n                        \"value\": 1111.48,\n                        \"uom\": \"Sm3\"\n                    },\n                    \"measurements\": {\n                        \"density\": {\n                            \"uom\": \"kg/m3\",\n                            \"value\": 13.622\n                        },\n                        \"mass\": {\n                            \"uom\": \"kg\",\n                            \"value\": 11.51\n                        }\n                    },\n                    \"sourceSystemName\": \"MPRML-GOV\",\n                    \"sourceSystemVersion\": 1,\n                    \"quality\": \"official\"\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"f7fe680a-3387-4e4f-99aa-bb4d78384a4b"},{"name":"Query operational comments on Åsgard A platform for a given period of time","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","","var template = `","    <table>","        <tr>","            <th>Reporting entity</th>","            <th>Reporting entity kind</th>","            <th>Data entity</th>","            <th>Data entity kind</th>","            <th>Data entity uid</th>","            <th>Report start</th>","            <th>Report end</th>","            <th>Comment start</th>","            <th>Comment end</th>","            <th>Type</th>","            <th>Comment</th>","        </tr>","","        {{#each response.data.drilling.statusInfo}}","            <tr>","                <th>{{sourceEntity.name}}</th>","                <th>{{sourceEntity.uid}}</th>","                <th>{{dataStartTime}}</th>","                <th>{{dataEndTime}}</th>","                <th>{{sum24Hrs}}</th>","                <th>{{forecast24Hrs}}</th>","            </tr>","        {{/each}}","    </table>","`;","","pm.visualizer.set(template, {","    // Pass the response body parsed as JSON as `data`","    response: pm.response.json()","});","",""],"type":"text/javascript"}}],"id":"2d46d63f-eadc-4d19-9b1f-bb2f606e9eb5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"description":"<p>OPC subscription key as supplied by NOROG</p>\n","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"graphql"},"url":"{{graphQueryAPI}}","description":"<p>Example query using GraphQL standard to query for operational comments on the Åsgard A platform for a specified period of time (one month in 2001)</p>\n","urlObject":{"host":["{{graphQueryAPI}}"],"query":[],"variable":[]}},"response":[{"id":"a1c504da-2fa8-4dbb-979b-e1d4df970f4d","name":"Query operational comments on Åsgard A platform for a given period of time","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"description":"OPC subscription key as supplied by NOROG","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"graphql","graphql":{"query":"query{\n    production {\n        data(start: \"2000-01-15T23:00:00.000Z\" end: \"2017-01-30T23:00:00.000Z\" report_data_types: [\"InstallationData\"] entity_names: [\"ÅSGARD\"] limit: 1000){\n            dataEntity{\n                name\n                uid\n                type\n            }\n            sourceEntity{ \n                    name \n                    uid\n                    type\n                \n            }\n            sourceStartTime\n            sourceEndTime \n            dataStartTime\n            dataEndTime\n            dataPeriod\n            type \n            comment\n            \n        }\n        }\n        \n    }\n    \n\n\n","variables":""}},"url":"{{graphQueryAPI}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":"appId=cid-v1:b3cd985b-9ef8-4b6a-8751-714f67ebcf8d"},{"key":"X-Frame-Options","value":"deny"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Date","value":"Tue, 04 Feb 2020 07:45:25 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"production\": {\n            \"data\": [\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T12:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T13:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T17:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"The secular cooling that must someday overtake our planet has already gone far indeed with our neighbour.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"He completely abandoned the child of his marriage with Adelaida Ivanovna, not from malice, nor because of his matrimoni- al grievances, but simply because he forgot him.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD B\",\n                        \"uid\": \"280121\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T01:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T06:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"One dog rolled before him, well-nigh slashed in half; but a second had him by the thigh, a third gripped his collar be- hind, and a fourth had the blade of the sword between its teeth, tasting its own blood.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"MIKKEL\",\n                        \"uid\": \"1630514\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T04:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"Then followed a battle of looks between them, but the captain soon knuckled under, put up his weapon, and resumed his seat, grumbling like a beaten dog.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"ÅSGARD A\",\n                        \"uid\": \"279785\",\n                        \"type\": \"platform\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-13T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-12T03:00:00Z\",\n                    \"dataEndTime\": \"2017-01-12T08:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"type\": \"production\",\n                    \"comment\": \"It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.\"\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"2d46d63f-eadc-4d19-9b1f-bb2f606e9eb5"},{"name":"Query for welltests for a given well","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","","var template = `","    <table>","        <tr>","            <th>Reporting entity</th>","            <th>Reporting entity kind</th>","            <th>Data entity</th>","            <th>Data entity kind</th>","            <th>Data entity uid</th>","            <th>Report start</th>","            <th>Report end</th>","            <th>Comment start</th>","            <th>Comment end</th>","            <th>Type</th>","            <th>Comment</th>","        </tr>","","        {{#each response.data.drilling.statusInfo}}","            <tr>","                <th>{{sourceEntity.name}}</th>","                <th>{{sourceEntity.uid}}</th>","                <th>{{dataStartTime}}</th>","                <th>{{dataEndTime}}</th>","                <th>{{sum24Hrs}}</th>","                <th>{{forecast24Hrs}}</th>","            </tr>","        {{/each}}","    </table>","`;","","pm.visualizer.set(template, {","    // Pass the response body parsed as JSON as `data`","    response: pm.response.json()","});","",""],"type":"text/javascript"}}],"id":"b020af19-8068-4476-9e2b-ff5aaa11f9d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"description":"<p>OPC subscription key as supplied by NOROG</p>\n","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"graphql"},"url":"{{graphQueryAPI}}","description":"<p>Example query using GraphQL standard to query for a welltest on a given well</p>\n","urlObject":{"host":["{{graphQueryAPI}}"],"query":[],"variable":[]}},"response":[{"id":"0a4a7867-6c90-4263-8fc1-98f009852bc5","name":"Query for welltests for a given well","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"description":"OPC subscription key as supplied by NOROG","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"graphql","graphql":{"query":"query{\n    production {\n        data(start: \"2000-01-15T23:00:00.000Z\" end: \"2017-01-30T23:00:00.000Z\" report_data_types: [\"WellTests\"] entity_names: [\"6407/2-Z-2\"] limit: 1000){\n            dataEntity{\n                name\n                uid\n                type\n            }\n            sourceEntity{ \n                    name \n                    uid\n                    type\n                \n            }\n            sourceStartTime\n            sourceEndTime \n            dataStartTime\n            dataEndTime\n            dataPeriod\n            \n            rates {\n                oil{\n                    value\n                    uom\n                }\n                gas{\n                    value\n                    uom\n                }\n                water{\n                    value\n                    uom\n                }\n            }\n            \n        }\n        }\n        \n    }\n    \n\n\n","variables":""}},"url":"{{graphQueryAPI}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":"appId=cid-v1:b3cd985b-9ef8-4b6a-8751-714f67ebcf8d"},{"key":"X-Frame-Options","value":"deny"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Date","value":"Tue, 04 Feb 2020 07:59:07 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"production\": {\n            \"data\": [\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6407/2-Z-2\",\n                        \"uid\": \"\",\n                        \"type\": \"well\"\n                    },\n                    \"sourceEntity\": {\n                        \"name\": \"ÅSGARD\",\n                        \"uid\": \"43765\",\n                        \"type\": \"field\"\n                    },\n                    \"sourceStartTime\": \"2017-01-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2017-01-20T00:00:00Z\",\n                    \"dataStartTime\": \"2017-01-19T22:00:00Z\",\n                    \"dataEndTime\": \"2017-01-20T02:00:00Z\",\n                    \"dataPeriod\": \"day\",\n                    \"rates\": {\n                        \"oil\": {\n                            \"value\": 551.9,\n                            \"uom\": \"Sm3/d\"\n                        },\n                        \"gas\": {\n                            \"value\": 2312.8,\n                            \"uom\": \"Sm3/d\"\n                        },\n                        \"water\": {\n                            \"value\": 18.8,\n                            \"uom\": \"Sm3/d\"\n                        }\n                    }\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"b020af19-8068-4476-9e2b-ff5aaa11f9d8"},{"name":"Query consume on Åsgard","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","","var template = `","    <table>","        <tr>","            <th>Reporting entity</th>","            <th>Reporting entity kind</th>","            <th>Data entity</th>","            <th>Data entity kind</th>","            <th>Data entity uid</th>","            <th>Report start</th>","            <th>Report end</th>","            <th>Comment start</th>","            <th>Comment end</th>","            <th>Type</th>","            <th>Comment</th>","        </tr>","","        {{#each response.data.drilling.statusInfo}}","            <tr>","                <th>{{sourceEntity.name}}</th>","                <th>{{sourceEntity.uid}}</th>","                <th>{{dataStartTime}}</th>","                <th>{{dataEndTime}}</th>","                <th>{{sum24Hrs}}</th>","                <th>{{forecast24Hrs}}</th>","            </tr>","        {{/each}}","    </table>","`;","","pm.visualizer.set(template, {","    // Pass the response body parsed as JSON as `data`","    response: pm.response.json()","});","",""],"type":"text/javascript"}}],"id":"477fd50b-7a43-4cfd-bc60-16d05a1a1d70","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"description":"<p>OPC subscription key as supplied by NOROG</p>\n","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"graphql"},"url":"{{graphQueryAPI}}","description":"<p>Example query using GraphQL standard to query for operational comments on the Åsgard A platform for a specified period of time (one month in 2001)</p>\n","urlObject":{"host":["{{graphQueryAPI}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"477fd50b-7a43-4cfd-bc60-16d05a1a1d70"}],"id":"7755ad60-2186-43ee-88ce-fea11ff7181b","_postman_id":"7755ad60-2186-43ee-88ce-fea11ff7181b","description":""},{"name":"Drilling queries","item":[{"name":"Query wellbore status summary and forecast for 24 hrs","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","","var template = `","    <table>","        <tr>","            <th>Wellbore Name</th>","            <th>Wellbore Uid</th>","            <th>Start Time</th>","            <th>End Time</th>","            <th>Summary 24 hours</th>","            <th>Forecast 24 hours</th>","        </tr>","","        {{#each response.data.drilling.statusInfo}}","            <tr>","                <th>{{sourceEntity.name}}</th>","                <th>{{sourceEntity.uid}}</th>","                <th>{{dataStartTime}}</th>","                <th>{{dataEndTime}}</th>","                <th>{{sum24Hrs}}</th>","                <th>{{forecast24Hrs}}</th>","            </tr>","        {{/each}}","    </table>","`;","","pm.visualizer.set(template, {","    // Pass the response body parsed as JSON as `data`","    response: pm.response.json()","});","",""],"type":"text/javascript"}}],"id":"185493fe-0590-48e4-a3d8-b9680b31e5ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"description":"<p>OPC subscription key as supplied by NOROG</p>\n","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"graphql"},"url":"{{graphQueryAPI}}","description":"<p>Example query using GraphQL standard to query for wellbore operational status in the given period of time and as this query has no wellbores as a filter it means it will return the information on all wellbore the user has access to and that has data in the specified period of time</p>\n","urlObject":{"host":["{{graphQueryAPI}}"],"query":[],"variable":[]}},"response":[{"id":"bbe1791f-526e-46e7-bab7-eeba5b4e3012","name":"Graph query wellbore status info","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Report-Type","type":"text","value":"DPR20"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"graphql","graphql":{"query":"query{\n    drilling {\n        statusInfo(period_after: \"2010-08-09T22:00:00.000Z\" period_before: \"2010-08-13T21:59:59.999Z\"){\n            sourceEntity{\n                name\n                uid\n            }\n            dataStartTime\n            dataEndTime\n            sum24Hrs\n            forecast24Hrs\n        }\n        \n    }\n    \n}","variables":""}},"url":"{{graphQueryAPI}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":""},{"key":"Date","value":"Mon, 20 Jan 2020 13:51:13 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"drilling\": {\n            \"statusInfo\": [\n                {\n                    \"sourceEntity\": {\n                        \"name\": \"31/2-P-24 CY2H\",\n                        \"uid\": \"8817\"\n                    },\n                    \"dataStartTime\": \"2010-08-10T22:00:00Z\",\n                    \"dataEndTime\": \"2010-08-11T22:00:00Z\",\n                    \"sum24Hrs\": \"Put pizza in the oven\",\n                    \"forecast24Hrs\": \"Eat pizza\"\n                },\n                {\n                    \"sourceEntity\": {\n                        \"name\": \"31/2-P-24 CY2H\",\n                        \"uid\": \"8817\"\n                    },\n                    \"dataStartTime\": \"2010-08-09T22:00:00Z\",\n                    \"dataEndTime\": \"2010-08-10T22:00:00Z\",\n                    \"sum24Hrs\": \"Put pizza in the oven\",\n                    \"forecast24Hrs\": \"Eat pizza\"\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"185493fe-0590-48e4-a3d8-b9680b31e5ba"},{"name":"Query for wellbore status for a period of time using the well name as an entry","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","","var template = `","    <table>","        <tr>","            <th>Wellbore Name</th>","            <th>Wellbore Uid</th>","            <th>Start Time</th>","            <th>End Time</th>","            <th>Summary 24 hours</th>","            <th>Forecast 24 hours</th>","        </tr>","","        {{#each response.data.drilling.statusInfo}}","            <tr>","                <th>{{sourceEntity.name}}</th>","                <th>{{sourceEntity.uid}}</th>","                <th>{{dataStartTime}}</th>","                <th>{{dataEndTime}}</th>","                <th>{{sum24Hrs}}</th>","                <th>{{forecast24Hrs}}</th>","            </tr>","        {{/each}}","    </table>","`;","","pm.visualizer.set(template, {","    // Pass the response body parsed as JSON as `data`","    response: pm.response.json()","});","",""],"type":"text/javascript"}}],"id":"dddeda13-52d9-4817-854a-d48922166a5e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"graphql"},"url":"{{graphQueryAPI}}","description":"<p>Example query using GraphQL standard to query wellbore status information in a given period of time and using a regular expression as a query mechnism to get all wellbores belongin to a given well (based on slot naming principles). E.g. the attached query would query for all wellbores in the given period of time starting with 15/6-B-2 in the name (hence it would return all wellbores staring with this name). In this case the well 15/6-B-2 has registered 2 wellbores and data is returned on both of them (15/6-B-2 and 15/6-B-2 A)</p>\n","urlObject":{"host":["{{graphQueryAPI}}"],"query":[],"variable":[]}},"response":[{"id":"5de73056-3ffc-4a22-bd24-97018f93856f","name":"Graph query for wellbore status for a period of time using the well name as an entry","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"graphql","graphql":{"query":"query {\r\n    drilling {\r\n      statusInfo (period_after: \"2004-12-31T22:00:00.000Z\" period_before: \"2005-01-05T21:59:59.999Z\" entityNameRx: [\"/^15\\\\/6-B-2($| .*)/\"]){\r\n    dataEntity{\r\n            name \r\n            namingSystem \r\n            type \r\n            uid\r\n        \r\n    }\r\n    created\r\n    dataStartTime\r\n    dataEndTime\r\n    dataPeriod\r\n    dataRecordType\r\n    sum24Hrs\r\n    forecast24Hrs\r\n    }\r\n    }\r\n  }","variables":""}},"url":"{{graphQueryAPI}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":""},{"key":"Date","value":"Wed, 22 Jan 2020 12:47:22 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"drilling\": {\n            \"statusInfo\": [\n                {\n                    \"dataEntity\": {\n                        \"name\": \"15/6-B-2 A\",\n                        \"namingSystem\": \"NPD\",\n                        \"type\": \"wellbore\",\n                        \"uid\": \"7736\"\n                    },\n                    \"created\": \"2020-01-22T12:44:07Z\",\n                    \"dataStartTime\": \"2005-01-02T00:00:00Z\",\n                    \"dataEndTime\": \"2005-01-02T23:59:59Z\",\n                    \"dataPeriod\": \"day\",\n                    \"dataRecordType\": \"daily-drilling-report\",\n                    \"sum24Hrs\": \"A summary that sumarizes the activities performed and the status of the ongoing activities from the reporting period. Please note that this is a test report and contains test values only.\",\n                    \"forecast24Hrs\": \"A summary that sumarizes the planned activities the next reporting period.\"\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"15/6-B-2\",\n                        \"namingSystem\": \"NPD\",\n                        \"type\": \"wellbore\",\n                        \"uid\": \"7735\"\n                    },\n                    \"created\": \"2020-01-22T12:41:55Z\",\n                    \"dataStartTime\": \"2005-01-01T00:00:00Z\",\n                    \"dataEndTime\": \"2005-01-01T23:59:59Z\",\n                    \"dataPeriod\": \"day\",\n                    \"dataRecordType\": \"daily-drilling-report\",\n                    \"sum24Hrs\": \"A summary that sumarizes the activities performed and the status of the ongoing activities from the reporting period. Please note that this is a test report and contains test values only.\",\n                    \"forecast24Hrs\": \"A summary that sumarizes the planned activities the next reporting period.\"\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"dddeda13-52d9-4817-854a-d48922166a5e"},{"name":"Query for wellbore bit records for a period of time","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","","var template = `","    <table>","        <tr>","            <th>Wellbore Name</th>","            <th>Wellbore Uid</th>","            <th>Start Time</th>","            <th>End Time</th>","            <th>Summary 24 hours</th>","            <th>Forecast 24 hours</th>","        </tr>","","        {{#each response.data.drilling.statusInfo}}","            <tr>","                <th>{{sourceEntity.name}}</th>","                <th>{{sourceEntity.uid}}</th>","                <th>{{dataStartTime}}</th>","                <th>{{dataEndTime}}</th>","                <th>{{sum24Hrs}}</th>","                <th>{{forecast24Hrs}}</th>","            </tr>","        {{/each}}","    </table>","`;","","pm.visualizer.set(template, {","    // Pass the response body parsed as JSON as `data`","    response: pm.response.json()","});","",""],"type":"text/javascript"}}],"id":"25d57328-b371-478c-ac28-580fbbdc9e7e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"graphql"},"url":"{{graphQueryAPI}}","description":"<p>Example query using GraphQL standard to query wellbore status information in a given period of time and using a regular expression as a query mechnism to get all wellbores belongin to a given well (based on slot naming principles). E.g. the attached query would query for all wellbores in the given period of time starting with 15/6-B-2 in the name (hence it would return all wellbores staring with this name). In this case the well 15/6-B-2 has registered 2 wellbores and data is returned on both of them (15/6-B-2 and 15/6-B-2 A)</p>\n","urlObject":{"host":["{{graphQueryAPI}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"25d57328-b371-478c-ac28-580fbbdc9e7e"},{"name":"Query for wellbore activities for a period of time for 2 wellbores","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","","var template = `","    <table>","        <tr>","            <th>Wellbore Name</th>","            <th>Wellbore Uid</th>","            <th>Start Time</th>","            <th>End Time</th>","            <th>Phase</th>","            <th>Proprietary code</th>","            <th>Conveyance</th>","            <th>State</th>","            <th>Comment</th>","            <th>Measured depth</th>","        </tr>","","        {{#each response.data.drilling.drillingActivity}}","            <tr>","                <th>{{dataEntity.name}}</th>","                <th>{{dataEntity.uid}}</th>","                <th>{{startTime}}</th>","                <th>{{endTime}}</th>","                <th>{{phase}}</th>","                <th>{{proprietaryCode}}</th>","                <th>{{conveyance}}</th>","                <th>{{state}}</th>","                <th>{{comment}}</th>","                <th>{{measuredDepth.value}}</th>","            </tr>","        {{/each}}","    </table>","`;","","pm.visualizer.set(template, {","    // Pass the response body parsed as JSON as `data`","    response: pm.response.json()","});","",""],"type":"text/javascript"}}],"id":"27b9918c-43bc-48e6-99e3-69b00d21a0fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"graphql"},"url":"{{graphQueryAPI}}","description":"<p>Example query using GraphQL standard to query wellbore activities for 2 wellbores and a given period of time</p>\n","urlObject":{"host":["{{graphQueryAPI}}"],"query":[],"variable":[]}},"response":[{"id":"24195c1c-7cd2-4e6c-82cf-225f4793f31f","name":"Query for wellbore activities for a period of time for 2 wellbores","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"graphql","graphql":{"query":"query {\r\n    drilling {\r\n      drillingActivity (period_after: \"2004-12-29T23:00:00.000Z\" period_before: \"2010-01-04T22:59:59.999Z\" entityNameRx: [\"/^15\\\\/6-B-2($|[A-Z][A-Z0-9]{0,3})/\"]){\r\n   \r\n    created\r\n    modified\r\n    dataEntity{\r\n      name\r\n      type\r\n      uid\r\n    }\r\n    startTime\r\n    endTime\r\n    \r\n    phase\r\n    proprietaryCode\r\n    conveyance\r\n    state\r\n    comment\r\n    measuredDepth{\r\n      unitOfMeasurement\r\n      value\r\n    }\r\n   \r\n  }\r\n    }\r\n  }\r\n\r\n\r\n","variables":""}},"url":"{{graphQueryAPI}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":""},{"key":"Date","value":"Thu, 23 Jan 2020 19:21:43 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"drilling\": {\n            \"drillingActivity\": [\n                {\n                    \"created\": \"2020-01-22T12:44:07Z\",\n                    \"modified\": \"2020-01-22T12:44:07Z\",\n                    \"dataEntity\": {\n                        \"name\": \"15/6-B-2 A\",\n                        \"type\": \"wellbore\",\n                        \"uid\": \"7736\"\n                    },\n                    \"startTime\": \"2005-01-02T02:00:00Z\",\n                    \"endTime\": \"2005-01-02T04:00:00Z\",\n                    \"phase\": null,\n                    \"proprietaryCode\": \"DRILLING_DRIVE\",\n                    \"conveyance\": \"PUMPING\",\n                    \"state\": \"FAIL\",\n                    \"comment\": \"RIH from 4124ft to 10384ft\",\n                    \"measuredDepth\": {\n                        \"unitOfMeasurement\": \"m\",\n                        \"value\": 3191.15\n                    }\n                },\n                {\n                    \"created\": \"2020-01-22T12:44:07Z\",\n                    \"modified\": \"2020-01-22T12:44:07Z\",\n                    \"dataEntity\": {\n                        \"name\": \"15/6-B-2 A\",\n                        \"type\": \"wellbore\",\n                        \"uid\": \"7736\"\n                    },\n                    \"startTime\": \"2005-01-02T04:00:00Z\",\n                    \"endTime\": \"2005-01-02T06:00:00Z\",\n                    \"phase\": null,\n                    \"proprietaryCode\": \"DRILLING_TRIP\",\n                    \"conveyance\": \"FLOWING\",\n                    \"state\": \"OK\",\n                    \"comment\": \"RIH from 4124ft to 10384ft\",\n                    \"measuredDepth\": {\n                        \"unitOfMeasurement\": \"m\",\n                        \"value\": 3184.68\n                    }\n                },\n                {\n                    \"created\": \"2020-01-22T12:44:07Z\",\n                    \"modified\": \"2020-01-22T12:44:07Z\",\n                    \"dataEntity\": {\n                        \"name\": \"15/6-B-2 A\",\n                        \"type\": \"wellbore\",\n                        \"uid\": \"7736\"\n                    },\n                    \"startTime\": \"2005-01-02T06:00:00Z\",\n                    \"endTime\": \"2005-01-02T08:00:00Z\",\n                    \"phase\": null,\n                    \"proprietaryCode\": \"DRILLING_CASING\",\n                    \"conveyance\": \"DRILLPIPE\",\n                    \"state\": \"OK\",\n                    \"comment\": \"RIH from 4124ft to 10384ft\",\n                    \"measuredDepth\": {\n                        \"unitOfMeasurement\": \"m\",\n                        \"value\": 3037.88\n                    }\n                },\n                {\n                    \"created\": \"2020-01-22T12:44:07Z\",\n                    \"modified\": \"2020-01-22T12:44:07Z\",\n                    \"dataEntity\": {\n                        \"name\": \"15/6-B-2 A\",\n                        \"type\": \"wellbore\",\n                        \"uid\": \"7736\"\n                    },\n                    \"startTime\": \"2005-01-02T08:00:00Z\",\n                    \"endTime\": \"2005-01-02T09:00:00Z\",\n                    \"phase\": null,\n                    \"proprietaryCode\": \"DRILLING_DRILL\",\n                    \"conveyance\": \"COILED_TUBING\",\n                    \"state\": \"OK\",\n                    \"comment\": \"RIH from 4124ft to 10384ft\",\n                    \"measuredDepth\": {\n                        \"unitOfMeasurement\": \"m\",\n                        \"value\": 3000.59\n                    }\n                },\n                {\n                    \"created\": \"2020-01-22T12:44:07Z\",\n                    \"modified\": \"2020-01-22T12:44:07Z\",\n                    \"dataEntity\": {\n                        \"name\": \"15/6-B-2 A\",\n                        \"type\": \"wellbore\",\n                        \"uid\": \"7736\"\n                    },\n                    \"startTime\": \"2005-01-02T10:00:00Z\",\n                    \"endTime\": \"2005-01-02T16:00:00Z\",\n                    \"phase\": null,\n                    \"proprietaryCode\": \"DRILLING_DRIVE\",\n                    \"conveyance\": \"CASING\",\n                    \"state\": \"FAIL\",\n                    \"comment\": \"RIH from 4124ft to 10384f\",\n                    \"measuredDepth\": {\n                        \"unitOfMeasurement\": \"m\",\n                        \"value\": 3096.18\n                    }\n                },\n                {\n                    \"created\": \"2020-01-22T12:41:55Z\",\n                    \"modified\": \"2020-01-22T12:41:55Z\",\n                    \"dataEntity\": {\n                        \"name\": \"15/6-B-2\",\n                        \"type\": \"wellbore\",\n                        \"uid\": \"7735\"\n                    },\n                    \"startTime\": \"2005-01-01T02:00:00Z\",\n                    \"endTime\": \"2005-01-01T04:00:00Z\",\n                    \"phase\": null,\n                    \"proprietaryCode\": \"DRILLING_DRIVE\",\n                    \"conveyance\": \"PUMPING\",\n                    \"state\": \"FAIL\",\n                    \"comment\": \"RIH from 4124ft to 10384ft\",\n                    \"measuredDepth\": {\n                        \"unitOfMeasurement\": \"m\",\n                        \"value\": 3191.15\n                    }\n                },\n                {\n                    \"created\": \"2020-01-22T12:41:55Z\",\n                    \"modified\": \"2020-01-22T12:41:55Z\",\n                    \"dataEntity\": {\n                        \"name\": \"15/6-B-2\",\n                        \"type\": \"wellbore\",\n                        \"uid\": \"7735\"\n                    },\n                    \"startTime\": \"2005-01-01T04:00:00Z\",\n                    \"endTime\": \"2005-01-01T06:00:00Z\",\n                    \"phase\": null,\n                    \"proprietaryCode\": \"DRILLING_TRIP\",\n                    \"conveyance\": \"FLOWING\",\n                    \"state\": \"OK\",\n                    \"comment\": \"RIH from 4124ft to 10384ft\",\n                    \"measuredDepth\": {\n                        \"unitOfMeasurement\": \"m\",\n                        \"value\": 3184.68\n                    }\n                },\n                {\n                    \"created\": \"2020-01-22T12:41:55Z\",\n                    \"modified\": \"2020-01-22T12:41:55Z\",\n                    \"dataEntity\": {\n                        \"name\": \"15/6-B-2\",\n                        \"type\": \"wellbore\",\n                        \"uid\": \"7735\"\n                    },\n                    \"startTime\": \"2005-01-01T06:00:00Z\",\n                    \"endTime\": \"2005-01-01T08:00:00Z\",\n                    \"phase\": null,\n                    \"proprietaryCode\": \"DRILLING_CASING\",\n                    \"conveyance\": \"DRILLPIPE\",\n                    \"state\": \"OK\",\n                    \"comment\": \"RIH from 4124ft to 10384ft\",\n                    \"measuredDepth\": {\n                        \"unitOfMeasurement\": \"m\",\n                        \"value\": 3037.88\n                    }\n                },\n                {\n                    \"created\": \"2020-01-22T12:41:55Z\",\n                    \"modified\": \"2020-01-22T12:41:55Z\",\n                    \"dataEntity\": {\n                        \"name\": \"15/6-B-2\",\n                        \"type\": \"wellbore\",\n                        \"uid\": \"7735\"\n                    },\n                    \"startTime\": \"2005-01-01T08:00:00Z\",\n                    \"endTime\": \"2005-01-01T09:00:00Z\",\n                    \"phase\": null,\n                    \"proprietaryCode\": \"DRILLING_DRILL\",\n                    \"conveyance\": \"COILED_TUBING\",\n                    \"state\": \"OK\",\n                    \"comment\": \"RIH from 4124ft to 10384ft\",\n                    \"measuredDepth\": {\n                        \"unitOfMeasurement\": \"m\",\n                        \"value\": 3000.59\n                    }\n                },\n                {\n                    \"created\": \"2020-01-22T12:41:55Z\",\n                    \"modified\": \"2020-01-22T12:41:55Z\",\n                    \"dataEntity\": {\n                        \"name\": \"15/6-B-2\",\n                        \"type\": \"wellbore\",\n                        \"uid\": \"7735\"\n                    },\n                    \"startTime\": \"2005-01-01T10:00:00Z\",\n                    \"endTime\": \"2005-01-01T16:00:00Z\",\n                    \"phase\": null,\n                    \"proprietaryCode\": \"DRILLING_DRIVE\",\n                    \"conveyance\": \"CASING\",\n                    \"state\": \"FAIL\",\n                    \"comment\": \"RIH from 4124ft to 10384f\",\n                    \"measuredDepth\": {\n                        \"unitOfMeasurement\": \"m\",\n                        \"value\": 3096.18\n                    }\n                },\n                {\n                    \"created\": \"2020-01-13T13:59:59Z\",\n                    \"modified\": \"2020-01-13T13:59:59Z\",\n                    \"dataEntity\": {\n                        \"name\": \"15/6-B-2\",\n                        \"type\": \"wellbore\",\n                        \"uid\": \"7735\"\n                    },\n                    \"startTime\": \"2010-01-01T02:00:00Z\",\n                    \"endTime\": \"2010-01-01T04:00:00Z\",\n                    \"phase\": null,\n                    \"proprietaryCode\": \"DRILLING_DRIVE\",\n                    \"conveyance\": \"PUMPING\",\n                    \"state\": \"FAIL\",\n                    \"comment\": \"RIH from 4124ft to 10384ft\",\n                    \"measuredDepth\": {\n                        \"unitOfMeasurement\": \"m\",\n                        \"value\": 3191.15\n                    }\n                },\n                {\n                    \"created\": \"2020-01-13T13:59:59Z\",\n                    \"modified\": \"2020-01-13T13:59:59Z\",\n                    \"dataEntity\": {\n                        \"name\": \"15/6-B-2\",\n                        \"type\": \"wellbore\",\n                        \"uid\": \"7735\"\n                    },\n                    \"startTime\": \"2010-01-01T04:00:00Z\",\n                    \"endTime\": \"2010-01-01T06:00:00Z\",\n                    \"phase\": null,\n                    \"proprietaryCode\": \"DRILLING_TRIP\",\n                    \"conveyance\": \"FLOWING\",\n                    \"state\": \"OK\",\n                    \"comment\": \"RIH from 4124ft to 10384ft\",\n                    \"measuredDepth\": {\n                        \"unitOfMeasurement\": \"m\",\n                        \"value\": 3184.68\n                    }\n                },\n                {\n                    \"created\": \"2020-01-13T13:59:59Z\",\n                    \"modified\": \"2020-01-13T13:59:59Z\",\n                    \"dataEntity\": {\n                        \"name\": \"15/6-B-2\",\n                        \"type\": \"wellbore\",\n                        \"uid\": \"7735\"\n                    },\n                    \"startTime\": \"2010-01-01T06:00:00Z\",\n                    \"endTime\": \"2010-01-01T08:00:00Z\",\n                    \"phase\": null,\n                    \"proprietaryCode\": \"DRILLING_CASING\",\n                    \"conveyance\": \"DRILLPIPE\",\n                    \"state\": \"OK\",\n                    \"comment\": \"RIH from 4124ft to 10384ft\",\n                    \"measuredDepth\": {\n                        \"unitOfMeasurement\": \"m\",\n                        \"value\": 3037.88\n                    }\n                },\n                {\n                    \"created\": \"2020-01-13T13:59:59Z\",\n                    \"modified\": \"2020-01-13T13:59:59Z\",\n                    \"dataEntity\": {\n                        \"name\": \"15/6-B-2\",\n                        \"type\": \"wellbore\",\n                        \"uid\": \"7735\"\n                    },\n                    \"startTime\": \"2010-01-01T08:00:00Z\",\n                    \"endTime\": \"2010-01-01T09:00:00Z\",\n                    \"phase\": null,\n                    \"proprietaryCode\": \"DRILLING_DRILL\",\n                    \"conveyance\": \"COILED_TUBING\",\n                    \"state\": \"OK\",\n                    \"comment\": \"RIH from 4124ft to 10384ft\",\n                    \"measuredDepth\": {\n                        \"unitOfMeasurement\": \"m\",\n                        \"value\": 3000.59\n                    }\n                },\n                {\n                    \"created\": \"2020-01-13T13:59:59Z\",\n                    \"modified\": \"2020-01-13T13:59:59Z\",\n                    \"dataEntity\": {\n                        \"name\": \"15/6-B-2\",\n                        \"type\": \"wellbore\",\n                        \"uid\": \"7735\"\n                    },\n                    \"startTime\": \"2010-01-01T10:00:00Z\",\n                    \"endTime\": \"2010-01-01T16:00:00Z\",\n                    \"phase\": null,\n                    \"proprietaryCode\": \"DRILLING_DRIVE\",\n                    \"conveyance\": \"CASING\",\n                    \"state\": \"FAIL\",\n                    \"comment\": \"RIH from 4124ft to 10384f\",\n                    \"measuredDepth\": {\n                        \"unitOfMeasurement\": \"m\",\n                        \"value\": 3096.18\n                    }\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"27b9918c-43bc-48e6-99e3-69b00d21a0fb"},{"name":"Query for wellbore lithology for one wellbore and a given period of time","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","","var template = `","    <table>","        <tr>","            <th>Wellbore Name</th>","            <th>Wellbore Uid</th>","            <th>Time</th>","            <th>MD Top</th>","            <th>MD Bottom</th>","            <th>TVD Top</th>","            <th>TVD Bottom</th>","            <th>Lithology description</th>","            <th>Show description</th>","        </tr>","","        {{#each response.data.drilling.lithology}}","            <tr>","                <th>{{dataEntity.name}}</th>","                <th>{{dataEntity.uid}}</th>","                <th>{{time}}</th>","                <th>{{measuredDepthTop.value}}</th>","                <th>{{measuredDepthBottom.bottom}}</th>","                <th>{{trueVerticalDepthTop.value}}</th>","                <th>{{trueVerticalDepthBottom.value}}</th>","                <th>{{lithologyDescription}}</th>","                <th>{{showDescription}}</th>","            </tr>","        {{/each}}","    </table>","`;","","pm.visualizer.set(template, {","    // Pass the response body parsed as JSON as `data`","    response: pm.response.json()","});","",""],"type":"text/javascript"}}],"id":"2ee5634d-becb-41ce-80dd-045818a90662","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"graphql"},"url":"{{graphQueryAPI}}","description":"<p>Example query using GraphQL standard to query wellbore for lithology records</p>\n","urlObject":{"host":["{{graphQueryAPI}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2ee5634d-becb-41ce-80dd-045818a90662"},{"name":"Query for wellbore stratigraphy for one wellbore and a given period of time","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","","var template = `","    <table>","        <tr>","            <th>Wellbore Name</th>","            <th>Wellbore Uid</th>","            <th>Time</th>","            <th>MD Top</th>","            <th>MD Bottom</th>","            <th>TVD Top</th>","            <th>TVD Bottom</th>","            <th>Lithology description</th>","            <th>Show description</th>","        </tr>","","        {{#each response.data.drilling.lithology}}","            <tr>","                <th>{{dataEntity.name}}</th>","                <th>{{dataEntity.uid}}</th>","                <th>{{time}}</th>","                <th>{{measuredDepthTop.value}}</th>","                <th>{{measuredDepthBottom.bottom}}</th>","                <th>{{trueVerticalDepthTop.value}}</th>","                <th>{{trueVerticalDepthBottom.value}}</th>","                <th>{{lithologyDescription}}</th>","                <th>{{showDescription}}</th>","            </tr>","        {{/each}}","    </table>","`;","","pm.visualizer.set(template, {","    // Pass the response body parsed as JSON as `data`","    response: pm.response.json()","});","",""],"type":"text/javascript"}}],"id":"fe8446b9-cf1d-4a42-8c4a-0ee13fa27bbc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"graphql"},"url":"{{graphQueryAPI}}","description":"<p>Example query using GraphQL standard to query wellbore for lithology records</p>\n","urlObject":{"host":["{{graphQueryAPI}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fe8446b9-cf1d-4a42-8c4a-0ee13fa27bbc"},{"name":"Query for wellbores that I have access to and that have data in the given period","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","","var template = `","    <table>","        <tr>","            <th>Wellbore Name</th>","            <th>Wellbore Uid</th>","            <th>Time</th>","            <th>MD Top</th>","            <th>MD Bottom</th>","            <th>TVD Top</th>","            <th>TVD Bottom</th>","            <th>Lithology description</th>","            <th>Show description</th>","        </tr>","","        {{#each response.data.drilling.lithology}}","            <tr>","                <th>{{dataEntity.name}}</th>","                <th>{{dataEntity.uid}}</th>","                <th>{{time}}</th>","                <th>{{measuredDepthTop.value}}</th>","                <th>{{measuredDepthBottom.bottom}}</th>","                <th>{{trueVerticalDepthTop.value}}</th>","                <th>{{trueVerticalDepthBottom.value}}</th>","                <th>{{lithologyDescription}}</th>","                <th>{{showDescription}}</th>","            </tr>","        {{/each}}","    </table>","`;","","pm.visualizer.set(template, {","    // Pass the response body parsed as JSON as `data`","    response: pm.response.json()","});","",""],"type":"text/javascript"}}],"id":"05c4a7db-4c31-49d7-b089-af65da81e785","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"graphql"},"url":"{{graphQueryAPI}}","description":"<p>Example query that takes out the wellbores that are datacarries in a given period of time and that I have access to</p>\n","urlObject":{"host":["{{graphQueryAPI}}"],"query":[],"variable":[]}},"response":[{"id":"6d85233b-c7c9-4dec-bc4c-16fc3575b5a1","name":"Query for wellbores that I have access to and that have data in the given period","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"graphql","graphql":{"query":"query{\n    drilling{\n      wellboreInfo(period_after: \"2019-08-01T00:00:00.000Z\" period_before: \"2019-12-21T00:00:00.999Z\"){\n            dataEntity{\n              name\n              uid\n            }\n        \n      }\n    }\n        \n}\n    ","variables":""}},"url":"{{graphQueryAPI}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":""},{"key":"X-Frame-Options","value":"deny"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Date","value":"Wed, 12 Feb 2020 20:56:06 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"drilling\": {\n            \"wellboreInfo\": [\n                {\n                    \"dataEntity\": {\n                        \"name\": \"2/4-X-15\",\n                        \"uid\": \"4534\"\n                    }\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"2/4-Z-33\",\n                        \"uid\": \"8427\"\n                    }\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"2/7-B-10 C\",\n                        \"uid\": \"2061\"\n                    }\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"31/2-M-23 CY3HT2\",\n                        \"uid\": \"8754\"\n                    }\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6507/2-5 S\",\n                        \"uid\": \"8775\"\n                    }\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"2/1-A-3\",\n                        \"uid\": \"54\"\n                    }\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"16/1-D-15 Y1\",\n                        \"uid\": \"8778\"\n                    }\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"34/10-A-14 A\",\n                        \"uid\": \"3319\"\n                    }\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"34/10-B-25 AT2\",\n                        \"uid\": \"8801\"\n                    }\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"16/2-D-10 T3\",\n                        \"uid\": \"7901\"\n                    }\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"31/5-7\",\n                        \"uid\": \"8951\"\n                    }\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6507/7-A-9 B\",\n                        \"uid\": \"4065\"\n                    }\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6406/3-A-3 Y1H\",\n                        \"uid\": \"8585\"\n                    }\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"15/8-G-1 H\",\n                        \"uid\": \"8524\"\n                    }\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"34/10-B-9 A\",\n                        \"uid\": \"4758\"\n                    }\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"15/3-A-15\",\n                        \"uid\": \"8881\"\n                    }\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"31/2-W-22 H\",\n                        \"uid\": \"8858\"\n                    }\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"34/10-Q-2 H\",\n                        \"uid\": \"7694\"\n                    }\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"2/8-G-10 BT4\",\n                        \"uid\": \"8660\"\n                    }\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"35/11-B-11 AY1HT2\",\n                        \"uid\": \"8702\"\n                    }\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"30/9-B-5 D\",\n                        \"uid\": \"4430\"\n                    }\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"35/11-B-13 AY2HT2\",\n                        \"uid\": \"8804\"\n                    }\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"30/12-2\",\n                        \"uid\": \"8850\"\n                    }\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6507/11-X-3 H\",\n                        \"uid\": \"3991\"\n                    }\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"6507/7-A-6 A\",\n                        \"uid\": \"8554\"\n                    }\n                },\n                {\n                    \"dataEntity\": {\n                        \"name\": \"33/12-B-29 T2\",\n                        \"uid\": \"2052\"\n                    }\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"05c4a7db-4c31-49d7-b089-af65da81e785"}],"id":"97a65197-53d0-43d9-b549-ef0feca4ea49","_postman_id":"97a65197-53d0-43d9-b549-ef0feca4ea49","description":""},{"name":"Events","item":[{"name":"Query for validation events in given period of time","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","","var template = `","    <table>","        <tr>","            <th>Wellbore Name</th>","            <th>Wellbore Uid</th>","            <th>Time</th>","            <th>MD Top</th>","            <th>MD Bottom</th>","            <th>TVD Top</th>","            <th>TVD Bottom</th>","            <th>Lithology description</th>","            <th>Show description</th>","        </tr>","","        {{#each response.data.drilling.lithology}}","            <tr>","                <th>{{dataEntity.name}}</th>","                <th>{{dataEntity.uid}}</th>","                <th>{{time}}</th>","                <th>{{measuredDepthTop.value}}</th>","                <th>{{measuredDepthBottom.bottom}}</th>","                <th>{{trueVerticalDepthTop.value}}</th>","                <th>{{trueVerticalDepthBottom.value}}</th>","                <th>{{lithologyDescription}}</th>","                <th>{{showDescription}}</th>","            </tr>","        {{/each}}","    </table>","`;","","pm.visualizer.set(template, {","    // Pass the response body parsed as JSON as `data`","    response: pm.response.json()","});","",""],"type":"text/javascript"}}],"id":"ea372e1d-9a99-4194-a64b-ddf3b4161f40","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"graphql"},"url":"{{graphQueryAPI}}","description":"<p>Example query using GraphQL standard to query wellbore for lithology records</p>\n","urlObject":{"host":["{{graphQueryAPI}}"],"query":[],"variable":[]}},"response":[{"id":"aea367e6-fbcf-41a6-b7bf-9575f34d4d59","name":"Query for validation events in given period of time","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"graphql","graphql":{"query":"query {events{validation(created_after: \"2020-01-26T23:00:00.000Z\",created_before: \"2020-01-27T21:00:00.000Z\",limit: 100) { \r\n\t\tcomment\r\n\t\tcompany { \r\n\t\t\tname\r\n\t\t} \r\n\t\tcreated \r\n\t\tcreatedBy \r\n\t\tdeleted \r\n\t\tdeletedBy \r\n\t\tid \r\n\t\tmodified \r\n\t\tmodifiedBy \r\n\t\tparentId \r\n\t\ttype \r\n\t\tfileName\r\n\t\tfileEntry { \r\n\t\t\tfileName \r\n\t\t\tfileReferenceId\r\n\t\t} \r\n\t\treportStatus \r\n\t\toutcome \r\n\t\treportType\r\n\t\treportingPeriod { \r\n\t\t\tfrom \r\n\t\t\tto\r\n\t\t}\r\n\t}}}\r\n\r\n\r\n","variables":""}},"url":"{{graphQueryAPI}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":""},{"key":"Date","value":"Mon, 27 Jan 2020 20:55:27 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"events\": {\n            \"validation\": [\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T18:44:28.007Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"7f86829d-8534-476a-a6aa-31512387355f\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationFailureEvent\",\n                    \"fileName\": \"DPR20_PUBLISH_SERVICE_SUCCESS_PUBLISH_GINA_KROG.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"DPR20_PUBLISH_SERVICE_SUCCESS_PUBLISH_GINA_KROG.xml\",\n                        \"fileReferenceId\": \"d6f5e370-9122-4798-b60b-3e7234c587ef\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"FAILED\",\n                    \"reportType\": \"DPR20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2012-05-01T00:00:00Z\",\n                        \"to\": \"2012-05-01T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T18:43:37.732Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"85264c36-4bde-44a7-9249-52c311ce8860\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationFailureEvent\",\n                    \"fileName\": \"DPR20_PUBLISH_SERVICE_SUCCESS_PUBLISH_GINA_KROG.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"DPR20_PUBLISH_SERVICE_SUCCESS_PUBLISH_GINA_KROG.xml\",\n                        \"fileReferenceId\": \"1fd3a0b7-650b-4e29-9ec2-950cedcfd348\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"FAILED\",\n                    \"reportType\": \"DPR20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2012-05-01T00:00:00Z\",\n                        \"to\": \"2012-05-01T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T18:43:18.529Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"30a52de0-7572-4f51-8e01-b81fd17054fe\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"SUCCESS_MPRMLGOV_VALIDATE_EQUINOR_GRANE.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"SUCCESS_MPRMLGOV_VALIDATE_EQUINOR_GRANE.xml\",\n                        \"fileReferenceId\": \"271f6baa-b0ad-4b99-9c82-873f1aea9d95\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"mprmlGov\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2015-06-01T00:00:00Z\",\n                        \"to\": \"2015-06-30T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T18:42:15.687Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"5ede5aa2-dfec-4310-b3a2-2623c7bddee4\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationFailureEvent\",\n                    \"fileName\": \"SUCCESS_MPRMLGOV_VALIDATE_EQUINOR_GRANE.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"SUCCESS_MPRMLGOV_VALIDATE_EQUINOR_GRANE.xml\",\n                        \"fileReferenceId\": \"041efa9d-2003-41ae-a2ba-437669a46b07\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"FAILED\",\n                    \"reportType\": \"DPR20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2015-06-01T00:00:00Z\",\n                        \"to\": \"2015-06-30T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T18:12:41.047Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"c7981300-53bf-4f79-b921-2c16a238bafd\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationFailureEvent\",\n                    \"fileName\": \"SUCCESS_MPRMLGOV_VALIDATE_EQUINOR_GRANE.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"SUCCESS_MPRMLGOV_VALIDATE_EQUINOR_GRANE.xml\",\n                        \"fileReferenceId\": \"a689d9e2-0d9d-438d-83f1-766211a6f0d1\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"FAILED\",\n                    \"reportType\": \"DPR20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2015-06-01T00:00:00Z\",\n                        \"to\": \"2015-06-30T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T18:12:16.27Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"36172c41-3ff2-49ba-a7a7-b03f389a9e0a\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationFailureEvent\",\n                    \"fileName\": \"SUCCESS_MPRMLGOV_VALIDATE_EQUINOR_GRANE.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"SUCCESS_MPRMLGOV_VALIDATE_EQUINOR_GRANE.xml\",\n                        \"fileReferenceId\": \"4e04e63e-d02f-49eb-a7cf-d2fc4224103f\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"FAILED\",\n                    \"reportType\": \"DPR20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2015-06-01T00:00:00Z\",\n                        \"to\": \"2015-06-30T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T18:09:52.955Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"36b62dd4-13a6-4608-ab24-146dbdc6fd52\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationFailureEvent\",\n                    \"fileName\": \"SUCCESS_MPRMLGOV_VALIDATE_EQUINOR_GRANE.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"SUCCESS_MPRMLGOV_VALIDATE_EQUINOR_GRANE.xml\",\n                        \"fileReferenceId\": \"e389cec4-c105-4e7b-bc8f-d2ea4e209abd\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"FAILED\",\n                    \"reportType\": \"DPR20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2015-06-01T00:00:00Z\",\n                        \"to\": \"2015-06-30T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T17:56:11.918Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"8bbea2f1-6f16-4f01-a970-e5877190b54e\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationFailureEvent\",\n                    \"fileName\": \"SUCCESS_MPRMLGOV_VALIDATE_EQUINOR_GRANE.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"SUCCESS_MPRMLGOV_VALIDATE_EQUINOR_GRANE.xml\",\n                        \"fileReferenceId\": \"d145a28f-8fb2-4de9-893c-331d0e98f9ea\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"FAILED\",\n                    \"reportType\": \"DPR20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2015-06-01T00:00:00Z\",\n                        \"to\": \"2015-06-30T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T17:34:24.953Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"9fac4787-7184-4bcc-92b6-65b5ff80a041\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationFailureEvent\",\n                    \"fileName\": \"SUCCESS_MPRMLGOV_VALIDATE_EQUINOR_GRANE.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"SUCCESS_MPRMLGOV_VALIDATE_EQUINOR_GRANE.xml\",\n                        \"fileReferenceId\": \"95f88051-b4e8-427f-ad48-1bb60152101b\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"FAILED\",\n                    \"reportType\": \"DPR20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2015-06-01T00:00:00Z\",\n                        \"to\": \"2015-06-30T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T17:31:56.931Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"dd461ff7-097d-447c-b5e4-6067d9649ed8\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationFailureEvent\",\n                    \"fileName\": \"SUCCESS_MPRMLGOV_VALIDATE_EQUINOR_GRANE.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"SUCCESS_MPRMLGOV_VALIDATE_EQUINOR_GRANE.xml\",\n                        \"fileReferenceId\": \"caef58cf-0acc-44c9-9d47-2318c88e7e7e\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"FAILED\",\n                    \"reportType\": \"DPR20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2015-06-01T00:00:00Z\",\n                        \"to\": \"2015-06-30T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T17:28:59.146Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"f696e7dc-37d1-4194-bb8f-0a8e48f3047d\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationFailureEvent\",\n                    \"fileName\": \"SUCCESS_MPRMLGOV_VALIDATE_EQUINOR_GRANE.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"SUCCESS_MPRMLGOV_VALIDATE_EQUINOR_GRANE.xml\",\n                        \"fileReferenceId\": \"2b719c4d-a55b-4f89-a021-640cf3c9e77a\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"FAILED\",\n                    \"reportType\": \"DPR20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2015-06-01T00:00:00Z\",\n                        \"to\": \"2015-06-30T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T17:08:18.354Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"509ee4a7-1d61-4621-a5a4-5f048499dbc2\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationFailureEvent\",\n                    \"fileName\": \"SUCCESS_MPRMLGOV_VALIDATE_EQUINOR_GRANE.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"SUCCESS_MPRMLGOV_VALIDATE_EQUINOR_GRANE.xml\",\n                        \"fileReferenceId\": \"18bf93f2-6178-4a5b-9fa4-b56483a5d41a\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"FAILED\",\n                    \"reportType\": \"DPR20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2015-06-01T00:00:00Z\",\n                        \"to\": \"2015-06-30T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T17:03:11.368Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"6a863443-bbf5-4b01-baf2-140902b5b5fc\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationFailureEvent\",\n                    \"fileName\": \"SUCCESS_MPRMLGOV_VALIDATE_EQUINOR_GRANE.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"SUCCESS_MPRMLGOV_VALIDATE_EQUINOR_GRANE.xml\",\n                        \"fileReferenceId\": \"6f899bd2-3b1d-473b-bbad-6a6ba45bed46\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"FAILED\",\n                    \"reportType\": \"DPR20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2015-06-01T00:00:00Z\",\n                        \"to\": \"2015-06-30T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T16:17:49.156Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"01fb39ac-420b-4616-9fd5-1ae5716d8a7a\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"DPR20_PUBLISH_SERVICE_SUCCESS_PUBLISH_GINA_KROG.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"DPR20_PUBLISH_SERVICE_SUCCESS_PUBLISH_GINA_KROG.xml\",\n                        \"fileReferenceId\": \"6ae15e68-dff6-41ed-affb-11820e5dd2fc\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2012-05-01T00:00:00Z\",\n                        \"to\": \"2012-05-01T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T16:00:24.682Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"e02b469b-de06-42a0-a5ee-8a013249bc59\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"DPR20_PUBLISH_SERVICE_SUCCESS_PUBLISH_GINA_KROG.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"DPR20_PUBLISH_SERVICE_SUCCESS_PUBLISH_GINA_KROG.xml\",\n                        \"fileReferenceId\": \"b46509a7-332f-4946-af23-0c3e09d0cd3b\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2012-05-01T00:00:00Z\",\n                        \"to\": \"2012-05-01T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:21.97Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"ce58c7d7-827e-4a1f-9c16-fa6f03246c86\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"6d8a1c6b-17d4-429a-91a8-242f67756920\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2012-05-01T00:00:00Z\",\n                        \"to\": \"2012-05-01T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:21.704Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"ef7dc9f7-f69c-4466-880e-f647cc2b17db\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"e491ae48-f63c-48c4-9268-93876614c4f8\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2012-05-01T00:00:00Z\",\n                        \"to\": \"2012-05-01T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:21.692Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"696d92f6-8195-4789-9ab9-649f66a307d0\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"6141871d-4a63-4f78-a93b-3cdcdc4245e7\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2012-05-01T00:00:00Z\",\n                        \"to\": \"2012-05-01T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:21.59Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"72b193de-bfad-48c0-9a90-de7553d6685a\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"22302987-a344-416b-b3e2-2b4442b83e3c\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2012-05-02T00:00:00Z\",\n                        \"to\": \"2012-05-02T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:21.519Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"c3f8dc77-0133-486f-b4b3-9c6623cb0b77\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"f903f0f9-fe94-4b1e-bb7b-19b519821ce1\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2012-05-01T00:00:00Z\",\n                        \"to\": \"2012-05-01T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:21.478Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"c9abe50a-e542-4e88-a891-3662e2cbf24d\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"64210e0f-3aef-4aef-bfba-2bc5261c1029\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2012-05-01T00:00:00Z\",\n                        \"to\": \"2012-05-01T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:21.478Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"709f2480-4e73-4c66-875c-1f08fa579793\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"69e39496-43d9-4489-a774-ea6d607aa65f\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2012-05-02T00:00:00Z\",\n                        \"to\": \"2012-05-02T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:21.46Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"2651ba96-0830-4075-8c15-0de03dcea673\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"9c1d0be7-c86a-461a-9438-b5de6201a02a\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2012-05-01T00:00:00Z\",\n                        \"to\": \"2012-05-01T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:21.358Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"ce2880fd-f5f6-47ba-9986-28851c5a263c\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"f5e31e4f-3153-4040-96c6-068e92edd707\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2012-05-02T00:00:00Z\",\n                        \"to\": \"2012-05-02T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:20.945Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"de2600e0-821d-495c-b410-7e7f31a1af8d\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"57ae16af-1550-424a-8be4-6c48d3ed44ef\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2012-05-01T00:00:00Z\",\n                        \"to\": \"2012-05-01T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:20.933Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"8bc531b6-4f10-443b-8054-ba8defac9673\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"d17ba36b-3547-412e-b69e-1f479f892d3f\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2012-05-01T00:00:00Z\",\n                        \"to\": \"2012-05-01T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:19.914Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"dae1ee1c-9e95-40c7-84d6-0b372de89cbb\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"7c622516-1549-40e0-ba1a-d12afec45c8e\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2012-05-01T00:00:00Z\",\n                        \"to\": \"2012-05-01T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:19.21Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"c0be0f4b-bc1e-4f04-af72-8a1accb2fe93\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"46ce65c0-0e0d-4ad4-b246-57f1a0756b6b\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2012-05-01T00:00:00Z\",\n                        \"to\": \"2012-05-01T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:19.135Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"f07ce585-5f08-4dd3-aa6e-af65af38584d\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"5dcf78ac-b6c9-4ee7-a14a-5ad7ae94670b\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2012-05-01T00:00:00Z\",\n                        \"to\": \"2012-05-01T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:11.767Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"18ad018a-f9d9-41d7-8b64-1d3f880a627d\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"7dab7165-3072-43a7-802b-21d4edb47e24\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:11.356Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"78a32559-5f0e-40b2-b4d8-cfbb1d797a1a\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"f183246f-df0e-42f1-9d6a-664cfb96b357\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:10.614Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"4abf8831-811e-405e-b425-b99cae01cc01\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"790fd59b-829c-4826-ae74-bdbf0aca7966\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:10.502Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"c662aaab-2a49-47dc-85c2-51c81078e62d\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"1b80afec-0c5f-460e-b51e-b97eb628b8eb\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:10.225Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"14e06047-5eda-4a48-b009-8acd531b64a0\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"dfffcef8-461d-4f87-9265-2efe58d9189c\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:10.082Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"503677c7-205c-49da-954b-f25efa276141\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"4be7abbb-739e-4db1-ace3-9ebf4d4e8193\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:10.071Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"214b8403-9e70-4ed0-b0b5-2edc14c53892\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"a9965bb0-1fb7-46cb-a0c3-3b849b05115a\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:09.64Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"26da9b0a-a94a-40bf-ac47-36fbd142e7bc\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"5ef54af3-abe9-4378-b83e-0d5e74c8949e\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:09.421Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"b3e30ece-c9aa-4951-88eb-6180ed1f7fed\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"0ab9a9f2-35b7-4255-8973-fa8e4455d8cd\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:09.412Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"f820cc93-9fe2-46c7-8f8f-6c81f1a4d57d\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"0b6ca79a-43fd-426f-9bdc-aa07e10c0eac\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:09.307Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"598efb08-c0b2-434c-bc3e-ae14626d4165\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"30c712c4-b1e8-4d35-9488-4aa711709dfd\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:09.295Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"d60aef2d-3de1-4849-a847-82561ab3dc0e\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"d6771d13-fefd-4156-a069-4c9223f2f600\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:09.246Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"f273efee-a823-48e8-96dc-8f732c71fe05\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"14857961-5376-4216-8395-6826c03713dd\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:08.959Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"d4489053-be27-451c-bd76-a2e8b62d3eaa\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"f477f71e-4bc3-4c3c-8ce6-b21b9a680e75\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:08.889Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"a0265eb8-6add-4767-a942-35b59765600f\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"b628b6db-d337-4315-9e11-5a7875aeb0d8\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:08.848Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"a9a27caf-9828-44ee-8b25-2db270bed5b5\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"383ebff0-d45f-431e-8668-253be1582219\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:07.565Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"974ef027-54dd-42af-9723-d127942ccb31\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"3d049e02-a532-422b-abac-e47fa2eb0730\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:07.291Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"17e593ac-3c12-4601-850f-323ea62b5c0e\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"e344ecce-dd7f-443c-9b4f-57a090a27baf\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:07.229Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"d00e54b6-cbb5-4f41-9f08-8d6798aa7013\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"1fd30caa-df66-4e15-a089-f20f9ffcad44\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:07.155Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"c4438b2e-d959-47b5-b9f4-65ce60ad5b9d\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"e84f4e23-8588-445a-80be-df3571b46f30\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:06.825Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"b14a1329-61bb-4af9-b236-ea7948bc8004\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"74525632-0640-453d-9067-9d7fd361b824\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:06.591Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"00c2d89d-ed40-4161-9b1f-f522723ab6b0\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"df9e2cd8-bfbf-459a-8c06-ebb875064990\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:06.586Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"5a5e4813-a3c6-4a64-b625-2afce9e7c739\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"687ae823-74f8-4205-a7a1-67c930986767\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:06.436Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"de538022-d652-4405-998c-fd8585af5e8f\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"1fe8f400-85e8-43ce-b462-bbcee13a1a1f\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:06.088Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"e56c7073-b927-4835-82cc-50d371e0f86e\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"9846b72f-8766-419d-9d93-85eeb45b3612\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:06.033Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"a62b9f21-7c8c-4609-9ff3-fa94d74a5574\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"b5b3311c-8112-4160-ad96-283cec0fe625\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:06.005Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"6841998c-f2f7-4834-a12f-2a81c50b6b63\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"c24787a5-70a9-489e-8f83-59830ec9876a\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:05.927Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"eb4fdee9-d8d2-4628-af75-fa7717e27cfd\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"2bdbeada-ab16-4777-b5a2-46337a8ef189\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:05.927Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"9e1c7bc8-446c-4e38-9042-e4fb5f26e5d3\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"b6679835-f305-4210-ad03-f67311e6c747\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:05.921Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"22ff60b0-bd89-43e0-ad67-d6a2590fd75d\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"26f4345b-6193-4e96-a14a-12c4331676c4\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:05.92Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"af9e60a3-fa32-412c-95fe-72d70dcf882d\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"4d3bf9b5-9525-4fa6-9841-4c85566c5365\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:05.647Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"971a4c01-ccb5-4c3a-9d4d-8b90beb11a18\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"85d0c18b-5a90-4f38-82ae-4f2b0bba4ce0\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:05.633Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"1692de74-89f6-45dd-85c6-f121f1f7a83f\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"7b491911-c090-4a69-a6d3-a2b193a34b25\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:05.602Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"2e92c539-72ba-45a4-908a-66fc0d994881\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"a3b70448-2062-40b3-87c2-5881c8e11927\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:05.539Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"9b496e3b-8406-4f7c-8e63-4251fc677897\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"5262733a-5b8b-44d6-85e3-92ca58994822\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:05.511Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"ef07e97a-c178-4ec1-b597-115eaa4d31a9\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"2642eda7-4eb2-487a-95a1-8f3524dc04ff\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:05.399Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"bbdde175-8476-4514-8378-b08aeb30d967\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"d2bf235c-ee2b-407e-9f55-5f365611e2ed\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:05.306Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"53bf4531-bdbf-423d-8ce6-19286832c628\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"2b148435-7c37-4e29-a6d1-b506e4723e19\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:05.258Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"cff768eb-5144-4bb5-8e92-3937f965352b\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"e161873e-c411-42f1-b7d4-3d6bf9793060\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:05.258Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"d8fa752e-52eb-4564-a34d-5581491b5f5d\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"e62d6af4-4f98-4b44-8284-dfa5bad61553\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2012-05-01T00:00:00Z\",\n                        \"to\": \"2012-05-01T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:05.229Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"cdf044b6-5d32-4c64-a09d-88ba0c42a89d\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"ce2b8658-053a-492d-b1c8-961e67478964\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:05.048Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"c344f5ca-68d7-4169-8a8e-2882d76f4066\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"75bd884c-62eb-4576-b89f-52a1d7d74d89\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:05.024Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"0c4cad40-8a5d-4901-a79f-333d9c71ff30\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"abea0f50-1c62-4f12-a5b2-1fd3b8e0efd4\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2012-05-01T00:00:00Z\",\n                        \"to\": \"2012-05-01T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:05.005Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"71cd0613-459d-4cc9-8b60-fa9c88750c04\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"4a57f8d9-6ed5-4d58-af47-d1f367027433\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:04.821Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"4ded58b7-0d51-4b27-9728-a26a85dc2eb2\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"4d64c4e8-1ae8-4ef4-a7d0-294ccb67953b\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:04.801Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"579728d4-18ad-4d00-99f9-4db8ab5a9ec3\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"195960d4-eb22-4ff9-ae65-bc4cf3518903\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:04.774Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"1a5d1ad3-e870-48a4-9af0-dc1929ee2185\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"c282f7ef-b63e-45ad-803e-73b80de1c506\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:03.526Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"dbafb1b2-2eeb-4edc-9187-cb9d74be38d3\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"b3cf9e16-1c02-4870-abfa-b562f95701f5\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:03.227Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"066d8e86-7cfa-4dc1-9586-3099507e83c0\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"dadd9913-9b6e-462b-95dc-3823979120be\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:02.936Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"309df772-878a-4a66-ad20-0fc8f6c48ced\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"6821ade8-a268-4c32-b331-f860e6ff9e6b\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:02.834Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"d0adbeff-c12f-4fa5-bcee-7327a09776c5\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"0f197169-e551-4397-9e7f-ef2557c0f575\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:02.821Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"21162d19-742b-4bd9-9c86-8839e3e2cb63\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"ff9022d8-1b0d-4e0b-8bdf-b89cbbd762ba\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:02.792Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"01d16468-11fe-46bf-8006-36099d3149f4\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"5c3af8d9-443a-428d-8027-52e3c32bf490\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:01.882Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"304d445a-d0cb-4a8f-b5b1-4bc82640732d\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"35d50e00-617c-4fe7-af9c-b78fd280e5fc\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:01.839Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"496e09cf-0326-4726-a402-b5b9e08803fa\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"48bffec8-7911-44d9-aa79-a6f54dcc37eb\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:01.414Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"c16db8e8-8b06-48a4-8340-4058784ad3ef\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"a970cfff-c5d5-458b-b186-903106261bce\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:01.22Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"4331c8d5-7dd3-48ab-9d3e-1ce33a12164b\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"63320258-0877-4171-b6e9-d509446cd944\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:00.782Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"97728d22-25fa-40b5-9cbc-302a6eb351c3\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"2f4f7909-339f-4447-bc1a-577741f7a9c3\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:00.169Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"4e906bfa-aa30-41eb-b7b8-b123ef45b64b\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"9a887cb0-09bf-4c21-bd63-ff54cc850327\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2012-05-01T00:00:00Z\",\n                        \"to\": \"2012-05-01T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:00.098Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"73b33db0-e092-4f31-8780-cc654a4f958b\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"7d2245d7-ff89-4ea5-9ea0-72bfd7083052\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:50:00.067Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"a52c3685-dd78-46f1-abc5-6cd599a9ab06\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"472599c7-c220-4ea2-bf01-adca3151f20f\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:49:59.947Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"53e0c7c7-e780-4ad6-8e29-60187533a843\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"0357f65b-6a74-4d77-931d-6e29132c919c\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:49:59.926Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"3385bfce-f87a-4de7-a642-659d3dac7df2\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"c7f03652-925a-4750-abd3-ff577560c5ad\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:49:59.893Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"ad718e95-bca0-4d1f-a6dd-9e197671ee29\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"61522bd1-6bfc-4df5-9253-135b401eb9dc\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:49:59.619Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"597a54cf-89a3-4555-8944-9bd19666ae00\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"2a0a3157-e8ae-43e7-a2b3-2ebbb203b635\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:49:59.348Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"54455923-838b-490a-a882-3d801dd45fbe\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"bcf93d44-17c8-4780-89ea-638bee7bd8ad\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:49:59.215Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"40d12d85-8a1e-4e0c-a6fd-e7d1c91f7324\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"d59f2ba1-18c6-4fe7-9fdf-472744a04ab0\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2012-05-01T00:00:00Z\",\n                        \"to\": \"2012-05-01T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:49:59.117Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"3cfec911-75a5-497f-ab86-50bdacbf40ff\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"eaec95f2-2390-4b81-96e7-f20016946623\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:49:58.994Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"f121dcf4-fb00-4ca6-81ff-ca1d6ea0b393\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"621dfc90-b20f-4b92-8550-2f51d3eb30a6\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:49:58.99Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"11fa2821-7fc9-4e63-9174-de631da5d7ff\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"02ef8468-4d05-474d-a2e2-9eafd3365cbd\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                },\n                {\n                    \"comment\": null,\n                    \"company\": {\n                        \"name\": \"EQUINOR ENERGY AS\"\n                    },\n                    \"created\": \"2020-01-27T14:49:58.578Z\",\n                    \"createdBy\": \"UnifiedAPI\",\n                    \"deleted\": null,\n                    \"deletedBy\": null,\n                    \"id\": \"d17d6563-cc3a-4025-84da-1f5397881ae2\",\n                    \"modified\": null,\n                    \"modifiedBy\": null,\n                    \"parentId\": null,\n                    \"type\": \"ValidationSuccessEvent\",\n                    \"fileName\": \"report.xml\",\n                    \"fileEntry\": {\n                        \"fileName\": \"report.xml\",\n                        \"fileReferenceId\": \"492885d3-9289-4478-844f-2300722edb66\"\n                    },\n                    \"reportStatus\": \"INVALID\",\n                    \"outcome\": \"SUCCESS\",\n                    \"reportType\": \"dpr20\",\n                    \"reportingPeriod\": {\n                        \"from\": \"2017-01-12T00:00:00Z\",\n                        \"to\": \"2017-01-13T00:00:00Z\"\n                    }\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"ea372e1d-9a99-4194-a64b-ddf3b4161f40"}],"id":"cf52d4d6-de8c-4b53-b3ab-a1bff6c1a381","_postman_id":"cf52d4d6-de8c-4b53-b3ab-a1bff6c1a381","description":""},{"name":"Files","item":[{"name":"Query for ddrml xml report files for a specific wellbore","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","","var template = `","    <table>","        <tr>","            <th>Wellbore Name</th>","            <th>Wellbore Uid</th>","            <th>Time</th>","            <th>MD Top</th>","            <th>MD Bottom</th>","            <th>TVD Top</th>","            <th>TVD Bottom</th>","            <th>Lithology description</th>","            <th>Show description</th>","        </tr>","","        {{#each response.data.drilling.lithology}}","            <tr>","                <th>{{dataEntity.name}}</th>","                <th>{{dataEntity.uid}}</th>","                <th>{{time}}</th>","                <th>{{measuredDepthTop.value}}</th>","                <th>{{measuredDepthBottom.bottom}}</th>","                <th>{{trueVerticalDepthTop.value}}</th>","                <th>{{trueVerticalDepthBottom.value}}</th>","                <th>{{lithologyDescription}}</th>","                <th>{{showDescription}}</th>","            </tr>","        {{/each}}","    </table>","`;","","pm.visualizer.set(template, {","    // Pass the response body parsed as JSON as `data`","    response: pm.response.json()","});","",""],"type":"text/javascript"}}],"id":"81c01025-2cec-42ba-9286-7147e74c06cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"graphql","graphql":{"query":"query: {                 \r\n    files(created_after: \"2020-08-09T10:27:00.000Z\" created_before: \"2020-08-12T10:27:00.000Z\" \r\n    limit: 1000 report_type: DDRML wellbore: [\"16/1-D-10\"] fileType: XML) \r\n    { \r\n        fileName \r\n        fileReferenceId \r\n        id \r\n        reportType \r\n        reportTypeName \r\n        metadata {\r\n            isFileValid\r\n            periodEnd\r\n            periodStart\r\n            sources \r\n            { \r\n                name\r\n                \r\n            }\r\n            \r\n        } \r\n        created\r\n        \r\n    }   \r\n}\r\n","variables":""}},"url":"{{graphQueryAPI}}","description":"<p>Example query using GraphQL standard to for xml reports created in the given period for one specific wellbore</p>\n","urlObject":{"host":["{{graphQueryAPI}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"81c01025-2cec-42ba-9286-7147e74c06cd"},{"name":"Download a physical report file","event":[{"listen":"test","script":{"id":"b5dcabd3-b84a-43bc-bb3f-4761f30cd7c6","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","","var template = `","    <table>","        <tr>","            <th>Wellbore Name</th>","            <th>Wellbore Uid</th>","            <th>Time</th>","            <th>MD Top</th>","            <th>MD Bottom</th>","            <th>TVD Top</th>","            <th>TVD Bottom</th>","            <th>Lithology description</th>","            <th>Show description</th>","        </tr>","","        {{#each response.data.drilling.lithology}}","            <tr>","                <th>{{dataEntity.name}}</th>","                <th>{{dataEntity.uid}}</th>","                <th>{{time}}</th>","                <th>{{measuredDepthTop.value}}</th>","                <th>{{measuredDepthBottom.bottom}}</th>","                <th>{{trueVerticalDepthTop.value}}</th>","                <th>{{trueVerticalDepthBottom.value}}</th>","                <th>{{lithologyDescription}}</th>","                <th>{{showDescription}}</th>","            </tr>","        {{/each}}","    </table>","`;","","pm.visualizer.set(template, {","    // Pass the response body parsed as JSON as `data`","    response: pm.response.json()","});","",""],"type":"text/javascript"}}],"id":"f91e5d0d-f1dd-4287-9c0d-e9d30b3a8e40","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"graphql","graphql":{"query":"","variables":""}},"url":"{{fileDownloadReferenceId}}/{{fileUid}}?format=xml","description":"<p>Downloading of a physical report file requires that you have a file reference id and specify the format that you would like to download. Download is done using a get request against the file download API e.g. <a href=\"https://apis.collabor8.no/test/api/Files/%7BfileId%7D?format=%7BfileFormat%7D\">https://apis.collabor8.no/test/api/Files/{fileId}?format={fileFormat}</a>, where the {fielId} is equal to the fileRefererence id as queried for in the file graphql API. The {fileFormat} is e.g. xml or pdf</p>\n","urlObject":{"path":["{{fileUid}}"],"host":["{{fileDownloadReferenceId}}"],"query":[{"key":"format","value":"xml"}],"variable":[]}},"response":[],"_postman_id":"f91e5d0d-f1dd-4287-9c0d-e9d30b3a8e40"}],"id":"2049b2dd-6fb5-4f40-b442-028fcaa4e394","description":"<p>Collection showing how to query for file specific information. All incoming files are stored as part of the model and in order to be able to download a given original as submitted file you need to perform a two folder operation where the first is to search for the files you are interested in and then download it using a file reference.</p>\n","_postman_id":"2049b2dd-6fb5-4f40-b442-028fcaa4e394"},{"name":"Advanced search and pagination","item":[{"name":"Pagination queries","item":[{"name":"Example query for production paginated data - first request","event":[{"listen":"test","script":{"id":"cc3035ee-5ff7-455f-8dd1-265964ea25f2","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","","var template = `","    <table>","        <tr>","            <th>Reporting entity</th>","            <th>Reporting entity kind</th>","            <th>Data entity</th>","            <th>Data entity kind</th>","            <th>Data entity uid</th>","            <th>Report start</th>","            <th>Report end</th>","            <th>Comment start</th>","            <th>Comment end</th>","            <th>Type</th>","            <th>Comment</th>","        </tr>","","        {{#each response.data.drilling.statusInfo}}","            <tr>","                <th>{{sourceEntity.name}}</th>","                <th>{{sourceEntity.uid}}</th>","                <th>{{dataStartTime}}</th>","                <th>{{dataEndTime}}</th>","                <th>{{sum24Hrs}}</th>","                <th>{{forecast24Hrs}}</th>","            </tr>","        {{/each}}","    </table>","`;","","pm.visualizer.set(template, {","    // Pass the response body parsed as JSON as `data`","    response: pm.response.json()","});","",""],"type":"text/javascript"}}],"id":"e5262263-0635-4b43-a6db-ca2bae246390","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"description":"<p>OPC subscription key as supplied by NOROG</p>\n","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"graphql","graphql":{"query":"query {\n \n  production {\n    data(\n      start: \"2020-11-09\"\n      end: \"2021-11-11\"\n      elastic:true\n      data_entity_names:[\"GINA KROG\"]\n      source_system_versions:[\"2\"]\n      data_periods:[\"day\"]\n      ) {\n      pagination{\n        currentPage\n        itemsPerPage\n        totalPages\n        totalRecords\n      }\n      sourceStartTime\n      sourceEndTime\n      dataStartTime\n      dataEndTime\n      \n      \n      sourceEntity {\n        name\n        type\n        uid\n      }\n    }\n    \n  }\n}","variables":""}},"url":"{{graphQueryAPI}}","description":"<p>Example query for paginated production data where this is the first request, getting an overview of the total available pages, that then can be looped through as part of following requests in a sequential manner.</p>\n<p>First request will contain the attribute, \"elastic:true\", which will trigger pagination and at the same time also include the pagination object as part of the data that is asked for in the GraphQL model. The pagination object return is set in on the first object of the data array returned.</p>\n<p>Example showing the usage of the elastic attribute together with the pagination object:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">query {\n \n  production {\n    data(\n      start: \"2020-11-09\"\n      end: \"2021-11-11\"\n      elastic:true\n      data_entity_names:[\"GINA KROG\"]\n      source_system_versions:[\"2\"]\n      data_periods:[\"day\"]\n      ) {\n      pagination{\n        currentPage\n        itemsPerPage\n        totalPages\n        totalRecords\n      }\n</code></pre>\n","urlObject":{"host":["{{graphQueryAPI}}"],"query":[],"variable":[]}},"response":[{"id":"a8ac8c8d-9164-478b-b0c5-e1cda26d6a53","name":"Example query for production paginated data - first request","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"description":"OPC subscription key as supplied by NOROG","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"graphql","graphql":{"query":"query {\n \n  production {\n    data(\n      start: \"2020-11-09\"\n      end: \"2021-11-11\"\n      elastic:true\n      data_entity_names:[\"GINA KROG\"]\n      source_system_versions:[\"2\"]\n      data_periods:[\"day\"]\n      ) {\n      pagination{\n        currentPage\n        itemsPerPage\n        totalPages\n        totalRecords\n      }\n      sourceStartTime\n      sourceEndTime\n      dataStartTime\n      dataEndTime\n      \n      \n      sourceEntity {\n        name\n        type\n        uid\n      }\n    }\n    \n  }\n}","variables":""}},"url":"{{graphQueryAPI}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Frame-Options","value":"xx"},{"key":"X-Content-Type-Options","value":"xx"},{"key":"X-XSS-Protection","value":"xx"},{"key":"Strict-Transport-Security","value":"xxx"},{"key":"Content-Security-Policy","value":"xx"},{"key":"Date","value":"xxx"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"production\": {\n            \"data\": [\n                {\n                    \"pagination\": {\n                        \"currentPage\": 1,\n                        \"itemsPerPage\": 1000,\n                        \"totalPages\": 3,\n                        \"totalRecords\": 2093\n                    },\n                    \"sourceStartTime\": \"2021-08-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-08-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-08-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-31T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-31T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-31T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-31T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-31T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-31T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-31T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-31T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-31T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-31T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-31T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-31T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-31T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-08-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-31T04:00:00Z\",\n                    \"dataEndTime\": \"2021-08-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-31T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-31T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-31T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-31T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-31T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-31T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-31T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-31T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-31T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-31T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-31T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-31T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-31T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-07-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-07-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-07-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-07-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"e5262263-0635-4b43-a6db-ca2bae246390"},{"name":"Example query for production paginated data - second request asking for next page with data Copy","event":[{"listen":"test","script":{"id":"a6738853-62e7-4c66-bbf2-6da4e063b6a3","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","","var template = `","    <table>","        <tr>","            <th>Reporting entity</th>","            <th>Reporting entity kind</th>","            <th>Data entity</th>","            <th>Data entity kind</th>","            <th>Data entity uid</th>","            <th>Report start</th>","            <th>Report end</th>","            <th>Comment start</th>","            <th>Comment end</th>","            <th>Type</th>","            <th>Comment</th>","        </tr>","","        {{#each response.data.drilling.statusInfo}}","            <tr>","                <th>{{sourceEntity.name}}</th>","                <th>{{sourceEntity.uid}}</th>","                <th>{{dataStartTime}}</th>","                <th>{{dataEndTime}}</th>","                <th>{{sum24Hrs}}</th>","                <th>{{forecast24Hrs}}</th>","            </tr>","        {{/each}}","    </table>","`;","","pm.visualizer.set(template, {","    // Pass the response body parsed as JSON as `data`","    response: pm.response.json()","});","",""],"type":"text/javascript"}}],"id":"d38e740a-21fc-4214-8025-a86910d579d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"description":"<p>OPC subscription key as supplied by NOROG</p>\n","key":"Ocp-Apim-Subscription-Key","type":"text","value":"XXXX"}],"body":{"mode":"graphql","graphql":{"query":"query {\n \n  production {\n    data(\n      start: \"2020-11-09\"\n      end: \"2021-11-11\"\n      elastic:true\n      data_entity_names:[\"GINA KROG\"]\n      source_system_versions:[\"2\"]\n      data_periods:[\"day\"]\n      pageNum:2\n      ) {\n      pagination{\n        currentPage\n        itemsPerPage\n        totalPages\n        totalRecords\n      }\n      sourceStartTime\n      sourceEndTime\n      dataStartTime\n      dataEndTime\n      \n      \n      sourceEntity {\n        name\n        type\n        uid\n      }\n    }\n    \n  }\n}","variables":""}},"url":"{{graphQueryAPI}}","description":"<p>Example query for paginated production data where this is the second request, following the first where an overview of the total number of pages available was fetched. \nThis request will ask the server to get the second page of the result by using the \"pageNum\" query filter.</p>\n<p>Example asking for the second page of the previous executed query, where the pageNum filter is set to 2 asking for the second page.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">query {\n \n  production {\n    data(\n      start: \"2020-11-09\"\n      end: \"2021-11-11\"\n      elastic:true\n      data_entity_names:[\"GINA KROG\"]\n      source_system_versions:[\"2\"]\n      data_periods:[\"day\"]\n      pageNum:2\n      ) {\n      pagination{\n        currentPage\n        itemsPerPage\n        totalPages\n        totalRecords\n      }\n</code></pre>\n<p>When the pagination object is returned it will now hightlight that we are on the second page through the \"currentPage\" value.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">\"pagination\": {\n                        \"currentPage\": 2,\n                        \"itemsPerPage\": 1000,\n                        \"totalPages\": 3,\n                        \"totalRecords\": 2093\n                    },\n</code></pre>\n","urlObject":{"host":["{{graphQueryAPI}}"],"query":[],"variable":[]}},"response":[{"id":"3603c85b-c115-4905-a378-de62aceb0959","name":"Example query for production paginated data - second request asking for next page with data","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"description":"OPC subscription key as supplied by NOROG","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"graphql"},"url":"{{graphQueryAPI}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Frame-Options","value":"xxx"},{"key":"X-Content-Type-Options","value":"xxx"},{"key":"X-XSS-Protection","value":"xxx"},{"key":"Strict-Transport-Security","value":"xxx"},{"key":"Content-Security-Policy","value":"xxx"},{"key":"Date","value":"xxx"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"production\": {\n            \"data\": [\n                {\n                    \"pagination\": {\n                        \"currentPage\": 2,\n                        \"itemsPerPage\": 1000,\n                        \"totalPages\": 3,\n                        \"totalRecords\": 2093\n                    },\n                    \"sourceStartTime\": \"2021-06-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-31T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-31T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-31T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-31T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-31T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-31T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-31T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-31T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-31T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-31T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-31T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-31T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-31T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-31T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-31T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-31T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-31T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-31T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-31T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-31T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-31T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-31T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-31T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-31T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-31T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-31T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-08T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-07T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-06T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-05T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-04T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-03T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-02T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-01T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-30T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-29T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-28T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-27T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-26T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-25T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-24T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-23T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-22T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-21T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-20T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-19T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-18T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-17T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-16T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-15T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-14T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-13T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-12T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-11T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-10T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-09T04:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-07T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-08T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-07T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-08T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-07T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-08T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-07T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-08T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-07T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-08T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-07T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-08T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-07T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-08T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-07T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-08T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-07T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-08T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-07T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-08T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-07T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-08T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-07T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-08T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-06T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-07T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-06T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-07T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-06T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-07T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-06T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-07T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-06T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-07T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-06T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-07T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-06T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-07T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-06T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-07T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-06T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-07T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-06T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-07T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-06T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-07T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-06T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-07T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-05T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-06T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-05T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-06T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-05T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-06T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-05T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-06T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-05T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-06T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-05T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-06T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-05T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-06T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-05T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-06T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-05T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-06T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-05T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-06T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-05T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-06T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-05T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-06T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-04T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-05T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-04T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-05T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-04T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-05T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-04T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-05T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-04T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-05T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-04T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-05T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-04T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-05T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-04T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-05T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-04T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-05T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-04T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-05T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-04T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-05T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-04T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-05T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-03T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-04T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-03T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-04T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-03T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-04T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-03T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-04T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-03T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-04T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-03T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-04T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-03T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-04T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-03T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-04T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-03T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-04T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-03T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-04T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-03T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-04T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-03T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-04T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-02T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-03T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-02T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-03T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-02T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-03T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-02T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-03T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-02T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-03T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-02T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-03T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-02T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-03T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-02T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-03T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-02T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-03T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-02T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-03T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-02T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-03T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-02T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-03T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-01T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-02T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-01T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-02T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-01T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-02T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-01T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-02T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-01T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-02T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-01T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-02T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-01T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-02T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-01T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-02T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-01T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-02T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-01T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-02T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-01T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-02T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-01T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-02T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-31T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-01T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-31T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-01T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-31T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-01T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-31T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-01T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-31T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-01T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-31T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-01T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-31T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-01T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-31T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-01T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-31T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-01T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-31T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-01T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-31T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-01T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-31T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-01T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-30T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-31T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-30T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-31T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-30T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-31T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-30T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-31T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-30T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-31T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-30T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-31T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-30T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-31T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-30T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-31T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-30T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-31T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-30T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-31T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-30T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-31T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-30T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-31T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-29T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-30T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-29T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-30T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-29T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-30T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-29T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-30T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-29T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-30T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-29T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-30T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-29T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-30T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-29T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-30T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-29T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-30T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-29T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-30T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-29T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-30T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-29T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-30T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-29T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-30T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-28T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-29T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-28T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-29T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-28T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-29T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-28T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-29T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-28T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-29T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-28T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-29T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-28T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-29T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-28T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-29T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-28T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-29T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-28T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-29T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-28T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-29T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-28T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-29T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-28T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-29T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-27T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-28T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-27T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-28T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-27T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-28T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-27T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-28T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-27T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-28T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-27T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-28T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-27T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-28T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-27T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-28T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-27T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-28T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-27T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-28T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-27T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-28T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-27T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-28T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-26T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-27T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-26T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-27T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-26T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-27T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-26T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-27T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-26T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-27T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-26T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-27T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-26T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-27T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-26T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-27T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-26T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-27T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-26T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-27T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-26T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-27T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-26T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-27T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-25T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-26T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-25T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-26T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-25T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-26T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-25T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-26T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-25T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-26T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-25T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-26T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-25T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-26T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-25T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-26T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-25T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-26T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-25T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-26T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-25T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-26T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-25T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-26T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-24T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-25T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-24T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-25T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-24T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-25T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-24T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-25T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-24T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-25T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-24T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-25T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-24T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-25T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-24T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-25T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-24T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-25T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-24T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-25T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-24T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-25T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-24T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-25T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-23T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-24T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-23T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-24T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-23T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-24T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-23T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-24T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-23T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-24T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-23T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-24T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-23T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-24T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-23T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-24T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-23T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-24T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-23T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-24T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-23T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-24T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-23T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-24T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-22T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-23T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-22T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-23T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-22T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-23T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-22T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-23T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-22T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-23T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-22T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-23T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-22T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-23T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-22T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-23T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-22T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-23T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-22T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-23T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-22T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-23T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-22T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-23T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-21T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-22T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-21T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-22T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-21T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-22T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-21T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-22T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-21T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-22T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-21T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-22T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-21T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-22T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-21T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-22T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-21T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-22T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-21T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-22T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-21T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-22T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-21T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-22T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-21T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-22T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-20T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-21T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-20T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-21T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-20T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-21T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-20T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-21T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-20T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-21T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-20T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-21T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-20T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-21T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-20T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-21T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-20T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-21T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-20T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-21T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-20T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-21T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-20T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-21T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-19T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-20T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-19T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-20T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-19T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-20T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-19T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-20T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-19T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-20T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-19T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-20T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-19T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-20T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-19T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-20T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-19T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-20T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-19T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-20T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-19T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-20T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-19T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-20T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-18T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-19T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-18T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-19T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-18T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-19T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-18T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-19T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-18T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-19T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-18T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-19T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-18T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-19T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-18T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-19T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-18T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-19T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-18T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-19T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-18T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-19T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-18T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-19T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-18T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-19T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-17T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-18T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-17T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-18T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-17T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-18T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-17T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-18T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-17T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-18T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-17T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-18T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-17T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-18T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-17T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-18T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-17T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-18T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-17T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-18T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-17T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-18T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-17T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-18T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-16T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-17T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-16T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-17T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-16T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-17T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-16T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-17T05:00:00Z\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    }\n                }\n            ]\n        }\n    }\n}"},{"id":"f8a11b46-b45e-4d64-91f8-509ded1be8af","name":"Example query for production paginated data - second request asking for next page with data","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"description":"OPC subscription key as supplied by NOROG","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"graphql"},"url":"{{graphQueryAPI}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Frame-Options","value":"deny"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Content-Security-Policy","value":"script-src 'self'"},{"key":"Date","value":"Tue, 08 Feb 2022 19:08:07 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"production\": {\n            \"data\": [\n                {\n                    \"pagination\": {\n                        \"currentPage\": 2,\n                        \"itemsPerPage\": 1000,\n                        \"totalPages\": 3,\n                        \"totalRecords\": 2093\n                    },\n                    \"sourceStartTime\": \"2021-06-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-05T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-06T06:38:21Z\",\n                    \"modified\": \"2021-06-06T06:38:21Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-05T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-06T06:38:21Z\",\n                    \"modified\": \"2021-06-06T06:38:21Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-05T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-06T06:38:21Z\",\n                    \"modified\": \"2021-06-06T06:38:21Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-05T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-06T06:38:21Z\",\n                    \"modified\": \"2021-06-06T06:38:21Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-05T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-06T06:38:21Z\",\n                    \"modified\": \"2021-06-06T06:38:21Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-05T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-06T06:38:21Z\",\n                    \"modified\": \"2021-06-06T06:38:21Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-05T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-06T06:38:21Z\",\n                    \"modified\": \"2021-06-06T06:38:21Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-05T04:00:00Z\",\n                    \"uid\": \"GL4707G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Lift Gina Krog wells\",\n                    \"type\": \"gas lift\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-06T06:38:21Z\",\n                    \"modified\": \"2021-06-06T06:38:21Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-05T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-06T06:38:21Z\",\n                    \"modified\": \"2021-06-06T06:38:21Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-05T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-06T06:38:21Z\",\n                    \"modified\": \"2021-06-06T06:38:21Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-04T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-06T06:37:57Z\",\n                    \"modified\": \"2021-06-06T06:37:57Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-04T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-06T06:37:57Z\",\n                    \"modified\": \"2021-06-06T06:37:57Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-04T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-06T06:37:57Z\",\n                    \"modified\": \"2021-06-06T06:37:57Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-04T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-06T06:37:57Z\",\n                    \"modified\": \"2021-06-06T06:37:57Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-04T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-06T06:37:57Z\",\n                    \"modified\": \"2021-06-06T06:37:57Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-04T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-06T06:37:57Z\",\n                    \"modified\": \"2021-06-06T06:37:57Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-04T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-06T06:37:57Z\",\n                    \"modified\": \"2021-06-06T06:37:57Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-04T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-06T06:37:57Z\",\n                    \"modified\": \"2021-06-06T06:37:57Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-04T04:00:00Z\",\n                    \"uid\": null,\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": null,\n                    \"productName\": null,\n                    \"qualifier\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-06T06:37:57Z\",\n                    \"modified\": \"2021-06-06T06:37:57Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-04T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-06T06:37:57Z\",\n                    \"modified\": \"2021-06-06T06:37:57Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-04T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-06T06:37:57Z\",\n                    \"modified\": \"2021-06-06T06:37:57Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-04T04:00:00Z\",\n                    \"uid\": \"GL4707G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Lift Gina Krog wells\",\n                    \"type\": \"gas lift\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-06T06:37:57Z\",\n                    \"modified\": \"2021-06-06T06:37:57Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-04T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-06T06:37:57Z\",\n                    \"modified\": \"2021-06-06T06:37:57Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-04T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-06T06:37:57Z\",\n                    \"modified\": \"2021-06-06T06:37:57Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-03T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-03T12:47:05Z\",\n                    \"modified\": \"2021-06-03T12:47:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-03T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-03T12:47:05Z\",\n                    \"modified\": \"2021-06-03T12:47:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-03T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-03T12:47:05Z\",\n                    \"modified\": \"2021-06-03T12:47:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-03T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-03T12:47:05Z\",\n                    \"modified\": \"2021-06-03T12:47:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-03T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-03T12:47:05Z\",\n                    \"modified\": \"2021-06-03T12:47:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-03T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-03T12:47:05Z\",\n                    \"modified\": \"2021-06-03T12:47:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-03T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-03T12:47:05Z\",\n                    \"modified\": \"2021-06-03T12:47:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-03T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-03T12:47:05Z\",\n                    \"modified\": \"2021-06-03T12:47:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-03T04:00:00Z\",\n                    \"uid\": \"GL4707G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Lift Gina Krog wells\",\n                    \"type\": \"gas lift\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-03T12:47:05Z\",\n                    \"modified\": \"2021-06-03T12:47:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-03T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-03T12:47:05Z\",\n                    \"modified\": \"2021-06-03T12:47:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-03T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-03T12:47:05Z\",\n                    \"modified\": \"2021-06-03T12:47:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-03T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-03T12:47:05Z\",\n                    \"modified\": \"2021-06-03T12:47:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-03T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-03T12:47:05Z\",\n                    \"modified\": \"2021-06-03T12:47:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-02T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-03T12:46:45Z\",\n                    \"modified\": \"2021-06-03T12:46:45Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-02T04:00:00Z\",\n                    \"uid\": \"GL4707G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Lift Gina Krog wells\",\n                    \"type\": \"gas lift\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-03T12:46:45Z\",\n                    \"modified\": \"2021-06-03T12:46:45Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-02T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-03T12:46:45Z\",\n                    \"modified\": \"2021-06-03T12:46:45Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-02T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-03T12:46:45Z\",\n                    \"modified\": \"2021-06-03T12:46:45Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-02T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-03T12:46:45Z\",\n                    \"modified\": \"2021-06-03T12:46:45Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-02T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-03T12:46:45Z\",\n                    \"modified\": \"2021-06-03T12:46:45Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-02T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-03T12:46:45Z\",\n                    \"modified\": \"2021-06-03T12:46:45Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-02T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-03T12:46:45Z\",\n                    \"modified\": \"2021-06-03T12:46:45Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-02T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-03T12:46:45Z\",\n                    \"modified\": \"2021-06-03T12:46:45Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-02T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-03T12:46:45Z\",\n                    \"modified\": \"2021-06-03T12:46:45Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-02T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-03T12:46:45Z\",\n                    \"modified\": \"2021-06-03T12:46:45Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-02T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-03T12:46:45Z\",\n                    \"modified\": \"2021-06-03T12:46:45Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-06-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-06-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-02T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-03T12:46:45Z\",\n                    \"modified\": \"2021-06-03T12:46:45Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-31T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-01T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-01T06:43:39Z\",\n                    \"modified\": \"2021-06-01T06:43:39Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-31T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-01T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-01T06:43:39Z\",\n                    \"modified\": \"2021-06-01T06:43:39Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-31T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-01T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-01T06:43:39Z\",\n                    \"modified\": \"2021-06-01T06:43:39Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-31T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-01T04:00:00Z\",\n                    \"uid\": \"GL4707G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Lift Gina Krog wells\",\n                    \"type\": \"gas lift\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-01T06:43:39Z\",\n                    \"modified\": \"2021-06-01T06:43:39Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-31T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-01T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-01T06:43:39Z\",\n                    \"modified\": \"2021-06-01T06:43:39Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-31T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-01T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-01T06:43:39Z\",\n                    \"modified\": \"2021-06-01T06:43:39Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-31T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-01T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-01T06:43:39Z\",\n                    \"modified\": \"2021-06-01T06:43:39Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-31T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-01T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-01T06:43:39Z\",\n                    \"modified\": \"2021-06-01T06:43:39Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-31T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-01T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-01T06:43:39Z\",\n                    \"modified\": \"2021-06-01T06:43:39Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-31T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-01T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-01T06:43:39Z\",\n                    \"modified\": \"2021-06-01T06:43:39Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-31T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-01T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-01T06:43:39Z\",\n                    \"modified\": \"2021-06-01T06:43:39Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-31T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-01T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-01T06:43:39Z\",\n                    \"modified\": \"2021-06-01T06:43:39Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-06-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-31T04:00:00Z\",\n                    \"dataEndTime\": \"2021-06-01T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-01T06:43:39Z\",\n                    \"modified\": \"2021-06-01T06:43:39Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-31T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-01T06:42:49Z\",\n                    \"modified\": \"2021-06-01T06:42:49Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-31T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-01T06:42:49Z\",\n                    \"modified\": \"2021-06-01T06:42:49Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-31T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-01T06:42:49Z\",\n                    \"modified\": \"2021-06-01T06:42:49Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-31T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-01T06:42:49Z\",\n                    \"modified\": \"2021-06-01T06:42:49Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-31T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-01T06:42:49Z\",\n                    \"modified\": \"2021-06-01T06:42:49Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-31T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-01T06:42:49Z\",\n                    \"modified\": \"2021-06-01T06:42:49Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-31T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-01T06:42:49Z\",\n                    \"modified\": \"2021-06-01T06:42:49Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-31T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-01T06:42:49Z\",\n                    \"modified\": \"2021-06-01T06:42:49Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-31T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-01T06:42:49Z\",\n                    \"modified\": \"2021-06-01T06:42:49Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-31T04:00:00Z\",\n                    \"uid\": \"GL4707G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Lift Gina Krog wells\",\n                    \"type\": \"gas lift\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-01T06:42:49Z\",\n                    \"modified\": \"2021-06-01T06:42:49Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-31T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-01T06:42:49Z\",\n                    \"modified\": \"2021-06-01T06:42:49Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-31T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-01T06:42:49Z\",\n                    \"modified\": \"2021-06-01T06:42:49Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-31T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-06-01T06:42:49Z\",\n                    \"modified\": \"2021-06-01T06:42:49Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-30T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-31T06:58:43Z\",\n                    \"modified\": \"2021-05-31T06:58:43Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-30T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-31T06:58:43Z\",\n                    \"modified\": \"2021-05-31T06:58:43Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-30T04:00:00Z\",\n                    \"uid\": \"GL4707G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Lift Gina Krog wells\",\n                    \"type\": \"gas lift\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-31T06:58:43Z\",\n                    \"modified\": \"2021-05-31T06:58:43Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-30T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-31T06:58:43Z\",\n                    \"modified\": \"2021-05-31T06:58:43Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-30T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-31T06:58:43Z\",\n                    \"modified\": \"2021-05-31T06:58:43Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-30T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-31T06:58:43Z\",\n                    \"modified\": \"2021-05-31T06:58:43Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-30T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-31T06:58:43Z\",\n                    \"modified\": \"2021-05-31T06:58:43Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-30T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-31T06:58:43Z\",\n                    \"modified\": \"2021-05-31T06:58:43Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-30T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-31T06:58:43Z\",\n                    \"modified\": \"2021-05-31T06:58:43Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-30T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-31T06:58:43Z\",\n                    \"modified\": \"2021-05-31T06:58:43Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-30T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-31T06:58:43Z\",\n                    \"modified\": \"2021-05-31T06:58:43Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-30T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-31T06:58:43Z\",\n                    \"modified\": \"2021-05-31T06:58:43Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-30T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-31T06:58:43Z\",\n                    \"modified\": \"2021-05-31T06:58:43Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-29T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-31T06:58:13Z\",\n                    \"modified\": \"2021-05-31T06:58:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-29T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-31T06:58:13Z\",\n                    \"modified\": \"2021-05-31T06:58:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-29T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-31T06:58:13Z\",\n                    \"modified\": \"2021-05-31T06:58:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-29T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-31T06:58:13Z\",\n                    \"modified\": \"2021-05-31T06:58:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-29T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-31T06:58:13Z\",\n                    \"modified\": \"2021-05-31T06:58:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-29T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-31T06:58:13Z\",\n                    \"modified\": \"2021-05-31T06:58:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-29T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-31T06:58:13Z\",\n                    \"modified\": \"2021-05-31T06:58:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-29T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-31T06:58:13Z\",\n                    \"modified\": \"2021-05-31T06:58:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-29T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-31T06:58:13Z\",\n                    \"modified\": \"2021-05-31T06:58:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-29T04:00:00Z\",\n                    \"uid\": \"GL4707G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Lift Gina Krog wells\",\n                    \"type\": \"gas lift\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-31T06:58:13Z\",\n                    \"modified\": \"2021-05-31T06:58:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-29T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-31T06:58:13Z\",\n                    \"modified\": \"2021-05-31T06:58:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-29T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-31T06:58:13Z\",\n                    \"modified\": \"2021-05-31T06:58:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-29T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-31T06:58:13Z\",\n                    \"modified\": \"2021-05-31T06:58:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-28T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-30T13:31:16Z\",\n                    \"modified\": \"2021-05-30T13:31:16Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-28T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-30T13:31:16Z\",\n                    \"modified\": \"2021-05-30T13:31:16Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-28T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-30T13:31:16Z\",\n                    \"modified\": \"2021-05-30T13:31:16Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-28T04:00:00Z\",\n                    \"uid\": \"GL4707G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Lift Gina Krog wells\",\n                    \"type\": \"gas lift\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-30T13:31:16Z\",\n                    \"modified\": \"2021-05-30T13:31:16Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-28T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-30T13:31:16Z\",\n                    \"modified\": \"2021-05-30T13:31:16Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-28T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-30T13:31:16Z\",\n                    \"modified\": \"2021-05-30T13:31:16Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-28T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-30T13:31:16Z\",\n                    \"modified\": \"2021-05-30T13:31:16Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-28T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-30T13:31:16Z\",\n                    \"modified\": \"2021-05-30T13:31:16Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-28T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-30T13:31:16Z\",\n                    \"modified\": \"2021-05-30T13:31:16Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-28T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-30T13:31:16Z\",\n                    \"modified\": \"2021-05-30T13:31:16Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-28T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-30T13:31:16Z\",\n                    \"modified\": \"2021-05-30T13:31:16Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-28T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-30T13:31:16Z\",\n                    \"modified\": \"2021-05-30T13:31:16Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-28T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-30T13:31:16Z\",\n                    \"modified\": \"2021-05-30T13:31:16Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-27T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-27T12:46:13Z\",\n                    \"modified\": \"2021-05-27T12:46:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-27T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-27T12:46:13Z\",\n                    \"modified\": \"2021-05-27T12:46:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-27T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-27T12:46:13Z\",\n                    \"modified\": \"2021-05-27T12:46:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-27T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-27T12:46:13Z\",\n                    \"modified\": \"2021-05-27T12:46:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-27T04:00:00Z\",\n                    \"uid\": null,\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": null,\n                    \"productName\": null,\n                    \"qualifier\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-27T12:46:13Z\",\n                    \"modified\": \"2021-05-27T12:46:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-27T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-27T12:46:13Z\",\n                    \"modified\": \"2021-05-27T12:46:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-27T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-27T12:46:13Z\",\n                    \"modified\": \"2021-05-27T12:46:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-27T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-27T12:46:13Z\",\n                    \"modified\": \"2021-05-27T12:46:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-27T04:00:00Z\",\n                    \"uid\": \"GL4707G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Lift Gina Krog wells\",\n                    \"type\": \"gas lift\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-27T12:46:13Z\",\n                    \"modified\": \"2021-05-27T12:46:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-27T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-27T12:46:13Z\",\n                    \"modified\": \"2021-05-27T12:46:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-27T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-27T12:46:13Z\",\n                    \"modified\": \"2021-05-27T12:46:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-27T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-27T12:46:13Z\",\n                    \"modified\": \"2021-05-27T12:46:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-27T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-27T12:46:13Z\",\n                    \"modified\": \"2021-05-27T12:46:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-27T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-27T12:46:13Z\",\n                    \"modified\": \"2021-05-27T12:46:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-26T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-26T10:49:48Z\",\n                    \"modified\": \"2021-05-26T10:49:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-26T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-26T10:49:48Z\",\n                    \"modified\": \"2021-05-26T10:49:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-26T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-26T10:49:48Z\",\n                    \"modified\": \"2021-05-26T10:49:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-26T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-26T10:49:48Z\",\n                    \"modified\": \"2021-05-26T10:49:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-26T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-26T10:49:48Z\",\n                    \"modified\": \"2021-05-26T10:49:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-26T04:00:00Z\",\n                    \"uid\": null,\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": null,\n                    \"productName\": null,\n                    \"qualifier\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-26T10:49:48Z\",\n                    \"modified\": \"2021-05-26T10:49:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-26T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-26T10:49:48Z\",\n                    \"modified\": \"2021-05-26T10:49:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-26T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-26T10:49:48Z\",\n                    \"modified\": \"2021-05-26T10:49:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-26T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-26T10:49:48Z\",\n                    \"modified\": \"2021-05-26T10:49:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-26T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-26T10:49:48Z\",\n                    \"modified\": \"2021-05-26T10:49:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-26T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-26T10:49:48Z\",\n                    \"modified\": \"2021-05-26T10:49:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-26T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-26T10:49:48Z\",\n                    \"modified\": \"2021-05-26T10:49:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-26T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-26T10:49:48Z\",\n                    \"modified\": \"2021-05-26T10:49:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-25T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-26T10:50:09Z\",\n                    \"modified\": \"2021-05-26T10:50:09Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-25T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-26T10:50:09Z\",\n                    \"modified\": \"2021-05-26T10:50:09Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-25T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-26T10:50:09Z\",\n                    \"modified\": \"2021-05-26T10:50:09Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-25T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-26T10:50:09Z\",\n                    \"modified\": \"2021-05-26T10:50:09Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-25T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-26T10:50:09Z\",\n                    \"modified\": \"2021-05-26T10:50:09Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-25T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-26T10:50:09Z\",\n                    \"modified\": \"2021-05-26T10:50:09Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-25T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-26T10:50:09Z\",\n                    \"modified\": \"2021-05-26T10:50:09Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-25T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-26T10:50:09Z\",\n                    \"modified\": \"2021-05-26T10:50:09Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-25T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-26T10:50:09Z\",\n                    \"modified\": \"2021-05-26T10:50:09Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-25T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-26T10:50:09Z\",\n                    \"modified\": \"2021-05-26T10:50:09Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-25T04:00:00Z\",\n                    \"uid\": null,\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": null,\n                    \"productName\": null,\n                    \"qualifier\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-26T10:50:09Z\",\n                    \"modified\": \"2021-05-26T10:50:09Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-25T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-26T10:50:09Z\",\n                    \"modified\": \"2021-05-26T10:50:09Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-25T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-26T10:50:09Z\",\n                    \"modified\": \"2021-05-26T10:50:09Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-24T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T08:10:33Z\",\n                    \"modified\": \"2021-05-25T08:10:33Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-24T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T08:10:33Z\",\n                    \"modified\": \"2021-05-25T08:10:33Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-24T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T08:10:33Z\",\n                    \"modified\": \"2021-05-25T08:10:33Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-24T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T08:10:33Z\",\n                    \"modified\": \"2021-05-25T08:10:33Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-24T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T08:10:33Z\",\n                    \"modified\": \"2021-05-25T08:10:33Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-24T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T08:10:33Z\",\n                    \"modified\": \"2021-05-25T08:10:33Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-24T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T08:10:33Z\",\n                    \"modified\": \"2021-05-25T08:10:33Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-24T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T08:10:33Z\",\n                    \"modified\": \"2021-05-25T08:10:33Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-24T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T08:10:33Z\",\n                    \"modified\": \"2021-05-25T08:10:33Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-24T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T08:10:33Z\",\n                    \"modified\": \"2021-05-25T08:10:33Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-24T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T08:10:33Z\",\n                    \"modified\": \"2021-05-25T08:10:33Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-24T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T08:10:33Z\",\n                    \"modified\": \"2021-05-25T08:10:33Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-23T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T08:10:14Z\",\n                    \"modified\": \"2021-05-25T08:10:14Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-23T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T08:10:14Z\",\n                    \"modified\": \"2021-05-25T08:10:14Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-23T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T08:10:14Z\",\n                    \"modified\": \"2021-05-25T08:10:14Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-23T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T08:10:14Z\",\n                    \"modified\": \"2021-05-25T08:10:14Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-23T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T08:10:14Z\",\n                    \"modified\": \"2021-05-25T08:10:14Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-23T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T08:10:14Z\",\n                    \"modified\": \"2021-05-25T08:10:14Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-23T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T08:10:14Z\",\n                    \"modified\": \"2021-05-25T08:10:14Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-23T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T08:10:14Z\",\n                    \"modified\": \"2021-05-25T08:10:14Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-23T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T08:10:14Z\",\n                    \"modified\": \"2021-05-25T08:10:14Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-23T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T08:10:14Z\",\n                    \"modified\": \"2021-05-25T08:10:14Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-23T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T08:10:14Z\",\n                    \"modified\": \"2021-05-25T08:10:14Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-23T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T08:10:14Z\",\n                    \"modified\": \"2021-05-25T08:10:14Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-22T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T08:09:20Z\",\n                    \"modified\": \"2021-05-25T08:09:20Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-22T04:00:00Z\",\n                    \"uid\": null,\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": null,\n                    \"productName\": null,\n                    \"qualifier\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T08:09:20Z\",\n                    \"modified\": \"2021-05-25T08:09:20Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-22T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T08:09:20Z\",\n                    \"modified\": \"2021-05-25T08:09:20Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-22T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T08:09:20Z\",\n                    \"modified\": \"2021-05-25T08:09:20Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-22T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T08:09:20Z\",\n                    \"modified\": \"2021-05-25T08:09:20Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-22T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T08:09:20Z\",\n                    \"modified\": \"2021-05-25T08:09:20Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-22T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T08:09:20Z\",\n                    \"modified\": \"2021-05-25T08:09:20Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-22T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T08:09:20Z\",\n                    \"modified\": \"2021-05-25T08:09:20Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-22T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T08:09:20Z\",\n                    \"modified\": \"2021-05-25T08:09:20Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-22T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T08:09:20Z\",\n                    \"modified\": \"2021-05-25T08:09:20Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-22T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T08:09:20Z\",\n                    \"modified\": \"2021-05-25T08:09:20Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-22T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T08:09:20Z\",\n                    \"modified\": \"2021-05-25T08:09:20Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-22T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T08:09:20Z\",\n                    \"modified\": \"2021-05-25T08:09:20Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-22T04:00:00Z\",\n                    \"uid\": null,\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": null,\n                    \"productName\": null,\n                    \"qualifier\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T08:09:20Z\",\n                    \"modified\": \"2021-05-25T08:09:20Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-22T04:00:00Z\",\n                    \"uid\": null,\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": null,\n                    \"productName\": null,\n                    \"qualifier\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T08:09:20Z\",\n                    \"modified\": \"2021-05-25T08:09:20Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-22T04:00:00Z\",\n                    \"uid\": null,\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": null,\n                    \"productName\": null,\n                    \"qualifier\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T08:09:20Z\",\n                    \"modified\": \"2021-05-25T08:09:20Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-21T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T05:58:22Z\",\n                    \"modified\": \"2021-05-25T05:58:22Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-21T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T05:58:22Z\",\n                    \"modified\": \"2021-05-25T05:58:22Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-21T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T05:58:22Z\",\n                    \"modified\": \"2021-05-25T05:58:22Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-21T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T05:58:22Z\",\n                    \"modified\": \"2021-05-25T05:58:22Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-21T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T05:58:22Z\",\n                    \"modified\": \"2021-05-25T05:58:22Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-21T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T05:58:22Z\",\n                    \"modified\": \"2021-05-25T05:58:22Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-21T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T05:58:22Z\",\n                    \"modified\": \"2021-05-25T05:58:22Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-21T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T05:58:22Z\",\n                    \"modified\": \"2021-05-25T05:58:22Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-21T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T05:58:22Z\",\n                    \"modified\": \"2021-05-25T05:58:22Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-21T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T05:58:22Z\",\n                    \"modified\": \"2021-05-25T05:58:22Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-21T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T05:58:22Z\",\n                    \"modified\": \"2021-05-25T05:58:22Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-21T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T05:58:22Z\",\n                    \"modified\": \"2021-05-25T05:58:22Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-21T04:00:00Z\",\n                    \"uid\": null,\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": null,\n                    \"productName\": null,\n                    \"qualifier\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-25T05:58:22Z\",\n                    \"modified\": \"2021-05-25T05:58:22Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-20T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-20T07:13:42Z\",\n                    \"modified\": \"2021-05-20T07:13:42Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-20T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-20T07:13:42Z\",\n                    \"modified\": \"2021-05-20T07:13:42Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-20T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-20T07:13:42Z\",\n                    \"modified\": \"2021-05-20T07:13:42Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-20T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-20T07:13:42Z\",\n                    \"modified\": \"2021-05-20T07:13:42Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-20T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-20T07:13:42Z\",\n                    \"modified\": \"2021-05-20T07:13:42Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-20T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-20T07:13:42Z\",\n                    \"modified\": \"2021-05-20T07:13:42Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-20T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-20T07:13:42Z\",\n                    \"modified\": \"2021-05-20T07:13:42Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-20T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-20T07:13:42Z\",\n                    \"modified\": \"2021-05-20T07:13:42Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-20T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-20T07:13:42Z\",\n                    \"modified\": \"2021-05-20T07:13:42Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-20T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-20T07:13:42Z\",\n                    \"modified\": \"2021-05-20T07:13:42Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-20T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-20T07:13:42Z\",\n                    \"modified\": \"2021-05-20T07:13:42Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-20T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-20T07:13:42Z\",\n                    \"modified\": \"2021-05-20T07:13:42Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-19T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:59:34Z\",\n                    \"modified\": \"2021-05-19T08:59:34Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-19T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:59:34Z\",\n                    \"modified\": \"2021-05-19T08:59:34Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-19T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:59:34Z\",\n                    \"modified\": \"2021-05-19T08:59:34Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-19T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:59:34Z\",\n                    \"modified\": \"2021-05-19T08:59:34Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-19T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:59:34Z\",\n                    \"modified\": \"2021-05-19T08:59:34Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-19T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:59:34Z\",\n                    \"modified\": \"2021-05-19T08:59:34Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-19T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:59:34Z\",\n                    \"modified\": \"2021-05-19T08:59:34Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-19T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:59:34Z\",\n                    \"modified\": \"2021-05-19T08:59:34Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-19T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:59:34Z\",\n                    \"modified\": \"2021-05-19T08:59:34Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-19T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:59:34Z\",\n                    \"modified\": \"2021-05-19T08:59:34Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-19T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:59:34Z\",\n                    \"modified\": \"2021-05-19T08:59:34Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-19T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:59:34Z\",\n                    \"modified\": \"2021-05-19T08:59:34Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-18T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:58:40Z\",\n                    \"modified\": \"2021-05-19T08:58:40Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-18T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:58:40Z\",\n                    \"modified\": \"2021-05-19T08:58:40Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-18T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:58:40Z\",\n                    \"modified\": \"2021-05-19T08:58:40Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-18T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:58:40Z\",\n                    \"modified\": \"2021-05-19T08:58:40Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-18T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:58:40Z\",\n                    \"modified\": \"2021-05-19T08:58:40Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-18T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:58:40Z\",\n                    \"modified\": \"2021-05-19T08:58:40Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-18T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:58:40Z\",\n                    \"modified\": \"2021-05-19T08:58:40Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-18T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:58:40Z\",\n                    \"modified\": \"2021-05-19T08:58:40Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-18T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:58:40Z\",\n                    \"modified\": \"2021-05-19T08:58:40Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-18T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:58:40Z\",\n                    \"modified\": \"2021-05-19T08:58:40Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-18T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:58:40Z\",\n                    \"modified\": \"2021-05-19T08:58:40Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-18T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:58:40Z\",\n                    \"modified\": \"2021-05-19T08:58:40Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-17T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:40:15Z\",\n                    \"modified\": \"2021-05-19T08:40:15Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-17T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:40:15Z\",\n                    \"modified\": \"2021-05-19T08:40:15Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-17T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:40:15Z\",\n                    \"modified\": \"2021-05-19T08:40:15Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-17T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:40:15Z\",\n                    \"modified\": \"2021-05-19T08:40:15Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-17T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:40:15Z\",\n                    \"modified\": \"2021-05-19T08:40:15Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-17T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:40:15Z\",\n                    \"modified\": \"2021-05-19T08:40:15Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-17T04:00:00Z\",\n                    \"uid\": null,\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": null,\n                    \"productName\": null,\n                    \"qualifier\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:40:15Z\",\n                    \"modified\": \"2021-05-19T08:40:15Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-17T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:40:15Z\",\n                    \"modified\": \"2021-05-19T08:40:15Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-17T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:40:15Z\",\n                    \"modified\": \"2021-05-19T08:40:15Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-17T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:40:15Z\",\n                    \"modified\": \"2021-05-19T08:40:15Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-17T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:40:15Z\",\n                    \"modified\": \"2021-05-19T08:40:15Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-17T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:40:15Z\",\n                    \"modified\": \"2021-05-19T08:40:15Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-17T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:40:15Z\",\n                    \"modified\": \"2021-05-19T08:40:15Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-16T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:35:36Z\",\n                    \"modified\": \"2021-05-19T08:35:36Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-16T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:35:36Z\",\n                    \"modified\": \"2021-05-19T08:35:36Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-16T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:35:36Z\",\n                    \"modified\": \"2021-05-19T08:35:36Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-16T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:35:36Z\",\n                    \"modified\": \"2021-05-19T08:35:36Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-16T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:35:36Z\",\n                    \"modified\": \"2021-05-19T08:35:36Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-16T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:35:36Z\",\n                    \"modified\": \"2021-05-19T08:35:36Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-16T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:35:36Z\",\n                    \"modified\": \"2021-05-19T08:35:36Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-16T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:35:36Z\",\n                    \"modified\": \"2021-05-19T08:35:36Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-16T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:35:36Z\",\n                    \"modified\": \"2021-05-19T08:35:36Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-16T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:35:36Z\",\n                    \"modified\": \"2021-05-19T08:35:36Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-16T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:35:36Z\",\n                    \"modified\": \"2021-05-19T08:35:36Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-16T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:35:36Z\",\n                    \"modified\": \"2021-05-19T08:35:36Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-15T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:35:01Z\",\n                    \"modified\": \"2021-05-19T08:35:01Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-15T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:35:01Z\",\n                    \"modified\": \"2021-05-19T08:35:01Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-15T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:35:01Z\",\n                    \"modified\": \"2021-05-19T08:35:01Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-15T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:35:01Z\",\n                    \"modified\": \"2021-05-19T08:35:01Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-15T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:35:01Z\",\n                    \"modified\": \"2021-05-19T08:35:01Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-15T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:35:01Z\",\n                    \"modified\": \"2021-05-19T08:35:01Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-15T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:35:01Z\",\n                    \"modified\": \"2021-05-19T08:35:01Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-15T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:35:01Z\",\n                    \"modified\": \"2021-05-19T08:35:01Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-15T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:35:01Z\",\n                    \"modified\": \"2021-05-19T08:35:01Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-15T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:35:01Z\",\n                    \"modified\": \"2021-05-19T08:35:01Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-15T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:35:01Z\",\n                    \"modified\": \"2021-05-19T08:35:01Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-15T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-19T08:35:01Z\",\n                    \"modified\": \"2021-05-19T08:35:01Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-14T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-15T06:51:05Z\",\n                    \"modified\": \"2021-05-15T06:51:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-14T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-15T06:51:05Z\",\n                    \"modified\": \"2021-05-15T06:51:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-14T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-15T06:51:05Z\",\n                    \"modified\": \"2021-05-15T06:51:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-14T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-15T06:51:05Z\",\n                    \"modified\": \"2021-05-15T06:51:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-14T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-15T06:51:05Z\",\n                    \"modified\": \"2021-05-15T06:51:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-14T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-15T06:51:05Z\",\n                    \"modified\": \"2021-05-15T06:51:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-14T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-15T06:51:05Z\",\n                    \"modified\": \"2021-05-15T06:51:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-14T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-15T06:51:05Z\",\n                    \"modified\": \"2021-05-15T06:51:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-14T04:00:00Z\",\n                    \"uid\": null,\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": null,\n                    \"productName\": null,\n                    \"qualifier\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-15T06:51:05Z\",\n                    \"modified\": \"2021-05-15T06:51:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-14T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-15T06:51:05Z\",\n                    \"modified\": \"2021-05-15T06:51:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-14T04:00:00Z\",\n                    \"uid\": null,\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": null,\n                    \"productName\": null,\n                    \"qualifier\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-15T06:51:05Z\",\n                    \"modified\": \"2021-05-15T06:51:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-14T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-15T06:51:05Z\",\n                    \"modified\": \"2021-05-15T06:51:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-14T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-15T06:51:05Z\",\n                    \"modified\": \"2021-05-15T06:51:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-14T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-15T06:51:05Z\",\n                    \"modified\": \"2021-05-15T06:51:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-13T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-15T06:50:02Z\",\n                    \"modified\": \"2021-05-15T06:50:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-13T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-15T06:50:02Z\",\n                    \"modified\": \"2021-05-15T06:50:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-13T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-15T06:50:02Z\",\n                    \"modified\": \"2021-05-15T06:50:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-13T04:00:00Z\",\n                    \"uid\": null,\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": null,\n                    \"productName\": null,\n                    \"qualifier\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-15T06:50:02Z\",\n                    \"modified\": \"2021-05-15T06:50:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-13T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-15T06:50:02Z\",\n                    \"modified\": \"2021-05-15T06:50:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-13T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-15T06:50:02Z\",\n                    \"modified\": \"2021-05-15T06:50:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-13T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-15T06:50:02Z\",\n                    \"modified\": \"2021-05-15T06:50:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-13T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-15T06:50:02Z\",\n                    \"modified\": \"2021-05-15T06:50:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-13T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-15T06:50:02Z\",\n                    \"modified\": \"2021-05-15T06:50:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-13T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-15T06:50:02Z\",\n                    \"modified\": \"2021-05-15T06:50:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-13T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-15T06:50:02Z\",\n                    \"modified\": \"2021-05-15T06:50:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-13T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-15T06:50:02Z\",\n                    \"modified\": \"2021-05-15T06:50:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-13T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-15T06:50:02Z\",\n                    \"modified\": \"2021-05-15T06:50:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-12T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-12T11:32:48Z\",\n                    \"modified\": \"2021-05-12T11:32:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-12T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-12T11:32:48Z\",\n                    \"modified\": \"2021-05-12T11:32:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-12T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-12T11:32:48Z\",\n                    \"modified\": \"2021-05-12T11:32:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-12T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-12T11:32:48Z\",\n                    \"modified\": \"2021-05-12T11:32:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-12T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-12T11:32:48Z\",\n                    \"modified\": \"2021-05-12T11:32:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-12T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-12T11:32:48Z\",\n                    \"modified\": \"2021-05-12T11:32:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-12T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-12T11:32:48Z\",\n                    \"modified\": \"2021-05-12T11:32:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-12T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-12T11:32:48Z\",\n                    \"modified\": \"2021-05-12T11:32:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-12T04:00:00Z\",\n                    \"uid\": null,\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": null,\n                    \"productName\": null,\n                    \"qualifier\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-12T11:32:48Z\",\n                    \"modified\": \"2021-05-12T11:32:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-12T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-12T11:32:48Z\",\n                    \"modified\": \"2021-05-12T11:32:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-12T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-12T11:32:48Z\",\n                    \"modified\": \"2021-05-12T11:32:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-12T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-12T11:32:48Z\",\n                    \"modified\": \"2021-05-12T11:32:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-12T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-12T11:32:48Z\",\n                    \"modified\": \"2021-05-12T11:32:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-11T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:56:12Z\",\n                    \"modified\": \"2021-05-11T06:56:12Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-11T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:56:12Z\",\n                    \"modified\": \"2021-05-11T06:56:12Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-11T04:00:00Z\",\n                    \"uid\": null,\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": null,\n                    \"productName\": null,\n                    \"qualifier\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:56:12Z\",\n                    \"modified\": \"2021-05-11T06:56:12Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-11T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:56:12Z\",\n                    \"modified\": \"2021-05-11T06:56:12Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-11T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:56:12Z\",\n                    \"modified\": \"2021-05-11T06:56:12Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-11T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:56:12Z\",\n                    \"modified\": \"2021-05-11T06:56:12Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-11T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:56:12Z\",\n                    \"modified\": \"2021-05-11T06:56:12Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-11T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:56:12Z\",\n                    \"modified\": \"2021-05-11T06:56:12Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-11T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:56:12Z\",\n                    \"modified\": \"2021-05-11T06:56:12Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-11T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:56:12Z\",\n                    \"modified\": \"2021-05-11T06:56:12Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-11T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:56:12Z\",\n                    \"modified\": \"2021-05-11T06:56:12Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-11T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:56:12Z\",\n                    \"modified\": \"2021-05-11T06:56:12Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-11T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:56:12Z\",\n                    \"modified\": \"2021-05-11T06:56:12Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-10T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:58:14Z\",\n                    \"modified\": \"2021-05-11T06:58:14Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-10T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:58:14Z\",\n                    \"modified\": \"2021-05-11T06:58:14Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-10T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:58:14Z\",\n                    \"modified\": \"2021-05-11T06:58:14Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-10T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:58:14Z\",\n                    \"modified\": \"2021-05-11T06:58:14Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-10T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:58:14Z\",\n                    \"modified\": \"2021-05-11T06:58:14Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-10T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:58:14Z\",\n                    \"modified\": \"2021-05-11T06:58:14Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-10T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:58:14Z\",\n                    \"modified\": \"2021-05-11T06:58:14Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-10T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:58:14Z\",\n                    \"modified\": \"2021-05-11T06:58:14Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-10T04:00:00Z\",\n                    \"uid\": null,\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": null,\n                    \"productName\": null,\n                    \"qualifier\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:58:14Z\",\n                    \"modified\": \"2021-05-11T06:58:14Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-10T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:58:14Z\",\n                    \"modified\": \"2021-05-11T06:58:14Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-10T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:58:14Z\",\n                    \"modified\": \"2021-05-11T06:58:14Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-10T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:58:14Z\",\n                    \"modified\": \"2021-05-11T06:58:14Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-10T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:58:14Z\",\n                    \"modified\": \"2021-05-11T06:58:14Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-09T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:57:13Z\",\n                    \"modified\": \"2021-05-11T06:57:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-09T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:57:13Z\",\n                    \"modified\": \"2021-05-11T06:57:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-09T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:57:13Z\",\n                    \"modified\": \"2021-05-11T06:57:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-09T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:57:13Z\",\n                    \"modified\": \"2021-05-11T06:57:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-09T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:57:13Z\",\n                    \"modified\": \"2021-05-11T06:57:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-09T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:57:13Z\",\n                    \"modified\": \"2021-05-11T06:57:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-09T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:57:13Z\",\n                    \"modified\": \"2021-05-11T06:57:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-09T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:57:13Z\",\n                    \"modified\": \"2021-05-11T06:57:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-09T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:57:13Z\",\n                    \"modified\": \"2021-05-11T06:57:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-09T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:57:13Z\",\n                    \"modified\": \"2021-05-11T06:57:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-09T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:57:13Z\",\n                    \"modified\": \"2021-05-11T06:57:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-09T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:57:13Z\",\n                    \"modified\": \"2021-05-11T06:57:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-08T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:56:47Z\",\n                    \"modified\": \"2021-05-11T06:56:47Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-08T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:56:47Z\",\n                    \"modified\": \"2021-05-11T06:56:47Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-08T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:56:47Z\",\n                    \"modified\": \"2021-05-11T06:56:47Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-08T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:56:47Z\",\n                    \"modified\": \"2021-05-11T06:56:47Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-08T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:56:47Z\",\n                    \"modified\": \"2021-05-11T06:56:47Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-08T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:56:47Z\",\n                    \"modified\": \"2021-05-11T06:56:47Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-08T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:56:47Z\",\n                    \"modified\": \"2021-05-11T06:56:47Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-08T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:56:47Z\",\n                    \"modified\": \"2021-05-11T06:56:47Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-08T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:56:47Z\",\n                    \"modified\": \"2021-05-11T06:56:47Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-08T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:56:47Z\",\n                    \"modified\": \"2021-05-11T06:56:47Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-08T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:56:47Z\",\n                    \"modified\": \"2021-05-11T06:56:47Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-07T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-08T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-11T06:56:47Z\",\n                    \"modified\": \"2021-05-11T06:56:47Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-07T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-09T10:54:58Z\",\n                    \"modified\": \"2021-05-09T10:54:58Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-07T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-09T10:54:58Z\",\n                    \"modified\": \"2021-05-09T10:54:58Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-07T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-09T10:54:58Z\",\n                    \"modified\": \"2021-05-09T10:54:58Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-07T04:00:00Z\",\n                    \"uid\": null,\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": null,\n                    \"productName\": null,\n                    \"qualifier\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-09T10:54:58Z\",\n                    \"modified\": \"2021-05-09T10:54:58Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-07T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-09T10:54:58Z\",\n                    \"modified\": \"2021-05-09T10:54:58Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-07T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-09T10:54:58Z\",\n                    \"modified\": \"2021-05-09T10:54:58Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-07T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-09T10:54:58Z\",\n                    \"modified\": \"2021-05-09T10:54:58Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-07T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-09T10:54:58Z\",\n                    \"modified\": \"2021-05-09T10:54:58Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-07T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-09T10:54:58Z\",\n                    \"modified\": \"2021-05-09T10:54:58Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-07T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-09T10:54:58Z\",\n                    \"modified\": \"2021-05-09T10:54:58Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-07T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-09T10:54:58Z\",\n                    \"modified\": \"2021-05-09T10:54:58Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-07T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-09T10:54:58Z\",\n                    \"modified\": \"2021-05-09T10:54:58Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-06T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-07T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-09T10:54:58Z\",\n                    \"modified\": \"2021-05-09T10:54:58Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-06T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-06T16:49:28Z\",\n                    \"modified\": \"2021-05-06T16:49:28Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-06T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-06T16:49:28Z\",\n                    \"modified\": \"2021-05-06T16:49:28Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-06T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-06T16:49:28Z\",\n                    \"modified\": \"2021-05-06T16:49:28Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-06T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-06T16:49:28Z\",\n                    \"modified\": \"2021-05-06T16:49:28Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-06T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-06T16:49:28Z\",\n                    \"modified\": \"2021-05-06T16:49:28Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-06T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-06T16:49:28Z\",\n                    \"modified\": \"2021-05-06T16:49:28Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-06T04:00:00Z\",\n                    \"uid\": null,\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": null,\n                    \"productName\": null,\n                    \"qualifier\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-06T16:49:28Z\",\n                    \"modified\": \"2021-05-06T16:49:28Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-06T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-06T16:49:28Z\",\n                    \"modified\": \"2021-05-06T16:49:28Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-06T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-06T16:49:28Z\",\n                    \"modified\": \"2021-05-06T16:49:28Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-06T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-06T16:49:28Z\",\n                    \"modified\": \"2021-05-06T16:49:28Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-06T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-06T16:49:28Z\",\n                    \"modified\": \"2021-05-06T16:49:28Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-06T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-06T16:49:28Z\",\n                    \"modified\": \"2021-05-06T16:49:28Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-05T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-06T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-06T16:49:28Z\",\n                    \"modified\": \"2021-05-06T16:49:28Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-05T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T11:55:03Z\",\n                    \"modified\": \"2021-05-05T11:55:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-05T04:00:00Z\",\n                    \"uid\": null,\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": null,\n                    \"productName\": null,\n                    \"qualifier\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T11:55:03Z\",\n                    \"modified\": \"2021-05-05T11:55:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-05T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T11:55:03Z\",\n                    \"modified\": \"2021-05-05T11:55:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-05T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T11:55:03Z\",\n                    \"modified\": \"2021-05-05T11:55:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-05T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T11:55:03Z\",\n                    \"modified\": \"2021-05-05T11:55:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-05T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T11:55:03Z\",\n                    \"modified\": \"2021-05-05T11:55:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-05T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T11:55:03Z\",\n                    \"modified\": \"2021-05-05T11:55:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-05T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T11:55:03Z\",\n                    \"modified\": \"2021-05-05T11:55:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-05T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T11:55:03Z\",\n                    \"modified\": \"2021-05-05T11:55:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-05T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T11:55:03Z\",\n                    \"modified\": \"2021-05-05T11:55:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-05T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T11:55:03Z\",\n                    \"modified\": \"2021-05-05T11:55:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-05T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T11:55:03Z\",\n                    \"modified\": \"2021-05-05T11:55:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-04T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-05T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T11:55:03Z\",\n                    \"modified\": \"2021-05-05T11:55:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-04T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T04:30:33Z\",\n                    \"modified\": \"2021-05-05T04:30:33Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-04T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T04:30:33Z\",\n                    \"modified\": \"2021-05-05T04:30:33Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-04T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T04:30:33Z\",\n                    \"modified\": \"2021-05-05T04:30:33Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-04T04:00:00Z\",\n                    \"uid\": null,\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": null,\n                    \"productName\": null,\n                    \"qualifier\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T04:30:33Z\",\n                    \"modified\": \"2021-05-05T04:30:33Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-04T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T04:30:33Z\",\n                    \"modified\": \"2021-05-05T04:30:33Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-04T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T04:30:33Z\",\n                    \"modified\": \"2021-05-05T04:30:33Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-04T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T04:30:33Z\",\n                    \"modified\": \"2021-05-05T04:30:33Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-04T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T04:30:33Z\",\n                    \"modified\": \"2021-05-05T04:30:33Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-04T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T04:30:33Z\",\n                    \"modified\": \"2021-05-05T04:30:33Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-04T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T04:30:33Z\",\n                    \"modified\": \"2021-05-05T04:30:33Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-04T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T04:30:33Z\",\n                    \"modified\": \"2021-05-05T04:30:33Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-04T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T04:30:33Z\",\n                    \"modified\": \"2021-05-05T04:30:33Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-03T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-04T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T04:30:33Z\",\n                    \"modified\": \"2021-05-05T04:30:33Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-03T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T04:31:06Z\",\n                    \"modified\": \"2021-05-05T04:31:06Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-03T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T04:31:06Z\",\n                    \"modified\": \"2021-05-05T04:31:06Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-03T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T04:31:06Z\",\n                    \"modified\": \"2021-05-05T04:31:06Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-03T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T04:31:06Z\",\n                    \"modified\": \"2021-05-05T04:31:06Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-03T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T04:31:06Z\",\n                    \"modified\": \"2021-05-05T04:31:06Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-03T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T04:31:06Z\",\n                    \"modified\": \"2021-05-05T04:31:06Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-03T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T04:31:06Z\",\n                    \"modified\": \"2021-05-05T04:31:06Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-03T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T04:31:06Z\",\n                    \"modified\": \"2021-05-05T04:31:06Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-03T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T04:31:06Z\",\n                    \"modified\": \"2021-05-05T04:31:06Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-03T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T04:31:06Z\",\n                    \"modified\": \"2021-05-05T04:31:06Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-03T04:00:00Z\",\n                    \"uid\": null,\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": null,\n                    \"productName\": null,\n                    \"qualifier\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T04:31:06Z\",\n                    \"modified\": \"2021-05-05T04:31:06Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-03T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T04:31:06Z\",\n                    \"modified\": \"2021-05-05T04:31:06Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-02T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-03T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T04:31:06Z\",\n                    \"modified\": \"2021-05-05T04:31:06Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-02T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T11:56:02Z\",\n                    \"modified\": \"2021-05-05T11:56:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-02T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T11:56:02Z\",\n                    \"modified\": \"2021-05-05T11:56:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-02T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T11:56:02Z\",\n                    \"modified\": \"2021-05-05T11:56:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-02T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T11:56:02Z\",\n                    \"modified\": \"2021-05-05T11:56:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-02T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T11:56:02Z\",\n                    \"modified\": \"2021-05-05T11:56:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-02T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T11:56:02Z\",\n                    \"modified\": \"2021-05-05T11:56:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-02T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T11:56:02Z\",\n                    \"modified\": \"2021-05-05T11:56:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-02T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T11:56:02Z\",\n                    \"modified\": \"2021-05-05T11:56:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-02T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T11:56:02Z\",\n                    \"modified\": \"2021-05-05T11:56:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-02T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T11:56:02Z\",\n                    \"modified\": \"2021-05-05T11:56:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-02T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T11:56:02Z\",\n                    \"modified\": \"2021-05-05T11:56:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-05-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-05-01T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-02T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-05T11:56:02Z\",\n                    \"modified\": \"2021-05-05T11:56:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-01T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-03T07:15:09Z\",\n                    \"modified\": \"2021-05-03T07:15:09Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-01T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-03T07:15:09Z\",\n                    \"modified\": \"2021-05-03T07:15:09Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-01T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-03T07:15:09Z\",\n                    \"modified\": \"2021-05-03T07:15:09Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-01T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-03T07:15:09Z\",\n                    \"modified\": \"2021-05-03T07:15:09Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-01T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-03T07:15:09Z\",\n                    \"modified\": \"2021-05-03T07:15:09Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-01T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-03T07:15:09Z\",\n                    \"modified\": \"2021-05-03T07:15:09Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-01T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-03T07:15:09Z\",\n                    \"modified\": \"2021-05-03T07:15:09Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-01T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-03T07:15:09Z\",\n                    \"modified\": \"2021-05-03T07:15:09Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-01T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-03T07:15:09Z\",\n                    \"modified\": \"2021-05-03T07:15:09Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-01T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-03T07:15:09Z\",\n                    \"modified\": \"2021-05-03T07:15:09Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-01T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-03T07:15:09Z\",\n                    \"modified\": \"2021-05-03T07:15:09Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-05-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-30T04:00:00Z\",\n                    \"dataEndTime\": \"2021-05-01T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-03T07:15:09Z\",\n                    \"modified\": \"2021-05-03T07:15:09Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-30T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-01T04:41:48Z\",\n                    \"modified\": \"2021-05-01T04:41:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-30T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-01T04:41:48Z\",\n                    \"modified\": \"2021-05-01T04:41:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-30T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-01T04:41:48Z\",\n                    \"modified\": \"2021-05-01T04:41:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-30T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-01T04:41:48Z\",\n                    \"modified\": \"2021-05-01T04:41:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-30T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-01T04:41:48Z\",\n                    \"modified\": \"2021-05-01T04:41:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-30T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-01T04:41:48Z\",\n                    \"modified\": \"2021-05-01T04:41:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-30T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-01T04:41:48Z\",\n                    \"modified\": \"2021-05-01T04:41:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-30T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-01T04:41:48Z\",\n                    \"modified\": \"2021-05-01T04:41:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-30T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-01T04:41:48Z\",\n                    \"modified\": \"2021-05-01T04:41:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-30T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-01T04:41:48Z\",\n                    \"modified\": \"2021-05-01T04:41:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-30T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-01T04:41:48Z\",\n                    \"modified\": \"2021-05-01T04:41:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-29T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-30T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-05-01T04:41:48Z\",\n                    \"modified\": \"2021-05-01T04:41:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-29T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-29T10:44:03Z\",\n                    \"modified\": \"2021-04-29T10:44:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-29T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-29T10:44:03Z\",\n                    \"modified\": \"2021-04-29T10:44:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-29T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-29T10:44:03Z\",\n                    \"modified\": \"2021-04-29T10:44:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-29T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-29T10:44:03Z\",\n                    \"modified\": \"2021-04-29T10:44:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-29T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-29T10:44:03Z\",\n                    \"modified\": \"2021-04-29T10:44:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-29T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-29T10:44:03Z\",\n                    \"modified\": \"2021-04-29T10:44:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-29T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-29T10:44:03Z\",\n                    \"modified\": \"2021-04-29T10:44:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-29T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-29T10:44:03Z\",\n                    \"modified\": \"2021-04-29T10:44:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-29T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-29T10:44:03Z\",\n                    \"modified\": \"2021-04-29T10:44:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-29T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-29T10:44:03Z\",\n                    \"modified\": \"2021-04-29T10:44:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-29T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-29T10:44:03Z\",\n                    \"modified\": \"2021-04-29T10:44:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-28T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-29T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-29T10:44:03Z\",\n                    \"modified\": \"2021-04-29T10:44:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-28T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-29T10:45:38Z\",\n                    \"modified\": \"2021-04-29T10:45:38Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-28T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-29T10:45:38Z\",\n                    \"modified\": \"2021-04-29T10:45:38Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-28T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-29T10:45:38Z\",\n                    \"modified\": \"2021-04-29T10:45:38Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-28T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-29T10:45:38Z\",\n                    \"modified\": \"2021-04-29T10:45:38Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-28T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-29T10:45:38Z\",\n                    \"modified\": \"2021-04-29T10:45:38Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-28T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-29T10:45:38Z\",\n                    \"modified\": \"2021-04-29T10:45:38Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-28T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-29T10:45:38Z\",\n                    \"modified\": \"2021-04-29T10:45:38Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-28T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-29T10:45:38Z\",\n                    \"modified\": \"2021-04-29T10:45:38Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-28T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-29T10:45:38Z\",\n                    \"modified\": \"2021-04-29T10:45:38Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-28T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-29T10:45:38Z\",\n                    \"modified\": \"2021-04-29T10:45:38Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-28T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-29T10:45:38Z\",\n                    \"modified\": \"2021-04-29T10:45:38Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-27T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-28T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-29T10:45:38Z\",\n                    \"modified\": \"2021-04-29T10:45:38Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-27T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-29T10:44:48Z\",\n                    \"modified\": \"2021-04-29T10:44:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-27T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-29T10:44:48Z\",\n                    \"modified\": \"2021-04-29T10:44:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-27T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-29T10:44:48Z\",\n                    \"modified\": \"2021-04-29T10:44:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-27T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-29T10:44:48Z\",\n                    \"modified\": \"2021-04-29T10:44:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-27T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-29T10:44:48Z\",\n                    \"modified\": \"2021-04-29T10:44:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-27T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-29T10:44:48Z\",\n                    \"modified\": \"2021-04-29T10:44:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-27T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-29T10:44:48Z\",\n                    \"modified\": \"2021-04-29T10:44:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-27T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-29T10:44:48Z\",\n                    \"modified\": \"2021-04-29T10:44:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-27T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-29T10:44:48Z\",\n                    \"modified\": \"2021-04-29T10:44:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-27T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-29T10:44:48Z\",\n                    \"modified\": \"2021-04-29T10:44:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-27T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-29T10:44:48Z\",\n                    \"modified\": \"2021-04-29T10:44:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-26T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-27T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-29T10:44:48Z\",\n                    \"modified\": \"2021-04-29T10:44:48Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-26T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-26T10:03:44Z\",\n                    \"modified\": \"2021-04-26T10:03:44Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-26T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-26T10:03:44Z\",\n                    \"modified\": \"2021-04-26T10:03:44Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-26T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-26T10:03:44Z\",\n                    \"modified\": \"2021-04-26T10:03:44Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-26T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-26T10:03:44Z\",\n                    \"modified\": \"2021-04-26T10:03:44Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-26T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-26T10:03:44Z\",\n                    \"modified\": \"2021-04-26T10:03:44Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-26T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-26T10:03:44Z\",\n                    \"modified\": \"2021-04-26T10:03:44Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-26T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-26T10:03:44Z\",\n                    \"modified\": \"2021-04-26T10:03:44Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-26T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-26T10:03:44Z\",\n                    \"modified\": \"2021-04-26T10:03:44Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-26T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-26T10:03:44Z\",\n                    \"modified\": \"2021-04-26T10:03:44Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-26T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-26T10:03:44Z\",\n                    \"modified\": \"2021-04-26T10:03:44Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-26T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-26T10:03:44Z\",\n                    \"modified\": \"2021-04-26T10:03:44Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-25T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-26T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-26T10:03:44Z\",\n                    \"modified\": \"2021-04-26T10:03:44Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-25T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-26T10:03:29Z\",\n                    \"modified\": \"2021-04-26T10:03:29Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-25T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-26T10:03:29Z\",\n                    \"modified\": \"2021-04-26T10:03:29Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-25T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-26T10:03:29Z\",\n                    \"modified\": \"2021-04-26T10:03:29Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-25T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-26T10:03:29Z\",\n                    \"modified\": \"2021-04-26T10:03:29Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-25T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-26T10:03:29Z\",\n                    \"modified\": \"2021-04-26T10:03:29Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-25T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-26T10:03:29Z\",\n                    \"modified\": \"2021-04-26T10:03:29Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-25T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-26T10:03:29Z\",\n                    \"modified\": \"2021-04-26T10:03:29Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-25T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-26T10:03:29Z\",\n                    \"modified\": \"2021-04-26T10:03:29Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-25T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-26T10:03:29Z\",\n                    \"modified\": \"2021-04-26T10:03:29Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-25T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-26T10:03:29Z\",\n                    \"modified\": \"2021-04-26T10:03:29Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-25T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-26T10:03:29Z\",\n                    \"modified\": \"2021-04-26T10:03:29Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-24T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-25T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-26T10:03:29Z\",\n                    \"modified\": \"2021-04-26T10:03:29Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-24T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-26T10:03:12Z\",\n                    \"modified\": \"2021-04-26T10:03:12Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-24T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-26T10:03:12Z\",\n                    \"modified\": \"2021-04-26T10:03:12Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-24T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-26T10:03:12Z\",\n                    \"modified\": \"2021-04-26T10:03:12Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-24T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-26T10:03:12Z\",\n                    \"modified\": \"2021-04-26T10:03:12Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-24T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-26T10:03:12Z\",\n                    \"modified\": \"2021-04-26T10:03:12Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-24T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-26T10:03:12Z\",\n                    \"modified\": \"2021-04-26T10:03:12Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-24T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-26T10:03:12Z\",\n                    \"modified\": \"2021-04-26T10:03:12Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-24T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-26T10:03:12Z\",\n                    \"modified\": \"2021-04-26T10:03:12Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-24T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-26T10:03:12Z\",\n                    \"modified\": \"2021-04-26T10:03:12Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-24T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-26T10:03:12Z\",\n                    \"modified\": \"2021-04-26T10:03:12Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-24T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-26T10:03:12Z\",\n                    \"modified\": \"2021-04-26T10:03:12Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-23T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-24T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-26T10:03:12Z\",\n                    \"modified\": \"2021-04-26T10:03:12Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-23T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-23T08:24:41Z\",\n                    \"modified\": \"2021-04-23T08:24:41Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-23T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-23T08:24:41Z\",\n                    \"modified\": \"2021-04-23T08:24:41Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-23T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-23T08:24:41Z\",\n                    \"modified\": \"2021-04-23T08:24:41Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-23T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-23T08:24:41Z\",\n                    \"modified\": \"2021-04-23T08:24:41Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-23T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-23T08:24:41Z\",\n                    \"modified\": \"2021-04-23T08:24:41Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-23T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-23T08:24:41Z\",\n                    \"modified\": \"2021-04-23T08:24:41Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-23T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-23T08:24:41Z\",\n                    \"modified\": \"2021-04-23T08:24:41Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-23T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-23T08:24:41Z\",\n                    \"modified\": \"2021-04-23T08:24:41Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-23T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-23T08:24:41Z\",\n                    \"modified\": \"2021-04-23T08:24:41Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-23T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-23T08:24:41Z\",\n                    \"modified\": \"2021-04-23T08:24:41Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-23T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-23T08:24:41Z\",\n                    \"modified\": \"2021-04-23T08:24:41Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-22T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-23T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-23T08:24:41Z\",\n                    \"modified\": \"2021-04-23T08:24:41Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-22T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-22T08:39:58Z\",\n                    \"modified\": \"2021-04-22T08:39:58Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-22T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-22T08:39:58Z\",\n                    \"modified\": \"2021-04-22T08:39:58Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-22T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-22T08:39:58Z\",\n                    \"modified\": \"2021-04-22T08:39:58Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-22T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-22T08:39:58Z\",\n                    \"modified\": \"2021-04-22T08:39:58Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-22T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-22T08:39:58Z\",\n                    \"modified\": \"2021-04-22T08:39:58Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-22T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-22T08:39:58Z\",\n                    \"modified\": \"2021-04-22T08:39:58Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-22T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-22T08:39:58Z\",\n                    \"modified\": \"2021-04-22T08:39:58Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-22T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-22T08:39:58Z\",\n                    \"modified\": \"2021-04-22T08:39:58Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-22T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-22T08:39:58Z\",\n                    \"modified\": \"2021-04-22T08:39:58Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-22T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-22T08:39:58Z\",\n                    \"modified\": \"2021-04-22T08:39:58Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-22T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-22T08:39:58Z\",\n                    \"modified\": \"2021-04-22T08:39:58Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-21T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-22T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-22T08:39:58Z\",\n                    \"modified\": \"2021-04-22T08:39:58Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-21T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-22T08:39:33Z\",\n                    \"modified\": \"2021-04-22T08:39:33Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-21T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-22T08:39:33Z\",\n                    \"modified\": \"2021-04-22T08:39:33Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-21T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-22T08:39:33Z\",\n                    \"modified\": \"2021-04-22T08:39:33Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-21T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-22T08:39:33Z\",\n                    \"modified\": \"2021-04-22T08:39:33Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-21T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-22T08:39:33Z\",\n                    \"modified\": \"2021-04-22T08:39:33Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-21T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-22T08:39:33Z\",\n                    \"modified\": \"2021-04-22T08:39:33Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-21T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-22T08:39:33Z\",\n                    \"modified\": \"2021-04-22T08:39:33Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-21T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-22T08:39:33Z\",\n                    \"modified\": \"2021-04-22T08:39:33Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-21T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-22T08:39:33Z\",\n                    \"modified\": \"2021-04-22T08:39:33Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-21T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-22T08:39:33Z\",\n                    \"modified\": \"2021-04-22T08:39:33Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-21T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-22T08:39:33Z\",\n                    \"modified\": \"2021-04-22T08:39:33Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-20T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-21T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-22T08:39:33Z\",\n                    \"modified\": \"2021-04-22T08:39:33Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-20T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T12:15:10Z\",\n                    \"modified\": \"2021-04-20T12:15:10Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-20T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T12:15:10Z\",\n                    \"modified\": \"2021-04-20T12:15:10Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-20T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T12:15:10Z\",\n                    \"modified\": \"2021-04-20T12:15:10Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-20T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T12:15:10Z\",\n                    \"modified\": \"2021-04-20T12:15:10Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-20T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T12:15:10Z\",\n                    \"modified\": \"2021-04-20T12:15:10Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-20T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T12:15:10Z\",\n                    \"modified\": \"2021-04-20T12:15:10Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-20T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T12:15:10Z\",\n                    \"modified\": \"2021-04-20T12:15:10Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-20T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T12:15:10Z\",\n                    \"modified\": \"2021-04-20T12:15:10Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-20T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T12:15:10Z\",\n                    \"modified\": \"2021-04-20T12:15:10Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-20T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T12:15:10Z\",\n                    \"modified\": \"2021-04-20T12:15:10Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-20T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T12:15:10Z\",\n                    \"modified\": \"2021-04-20T12:15:10Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-19T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-20T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T12:15:10Z\",\n                    \"modified\": \"2021-04-20T12:15:10Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-19T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T05:42:03Z\",\n                    \"modified\": \"2021-04-20T05:42:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-19T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T05:42:03Z\",\n                    \"modified\": \"2021-04-20T05:42:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-19T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T05:42:03Z\",\n                    \"modified\": \"2021-04-20T05:42:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-19T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T05:42:03Z\",\n                    \"modified\": \"2021-04-20T05:42:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-19T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T05:42:03Z\",\n                    \"modified\": \"2021-04-20T05:42:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-19T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T05:42:03Z\",\n                    \"modified\": \"2021-04-20T05:42:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-19T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T05:42:03Z\",\n                    \"modified\": \"2021-04-20T05:42:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-19T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T05:42:03Z\",\n                    \"modified\": \"2021-04-20T05:42:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-19T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T05:42:03Z\",\n                    \"modified\": \"2021-04-20T05:42:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-19T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T05:42:03Z\",\n                    \"modified\": \"2021-04-20T05:42:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-19T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T05:42:03Z\",\n                    \"modified\": \"2021-04-20T05:42:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-18T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-19T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T05:42:03Z\",\n                    \"modified\": \"2021-04-20T05:42:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-18T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T05:41:17Z\",\n                    \"modified\": \"2021-04-20T05:41:17Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-18T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T05:41:17Z\",\n                    \"modified\": \"2021-04-20T05:41:17Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-18T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T05:41:17Z\",\n                    \"modified\": \"2021-04-20T05:41:17Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-18T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T05:41:17Z\",\n                    \"modified\": \"2021-04-20T05:41:17Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-18T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T05:41:17Z\",\n                    \"modified\": \"2021-04-20T05:41:17Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-18T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T05:41:17Z\",\n                    \"modified\": \"2021-04-20T05:41:17Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-18T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T05:41:17Z\",\n                    \"modified\": \"2021-04-20T05:41:17Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-18T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T05:41:17Z\",\n                    \"modified\": \"2021-04-20T05:41:17Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-18T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T05:41:17Z\",\n                    \"modified\": \"2021-04-20T05:41:17Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-18T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T05:41:17Z\",\n                    \"modified\": \"2021-04-20T05:41:17Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-18T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T05:41:17Z\",\n                    \"modified\": \"2021-04-20T05:41:17Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-17T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-18T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T05:41:17Z\",\n                    \"modified\": \"2021-04-20T05:41:17Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-17T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T05:40:56Z\",\n                    \"modified\": \"2021-04-20T05:40:56Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-17T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T05:40:56Z\",\n                    \"modified\": \"2021-04-20T05:40:56Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-17T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T05:40:56Z\",\n                    \"modified\": \"2021-04-20T05:40:56Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-17T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T05:40:56Z\",\n                    \"modified\": \"2021-04-20T05:40:56Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-17T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T05:40:56Z\",\n                    \"modified\": \"2021-04-20T05:40:56Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-17T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T05:40:56Z\",\n                    \"modified\": \"2021-04-20T05:40:56Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-17T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T05:40:56Z\",\n                    \"modified\": \"2021-04-20T05:40:56Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-17T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T05:40:56Z\",\n                    \"modified\": \"2021-04-20T05:40:56Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-17T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T05:40:56Z\",\n                    \"modified\": \"2021-04-20T05:40:56Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-17T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T05:40:56Z\",\n                    \"modified\": \"2021-04-20T05:40:56Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-17T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T05:40:56Z\",\n                    \"modified\": \"2021-04-20T05:40:56Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-16T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-17T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-20T05:40:56Z\",\n                    \"modified\": \"2021-04-20T05:40:56Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-16T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-16T14:36:01Z\",\n                    \"modified\": \"2021-04-16T14:36:01Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-16T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-16T14:36:01Z\",\n                    \"modified\": \"2021-04-16T14:36:01Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-16T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-16T14:36:01Z\",\n                    \"modified\": \"2021-04-16T14:36:01Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-16T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-16T14:36:01Z\",\n                    \"modified\": \"2021-04-16T14:36:01Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-16T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-16T14:36:01Z\",\n                    \"modified\": \"2021-04-16T14:36:01Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-16T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-16T14:36:01Z\",\n                    \"modified\": \"2021-04-16T14:36:01Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-16T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-16T14:36:01Z\",\n                    \"modified\": \"2021-04-16T14:36:01Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-16T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-16T14:36:01Z\",\n                    \"modified\": \"2021-04-16T14:36:01Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-16T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-16T14:36:01Z\",\n                    \"modified\": \"2021-04-16T14:36:01Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-16T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-16T14:36:01Z\",\n                    \"modified\": \"2021-04-16T14:36:01Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-16T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-16T14:36:01Z\",\n                    \"modified\": \"2021-04-16T14:36:01Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-15T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-16T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-15T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-16T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-16T14:36:01Z\",\n                    \"modified\": \"2021-04-16T14:36:01Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-15T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-15T11:04:57Z\",\n                    \"modified\": \"2021-04-15T11:04:57Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-15T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-15T11:04:57Z\",\n                    \"modified\": \"2021-04-15T11:04:57Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-15T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-15T11:04:57Z\",\n                    \"modified\": \"2021-04-15T11:04:57Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-15T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-15T11:04:57Z\",\n                    \"modified\": \"2021-04-15T11:04:57Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-15T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-15T11:04:57Z\",\n                    \"modified\": \"2021-04-15T11:04:57Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-15T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-15T11:04:57Z\",\n                    \"modified\": \"2021-04-15T11:04:57Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-15T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-15T11:04:57Z\",\n                    \"modified\": \"2021-04-15T11:04:57Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-15T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-15T11:04:57Z\",\n                    \"modified\": \"2021-04-15T11:04:57Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-15T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-15T11:04:57Z\",\n                    \"modified\": \"2021-04-15T11:04:57Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-15T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-15T11:04:57Z\",\n                    \"modified\": \"2021-04-15T11:04:57Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-15T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-15T11:04:57Z\",\n                    \"modified\": \"2021-04-15T11:04:57Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-14T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-15T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-14T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-15T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-15T11:04:57Z\",\n                    \"modified\": \"2021-04-15T11:04:57Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-14T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-14T09:02:11Z\",\n                    \"modified\": \"2021-04-14T09:02:11Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-14T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-14T09:02:11Z\",\n                    \"modified\": \"2021-04-14T09:02:11Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-14T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-14T09:02:11Z\",\n                    \"modified\": \"2021-04-14T09:02:11Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-14T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-14T09:02:11Z\",\n                    \"modified\": \"2021-04-14T09:02:11Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-14T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-14T09:02:11Z\",\n                    \"modified\": \"2021-04-14T09:02:11Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-14T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-14T09:02:11Z\",\n                    \"modified\": \"2021-04-14T09:02:11Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-14T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-14T09:02:11Z\",\n                    \"modified\": \"2021-04-14T09:02:11Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-14T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-14T09:02:11Z\",\n                    \"modified\": \"2021-04-14T09:02:11Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-14T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-14T09:02:11Z\",\n                    \"modified\": \"2021-04-14T09:02:11Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-14T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-14T09:02:11Z\",\n                    \"modified\": \"2021-04-14T09:02:11Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-14T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-14T09:02:11Z\",\n                    \"modified\": \"2021-04-14T09:02:11Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-13T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-14T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-13T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-14T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-14T09:02:11Z\",\n                    \"modified\": \"2021-04-14T09:02:11Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-13T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:57:54Z\",\n                    \"modified\": \"2021-04-13T16:57:54Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-13T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:57:54Z\",\n                    \"modified\": \"2021-04-13T16:57:54Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-13T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:57:54Z\",\n                    \"modified\": \"2021-04-13T16:57:54Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-13T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:57:54Z\",\n                    \"modified\": \"2021-04-13T16:57:54Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-13T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:57:54Z\",\n                    \"modified\": \"2021-04-13T16:57:54Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-13T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:57:54Z\",\n                    \"modified\": \"2021-04-13T16:57:54Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-13T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:57:54Z\",\n                    \"modified\": \"2021-04-13T16:57:54Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-13T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:57:54Z\",\n                    \"modified\": \"2021-04-13T16:57:54Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-13T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:57:54Z\",\n                    \"modified\": \"2021-04-13T16:57:54Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-13T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:57:54Z\",\n                    \"modified\": \"2021-04-13T16:57:54Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-13T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:57:54Z\",\n                    \"modified\": \"2021-04-13T16:57:54Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-12T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-13T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-12T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-13T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:57:54Z\",\n                    \"modified\": \"2021-04-13T16:57:54Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-12T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:57:13Z\",\n                    \"modified\": \"2021-04-13T16:57:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-12T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:57:13Z\",\n                    \"modified\": \"2021-04-13T16:57:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-12T04:00:00Z\",\n                    \"uid\": null,\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": null,\n                    \"productName\": null,\n                    \"qualifier\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:57:13Z\",\n                    \"modified\": \"2021-04-13T16:57:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-12T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:57:13Z\",\n                    \"modified\": \"2021-04-13T16:57:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-12T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:57:13Z\",\n                    \"modified\": \"2021-04-13T16:57:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-12T04:00:00Z\",\n                    \"uid\": null,\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": null,\n                    \"productName\": null,\n                    \"qualifier\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:57:13Z\",\n                    \"modified\": \"2021-04-13T16:57:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-12T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:57:13Z\",\n                    \"modified\": \"2021-04-13T16:57:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-12T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:57:13Z\",\n                    \"modified\": \"2021-04-13T16:57:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-12T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:57:13Z\",\n                    \"modified\": \"2021-04-13T16:57:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-12T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:57:13Z\",\n                    \"modified\": \"2021-04-13T16:57:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-12T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:57:13Z\",\n                    \"modified\": \"2021-04-13T16:57:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-12T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:57:13Z\",\n                    \"modified\": \"2021-04-13T16:57:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-12T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:57:13Z\",\n                    \"modified\": \"2021-04-13T16:57:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-11T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-12T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-11T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-12T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:57:13Z\",\n                    \"modified\": \"2021-04-13T16:57:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-11T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:56:41Z\",\n                    \"modified\": \"2021-04-13T16:56:41Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-11T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:56:41Z\",\n                    \"modified\": \"2021-04-13T16:56:41Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-11T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:56:41Z\",\n                    \"modified\": \"2021-04-13T16:56:41Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-11T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:56:41Z\",\n                    \"modified\": \"2021-04-13T16:56:41Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-11T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:56:41Z\",\n                    \"modified\": \"2021-04-13T16:56:41Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-11T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:56:41Z\",\n                    \"modified\": \"2021-04-13T16:56:41Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-11T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:56:41Z\",\n                    \"modified\": \"2021-04-13T16:56:41Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-11T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:56:41Z\",\n                    \"modified\": \"2021-04-13T16:56:41Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-11T04:00:00Z\",\n                    \"uid\": null,\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": null,\n                    \"productName\": null,\n                    \"qualifier\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:56:41Z\",\n                    \"modified\": \"2021-04-13T16:56:41Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-11T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:56:41Z\",\n                    \"modified\": \"2021-04-13T16:56:41Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-11T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:56:41Z\",\n                    \"modified\": \"2021-04-13T16:56:41Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-11T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:56:41Z\",\n                    \"modified\": \"2021-04-13T16:56:41Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-10T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-11T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-10T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-11T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:56:41Z\",\n                    \"modified\": \"2021-04-13T16:56:41Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-10T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:56:13Z\",\n                    \"modified\": \"2021-04-13T16:56:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-10T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:56:13Z\",\n                    \"modified\": \"2021-04-13T16:56:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-10T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:56:13Z\",\n                    \"modified\": \"2021-04-13T16:56:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-10T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:56:13Z\",\n                    \"modified\": \"2021-04-13T16:56:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-10T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:56:13Z\",\n                    \"modified\": \"2021-04-13T16:56:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-10T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:56:13Z\",\n                    \"modified\": \"2021-04-13T16:56:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-10T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:56:13Z\",\n                    \"modified\": \"2021-04-13T16:56:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-10T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:56:13Z\",\n                    \"modified\": \"2021-04-13T16:56:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-10T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:56:13Z\",\n                    \"modified\": \"2021-04-13T16:56:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-10T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:56:13Z\",\n                    \"modified\": \"2021-04-13T16:56:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-10T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:56:13Z\",\n                    \"modified\": \"2021-04-13T16:56:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-10T04:00:00Z\",\n                    \"uid\": null,\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": null,\n                    \"productName\": null,\n                    \"qualifier\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:56:13Z\",\n                    \"modified\": \"2021-04-13T16:56:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-09T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-10T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-09T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-10T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:56:13Z\",\n                    \"modified\": \"2021-04-13T16:56:13Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-09T04:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:55:05Z\",\n                    \"modified\": \"2021-04-13T16:55:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-09T04:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:55:05Z\",\n                    \"modified\": \"2021-04-13T16:55:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-09T04:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:55:05Z\",\n                    \"modified\": \"2021-04-13T16:55:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-09T04:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:55:05Z\",\n                    \"modified\": \"2021-04-13T16:55:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-09T04:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:55:05Z\",\n                    \"modified\": \"2021-04-13T16:55:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-09T04:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:55:05Z\",\n                    \"modified\": \"2021-04-13T16:55:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-09T04:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:55:05Z\",\n                    \"modified\": \"2021-04-13T16:55:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-09T04:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:55:05Z\",\n                    \"modified\": \"2021-04-13T16:55:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-09T04:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:55:05Z\",\n                    \"modified\": \"2021-04-13T16:55:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-09T04:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:55:05Z\",\n                    \"modified\": \"2021-04-13T16:55:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-09T04:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:55:05Z\",\n                    \"modified\": \"2021-04-13T16:55:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-08T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-09T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-08T04:00:00Z\",\n                    \"dataEndTime\": \"2021-04-09T04:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-13T16:55:05Z\",\n                    \"modified\": \"2021-04-13T16:55:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-07T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-08T05:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-09T06:41:15Z\",\n                    \"modified\": \"2021-04-09T06:41:15Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-07T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-08T05:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-09T06:41:15Z\",\n                    \"modified\": \"2021-04-09T06:41:15Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-07T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-08T05:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-09T06:41:15Z\",\n                    \"modified\": \"2021-04-09T06:41:15Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-07T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-08T05:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-09T06:41:15Z\",\n                    \"modified\": \"2021-04-09T06:41:15Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-07T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-08T05:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-09T06:41:15Z\",\n                    \"modified\": \"2021-04-09T06:41:15Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-07T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-08T05:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-09T06:41:15Z\",\n                    \"modified\": \"2021-04-09T06:41:15Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-07T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-08T05:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-09T06:41:15Z\",\n                    \"modified\": \"2021-04-09T06:41:15Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-07T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-08T05:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-09T06:41:15Z\",\n                    \"modified\": \"2021-04-09T06:41:15Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-07T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-08T05:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-09T06:41:15Z\",\n                    \"modified\": \"2021-04-09T06:41:15Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-07T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-08T05:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-09T06:41:15Z\",\n                    \"modified\": \"2021-04-09T06:41:15Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-07T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-08T05:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-09T06:41:15Z\",\n                    \"modified\": \"2021-04-09T06:41:15Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-07T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-08T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-07T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-08T05:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-09T06:41:15Z\",\n                    \"modified\": \"2021-04-09T06:41:15Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-06T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-07T05:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:46:03Z\",\n                    \"modified\": \"2021-04-07T06:46:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-06T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-07T05:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:46:03Z\",\n                    \"modified\": \"2021-04-07T06:46:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-06T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-07T05:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:46:03Z\",\n                    \"modified\": \"2021-04-07T06:46:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-06T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-07T05:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:46:03Z\",\n                    \"modified\": \"2021-04-07T06:46:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-06T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-07T05:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:46:03Z\",\n                    \"modified\": \"2021-04-07T06:46:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-06T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-07T05:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:46:03Z\",\n                    \"modified\": \"2021-04-07T06:46:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-06T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-07T05:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:46:03Z\",\n                    \"modified\": \"2021-04-07T06:46:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-06T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-07T05:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:46:03Z\",\n                    \"modified\": \"2021-04-07T06:46:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-06T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-07T05:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:46:03Z\",\n                    \"modified\": \"2021-04-07T06:46:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-06T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-07T05:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:46:03Z\",\n                    \"modified\": \"2021-04-07T06:46:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-06T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-07T05:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:46:03Z\",\n                    \"modified\": \"2021-04-07T06:46:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-06T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-07T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-06T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-07T05:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:46:03Z\",\n                    \"modified\": \"2021-04-07T06:46:03Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-05T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-06T05:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:45:45Z\",\n                    \"modified\": \"2021-04-07T06:45:45Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-05T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-06T05:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:45:45Z\",\n                    \"modified\": \"2021-04-07T06:45:45Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-05T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-06T05:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:45:45Z\",\n                    \"modified\": \"2021-04-07T06:45:45Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-05T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-06T05:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:45:45Z\",\n                    \"modified\": \"2021-04-07T06:45:45Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-05T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-06T05:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:45:45Z\",\n                    \"modified\": \"2021-04-07T06:45:45Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-05T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-06T05:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:45:45Z\",\n                    \"modified\": \"2021-04-07T06:45:45Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-05T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-06T05:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:45:45Z\",\n                    \"modified\": \"2021-04-07T06:45:45Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-05T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-06T05:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:45:45Z\",\n                    \"modified\": \"2021-04-07T06:45:45Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-05T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-06T05:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:45:45Z\",\n                    \"modified\": \"2021-04-07T06:45:45Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-05T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-06T05:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:45:45Z\",\n                    \"modified\": \"2021-04-07T06:45:45Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-05T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-06T05:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:45:45Z\",\n                    \"modified\": \"2021-04-07T06:45:45Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-05T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-06T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-05T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-06T05:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:45:45Z\",\n                    \"modified\": \"2021-04-07T06:45:45Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-04T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-05T05:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:45:29Z\",\n                    \"modified\": \"2021-04-07T06:45:29Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-04T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-05T05:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:45:29Z\",\n                    \"modified\": \"2021-04-07T06:45:29Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-04T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-05T05:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:45:29Z\",\n                    \"modified\": \"2021-04-07T06:45:29Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-04T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-05T05:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:45:29Z\",\n                    \"modified\": \"2021-04-07T06:45:29Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-04T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-05T05:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:45:29Z\",\n                    \"modified\": \"2021-04-07T06:45:29Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-04T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-05T05:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:45:29Z\",\n                    \"modified\": \"2021-04-07T06:45:29Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-04T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-05T05:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:45:29Z\",\n                    \"modified\": \"2021-04-07T06:45:29Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-04T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-05T05:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:45:29Z\",\n                    \"modified\": \"2021-04-07T06:45:29Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-04T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-05T05:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:45:29Z\",\n                    \"modified\": \"2021-04-07T06:45:29Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-04T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-05T05:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:45:29Z\",\n                    \"modified\": \"2021-04-07T06:45:29Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-04T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-05T05:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:45:29Z\",\n                    \"modified\": \"2021-04-07T06:45:29Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-04T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-05T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-04T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-05T05:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:45:29Z\",\n                    \"modified\": \"2021-04-07T06:45:29Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-03T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-04T05:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:45:02Z\",\n                    \"modified\": \"2021-04-07T06:45:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-03T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-04T05:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:45:02Z\",\n                    \"modified\": \"2021-04-07T06:45:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-03T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-04T05:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:45:02Z\",\n                    \"modified\": \"2021-04-07T06:45:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-03T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-04T05:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:45:02Z\",\n                    \"modified\": \"2021-04-07T06:45:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-03T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-04T05:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:45:02Z\",\n                    \"modified\": \"2021-04-07T06:45:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-03T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-04T05:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:45:02Z\",\n                    \"modified\": \"2021-04-07T06:45:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-03T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-04T05:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:45:02Z\",\n                    \"modified\": \"2021-04-07T06:45:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-03T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-04T05:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:45:02Z\",\n                    \"modified\": \"2021-04-07T06:45:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-03T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-04T05:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:45:02Z\",\n                    \"modified\": \"2021-04-07T06:45:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-03T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-04T05:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:45:02Z\",\n                    \"modified\": \"2021-04-07T06:45:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-03T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-04T05:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:45:02Z\",\n                    \"modified\": \"2021-04-07T06:45:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-03T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-04T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-03T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-04T05:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:45:02Z\",\n                    \"modified\": \"2021-04-07T06:45:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-02T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-03T05:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:44:35Z\",\n                    \"modified\": \"2021-04-07T06:44:35Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-02T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-03T05:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:44:35Z\",\n                    \"modified\": \"2021-04-07T06:44:35Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-02T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-03T05:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:44:35Z\",\n                    \"modified\": \"2021-04-07T06:44:35Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-02T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-03T05:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:44:35Z\",\n                    \"modified\": \"2021-04-07T06:44:35Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-02T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-03T05:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:44:35Z\",\n                    \"modified\": \"2021-04-07T06:44:35Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-02T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-03T05:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:44:35Z\",\n                    \"modified\": \"2021-04-07T06:44:35Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-02T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-03T05:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:44:35Z\",\n                    \"modified\": \"2021-04-07T06:44:35Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-02T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-03T05:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:44:35Z\",\n                    \"modified\": \"2021-04-07T06:44:35Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-02T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-03T05:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:44:35Z\",\n                    \"modified\": \"2021-04-07T06:44:35Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-02T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-03T05:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:44:35Z\",\n                    \"modified\": \"2021-04-07T06:44:35Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-02T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-03T05:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:44:35Z\",\n                    \"modified\": \"2021-04-07T06:44:35Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-02T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-03T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-02T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-03T05:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:44:35Z\",\n                    \"modified\": \"2021-04-07T06:44:35Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-01T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-02T05:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:43:07Z\",\n                    \"modified\": \"2021-04-07T06:43:07Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-01T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-02T05:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:43:07Z\",\n                    \"modified\": \"2021-04-07T06:43:07Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-01T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-02T05:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:43:07Z\",\n                    \"modified\": \"2021-04-07T06:43:07Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-01T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-02T05:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:43:07Z\",\n                    \"modified\": \"2021-04-07T06:43:07Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-01T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-02T05:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:43:07Z\",\n                    \"modified\": \"2021-04-07T06:43:07Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-01T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-02T05:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:43:07Z\",\n                    \"modified\": \"2021-04-07T06:43:07Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-01T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-02T05:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:43:07Z\",\n                    \"modified\": \"2021-04-07T06:43:07Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-01T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-02T05:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:43:07Z\",\n                    \"modified\": \"2021-04-07T06:43:07Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-01T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-02T05:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:43:07Z\",\n                    \"modified\": \"2021-04-07T06:43:07Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-01T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-02T05:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:43:07Z\",\n                    \"modified\": \"2021-04-07T06:43:07Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-01T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-02T05:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:43:07Z\",\n                    \"modified\": \"2021-04-07T06:43:07Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-04-01T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-02T00:00:00Z\",\n                    \"dataStartTime\": \"2021-04-01T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-02T05:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:43:07Z\",\n                    \"modified\": \"2021-04-07T06:43:07Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-31T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-01T05:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:42:32Z\",\n                    \"modified\": \"2021-04-07T06:42:32Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-31T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-01T05:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:42:32Z\",\n                    \"modified\": \"2021-04-07T06:42:32Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-31T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-01T05:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:42:32Z\",\n                    \"modified\": \"2021-04-07T06:42:32Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-31T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-01T05:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:42:32Z\",\n                    \"modified\": \"2021-04-07T06:42:32Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-31T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-01T05:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:42:32Z\",\n                    \"modified\": \"2021-04-07T06:42:32Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-31T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-01T05:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:42:32Z\",\n                    \"modified\": \"2021-04-07T06:42:32Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-31T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-01T05:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:42:32Z\",\n                    \"modified\": \"2021-04-07T06:42:32Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-31T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-01T05:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:42:32Z\",\n                    \"modified\": \"2021-04-07T06:42:32Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-31T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-01T05:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:42:32Z\",\n                    \"modified\": \"2021-04-07T06:42:32Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-31T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-01T05:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:42:32Z\",\n                    \"modified\": \"2021-04-07T06:42:32Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-31T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-01T05:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:42:32Z\",\n                    \"modified\": \"2021-04-07T06:42:32Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-31T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-04-01T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-31T05:00:00Z\",\n                    \"dataEndTime\": \"2021-04-01T05:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:42:32Z\",\n                    \"modified\": \"2021-04-07T06:42:32Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-30T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-31T05:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:42:02Z\",\n                    \"modified\": \"2021-04-07T06:42:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-30T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-31T05:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:42:02Z\",\n                    \"modified\": \"2021-04-07T06:42:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-30T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-31T05:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:42:02Z\",\n                    \"modified\": \"2021-04-07T06:42:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-30T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-31T05:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:42:02Z\",\n                    \"modified\": \"2021-04-07T06:42:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-30T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-31T05:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:42:02Z\",\n                    \"modified\": \"2021-04-07T06:42:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-30T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-31T05:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:42:02Z\",\n                    \"modified\": \"2021-04-07T06:42:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-30T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-31T05:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:42:02Z\",\n                    \"modified\": \"2021-04-07T06:42:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-30T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-31T05:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:42:02Z\",\n                    \"modified\": \"2021-04-07T06:42:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-30T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-31T05:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:42:02Z\",\n                    \"modified\": \"2021-04-07T06:42:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-30T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-31T05:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:42:02Z\",\n                    \"modified\": \"2021-04-07T06:42:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-30T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-31T05:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:42:02Z\",\n                    \"modified\": \"2021-04-07T06:42:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-30T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-31T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-30T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-31T05:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-04-07T06:42:02Z\",\n                    \"modified\": \"2021-04-07T06:42:02Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-29T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-30T05:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-30T08:51:22Z\",\n                    \"modified\": \"2021-03-30T08:51:22Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-29T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-30T05:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-30T08:51:22Z\",\n                    \"modified\": \"2021-03-30T08:51:22Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-29T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-30T05:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-30T08:51:22Z\",\n                    \"modified\": \"2021-03-30T08:51:22Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-29T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-30T05:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-30T08:51:22Z\",\n                    \"modified\": \"2021-03-30T08:51:22Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-29T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-30T05:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-30T08:51:22Z\",\n                    \"modified\": \"2021-03-30T08:51:22Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-29T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-30T05:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-30T08:51:22Z\",\n                    \"modified\": \"2021-03-30T08:51:22Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-29T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-30T05:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-30T08:51:22Z\",\n                    \"modified\": \"2021-03-30T08:51:22Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-29T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-30T05:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-30T08:51:22Z\",\n                    \"modified\": \"2021-03-30T08:51:22Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-29T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-30T05:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-30T08:51:22Z\",\n                    \"modified\": \"2021-03-30T08:51:22Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-29T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-30T05:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-30T08:51:22Z\",\n                    \"modified\": \"2021-03-30T08:51:22Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-29T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-30T05:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-30T08:51:22Z\",\n                    \"modified\": \"2021-03-30T08:51:22Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-29T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-30T05:00:00Z\",\n                    \"uid\": null,\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": null,\n                    \"productName\": null,\n                    \"qualifier\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-30T08:51:22Z\",\n                    \"modified\": \"2021-03-30T08:51:22Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-29T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-30T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-29T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-30T05:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-30T08:51:22Z\",\n                    \"modified\": \"2021-03-30T08:51:22Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-28T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-29T05:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-29T07:56:05Z\",\n                    \"modified\": \"2021-03-29T07:56:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-28T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-29T05:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-29T07:56:05Z\",\n                    \"modified\": \"2021-03-29T07:56:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-28T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-29T05:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-29T07:56:05Z\",\n                    \"modified\": \"2021-03-29T07:56:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-28T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-29T05:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-29T07:56:05Z\",\n                    \"modified\": \"2021-03-29T07:56:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-28T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-29T05:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-29T07:56:05Z\",\n                    \"modified\": \"2021-03-29T07:56:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-28T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-29T05:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-29T07:56:05Z\",\n                    \"modified\": \"2021-03-29T07:56:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-28T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-29T05:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-29T07:56:05Z\",\n                    \"modified\": \"2021-03-29T07:56:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-28T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-29T05:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-29T07:56:05Z\",\n                    \"modified\": \"2021-03-29T07:56:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-28T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-29T05:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-29T07:56:05Z\",\n                    \"modified\": \"2021-03-29T07:56:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-28T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-29T05:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-29T07:56:05Z\",\n                    \"modified\": \"2021-03-29T07:56:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-28T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-29T05:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-29T07:56:05Z\",\n                    \"modified\": \"2021-03-29T07:56:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-28T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-29T05:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-29T07:56:05Z\",\n                    \"modified\": \"2021-03-29T07:56:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-28T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-29T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-28T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-29T05:00:00Z\",\n                    \"uid\": null,\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": null,\n                    \"productName\": null,\n                    \"qualifier\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-29T07:56:05Z\",\n                    \"modified\": \"2021-03-29T07:56:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-27T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-28T05:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-29T07:56:44Z\",\n                    \"modified\": \"2021-03-29T07:56:44Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-27T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-28T05:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-29T07:56:44Z\",\n                    \"modified\": \"2021-03-29T07:56:44Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-27T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-28T05:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-29T07:56:44Z\",\n                    \"modified\": \"2021-03-29T07:56:44Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-27T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-28T05:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-29T07:56:44Z\",\n                    \"modified\": \"2021-03-29T07:56:44Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-27T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-28T05:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-29T07:56:44Z\",\n                    \"modified\": \"2021-03-29T07:56:44Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-27T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-28T05:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-29T07:56:44Z\",\n                    \"modified\": \"2021-03-29T07:56:44Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-27T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-28T05:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-29T07:56:44Z\",\n                    \"modified\": \"2021-03-29T07:56:44Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-27T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-28T05:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-29T07:56:44Z\",\n                    \"modified\": \"2021-03-29T07:56:44Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-27T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-28T05:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-29T07:56:44Z\",\n                    \"modified\": \"2021-03-29T07:56:44Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-27T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-28T05:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-29T07:56:44Z\",\n                    \"modified\": \"2021-03-29T07:56:44Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-27T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-28T05:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-29T07:56:44Z\",\n                    \"modified\": \"2021-03-29T07:56:44Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-27T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-28T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-27T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-28T05:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-29T07:56:44Z\",\n                    \"modified\": \"2021-03-29T07:56:44Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-26T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-27T05:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-29T07:55:05Z\",\n                    \"modified\": \"2021-03-29T07:55:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-26T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-27T05:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-29T07:55:05Z\",\n                    \"modified\": \"2021-03-29T07:55:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-26T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-27T05:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-29T07:55:05Z\",\n                    \"modified\": \"2021-03-29T07:55:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-26T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-27T05:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-29T07:55:05Z\",\n                    \"modified\": \"2021-03-29T07:55:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-26T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-27T05:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-29T07:55:05Z\",\n                    \"modified\": \"2021-03-29T07:55:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-26T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-27T05:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-29T07:55:05Z\",\n                    \"modified\": \"2021-03-29T07:55:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-26T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-27T05:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-29T07:55:05Z\",\n                    \"modified\": \"2021-03-29T07:55:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-26T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-27T05:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-29T07:55:05Z\",\n                    \"modified\": \"2021-03-29T07:55:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-26T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-27T05:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-29T07:55:05Z\",\n                    \"modified\": \"2021-03-29T07:55:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-26T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-27T05:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-29T07:55:05Z\",\n                    \"modified\": \"2021-03-29T07:55:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-26T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-27T05:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-29T07:55:05Z\",\n                    \"modified\": \"2021-03-29T07:55:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-26T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-27T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-26T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-27T05:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-29T07:55:05Z\",\n                    \"modified\": \"2021-03-29T07:55:05Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-25T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-26T05:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-27T12:20:14Z\",\n                    \"modified\": \"2021-03-27T12:20:14Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-25T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-26T05:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-27T12:20:14Z\",\n                    \"modified\": \"2021-03-27T12:20:14Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-25T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-26T05:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-27T12:20:14Z\",\n                    \"modified\": \"2021-03-27T12:20:14Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-25T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-26T05:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-27T12:20:14Z\",\n                    \"modified\": \"2021-03-27T12:20:14Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-25T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-26T05:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-27T12:20:14Z\",\n                    \"modified\": \"2021-03-27T12:20:14Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-25T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-26T05:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-27T12:20:14Z\",\n                    \"modified\": \"2021-03-27T12:20:14Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-25T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-26T05:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-27T12:20:14Z\",\n                    \"modified\": \"2021-03-27T12:20:14Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-25T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-26T05:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-27T12:20:14Z\",\n                    \"modified\": \"2021-03-27T12:20:14Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-25T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-26T05:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-27T12:20:14Z\",\n                    \"modified\": \"2021-03-27T12:20:14Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-25T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-26T05:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-27T12:20:14Z\",\n                    \"modified\": \"2021-03-27T12:20:14Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-25T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-26T05:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-27T12:20:14Z\",\n                    \"modified\": \"2021-03-27T12:20:14Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-25T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-26T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-25T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-26T05:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-27T12:20:14Z\",\n                    \"modified\": \"2021-03-27T12:20:14Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-24T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-25T05:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-26T05:38:39Z\",\n                    \"modified\": \"2021-03-26T05:38:39Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-24T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-25T05:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-26T05:38:39Z\",\n                    \"modified\": \"2021-03-26T05:38:39Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-24T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-25T05:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-26T05:38:39Z\",\n                    \"modified\": \"2021-03-26T05:38:39Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-24T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-25T05:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-26T05:38:39Z\",\n                    \"modified\": \"2021-03-26T05:38:39Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-24T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-25T05:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-26T05:38:39Z\",\n                    \"modified\": \"2021-03-26T05:38:39Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-24T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-25T05:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-26T05:38:39Z\",\n                    \"modified\": \"2021-03-26T05:38:39Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-24T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-25T05:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-26T05:38:39Z\",\n                    \"modified\": \"2021-03-26T05:38:39Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-24T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-25T05:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-26T05:38:39Z\",\n                    \"modified\": \"2021-03-26T05:38:39Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-24T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-25T05:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-26T05:38:39Z\",\n                    \"modified\": \"2021-03-26T05:38:39Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-24T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-25T05:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-26T05:38:39Z\",\n                    \"modified\": \"2021-03-26T05:38:39Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-24T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-25T05:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-26T05:38:39Z\",\n                    \"modified\": \"2021-03-26T05:38:39Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-24T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-25T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-24T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-25T05:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-26T05:38:39Z\",\n                    \"modified\": \"2021-03-26T05:38:39Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-23T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-24T05:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-24T12:58:20Z\",\n                    \"modified\": \"2021-03-24T12:58:20Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-23T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-24T05:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-24T12:58:20Z\",\n                    \"modified\": \"2021-03-24T12:58:20Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-23T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-24T05:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-24T12:58:20Z\",\n                    \"modified\": \"2021-03-24T12:58:20Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-23T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-24T05:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-24T12:58:20Z\",\n                    \"modified\": \"2021-03-24T12:58:20Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-23T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-24T05:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-24T12:58:20Z\",\n                    \"modified\": \"2021-03-24T12:58:20Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-23T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-24T05:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-24T12:58:20Z\",\n                    \"modified\": \"2021-03-24T12:58:20Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-23T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-24T05:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-24T12:58:20Z\",\n                    \"modified\": \"2021-03-24T12:58:20Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-23T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-24T05:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-24T12:58:20Z\",\n                    \"modified\": \"2021-03-24T12:58:20Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-23T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-24T05:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-24T12:58:20Z\",\n                    \"modified\": \"2021-03-24T12:58:20Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-23T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-24T05:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-24T12:58:20Z\",\n                    \"modified\": \"2021-03-24T12:58:20Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-23T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-24T05:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-24T12:58:20Z\",\n                    \"modified\": \"2021-03-24T12:58:20Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-23T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-24T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-23T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-24T05:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-24T12:58:20Z\",\n                    \"modified\": \"2021-03-24T12:58:20Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-22T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-23T05:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-24T12:58:04Z\",\n                    \"modified\": \"2021-03-24T12:58:04Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-22T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-23T05:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-24T12:58:04Z\",\n                    \"modified\": \"2021-03-24T12:58:04Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-22T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-23T05:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-24T12:58:04Z\",\n                    \"modified\": \"2021-03-24T12:58:04Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-22T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-23T05:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-24T12:58:04Z\",\n                    \"modified\": \"2021-03-24T12:58:04Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-22T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-23T05:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-24T12:58:04Z\",\n                    \"modified\": \"2021-03-24T12:58:04Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-22T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-23T05:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-24T12:58:04Z\",\n                    \"modified\": \"2021-03-24T12:58:04Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-22T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-23T05:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-24T12:58:04Z\",\n                    \"modified\": \"2021-03-24T12:58:04Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-22T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-23T05:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-24T12:58:04Z\",\n                    \"modified\": \"2021-03-24T12:58:04Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-22T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-23T05:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-24T12:58:04Z\",\n                    \"modified\": \"2021-03-24T12:58:04Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-22T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-23T05:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-24T12:58:04Z\",\n                    \"modified\": \"2021-03-24T12:58:04Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-22T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-23T05:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-24T12:58:04Z\",\n                    \"modified\": \"2021-03-24T12:58:04Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-22T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-23T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-22T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-23T05:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-24T12:58:04Z\",\n                    \"modified\": \"2021-03-24T12:58:04Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-21T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-22T05:00:00Z\",\n                    \"uid\": null,\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": null,\n                    \"productName\": null,\n                    \"qualifier\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-24T12:57:42Z\",\n                    \"modified\": \"2021-03-24T12:57:42Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-21T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-22T05:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-24T12:57:42Z\",\n                    \"modified\": \"2021-03-24T12:57:42Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-21T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-22T05:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-24T12:57:42Z\",\n                    \"modified\": \"2021-03-24T12:57:42Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-21T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-22T05:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-24T12:57:42Z\",\n                    \"modified\": \"2021-03-24T12:57:42Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-21T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-22T05:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-24T12:57:42Z\",\n                    \"modified\": \"2021-03-24T12:57:42Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-21T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-22T05:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-24T12:57:42Z\",\n                    \"modified\": \"2021-03-24T12:57:42Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-21T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-22T05:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-24T12:57:42Z\",\n                    \"modified\": \"2021-03-24T12:57:42Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-21T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-22T05:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-24T12:57:42Z\",\n                    \"modified\": \"2021-03-24T12:57:42Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-21T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-22T05:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-24T12:57:42Z\",\n                    \"modified\": \"2021-03-24T12:57:42Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-21T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-22T05:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-24T12:57:42Z\",\n                    \"modified\": \"2021-03-24T12:57:42Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-21T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-22T05:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-24T12:57:42Z\",\n                    \"modified\": \"2021-03-24T12:57:42Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-21T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-22T05:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-24T12:57:42Z\",\n                    \"modified\": \"2021-03-24T12:57:42Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-21T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-22T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-21T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-22T05:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-24T12:57:42Z\",\n                    \"modified\": \"2021-03-24T12:57:42Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-20T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-21T05:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-22T09:23:17Z\",\n                    \"modified\": \"2021-03-22T09:23:17Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-20T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-21T05:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-22T09:23:17Z\",\n                    \"modified\": \"2021-03-22T09:23:17Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-20T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-21T05:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-22T09:23:17Z\",\n                    \"modified\": \"2021-03-22T09:23:17Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-20T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-21T05:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-22T09:23:17Z\",\n                    \"modified\": \"2021-03-22T09:23:17Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-20T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-21T05:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-22T09:23:17Z\",\n                    \"modified\": \"2021-03-22T09:23:17Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-20T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-21T05:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-22T09:23:17Z\",\n                    \"modified\": \"2021-03-22T09:23:17Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-20T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-21T05:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-22T09:23:17Z\",\n                    \"modified\": \"2021-03-22T09:23:17Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-20T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-21T05:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-22T09:23:17Z\",\n                    \"modified\": \"2021-03-22T09:23:17Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-20T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-21T05:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-22T09:23:17Z\",\n                    \"modified\": \"2021-03-22T09:23:17Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-20T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-21T05:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-22T09:23:17Z\",\n                    \"modified\": \"2021-03-22T09:23:17Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-20T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-21T05:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-22T09:23:17Z\",\n                    \"modified\": \"2021-03-22T09:23:17Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-20T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-21T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-20T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-21T05:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-22T09:23:17Z\",\n                    \"modified\": \"2021-03-22T09:23:17Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-19T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-20T05:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-22T09:22:53Z\",\n                    \"modified\": \"2021-03-22T09:22:53Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-19T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-20T05:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-22T09:22:53Z\",\n                    \"modified\": \"2021-03-22T09:22:53Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-19T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-20T05:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-22T09:22:53Z\",\n                    \"modified\": \"2021-03-22T09:22:53Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-19T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-20T05:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-22T09:22:53Z\",\n                    \"modified\": \"2021-03-22T09:22:53Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-19T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-20T05:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-22T09:22:53Z\",\n                    \"modified\": \"2021-03-22T09:22:53Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-19T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-20T05:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-22T09:22:53Z\",\n                    \"modified\": \"2021-03-22T09:22:53Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-19T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-20T05:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-22T09:22:53Z\",\n                    \"modified\": \"2021-03-22T09:22:53Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-19T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-20T05:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-22T09:22:53Z\",\n                    \"modified\": \"2021-03-22T09:22:53Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-19T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-20T05:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-22T09:22:53Z\",\n                    \"modified\": \"2021-03-22T09:22:53Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-19T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-20T05:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-22T09:22:53Z\",\n                    \"modified\": \"2021-03-22T09:22:53Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-19T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-20T05:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-22T09:22:53Z\",\n                    \"modified\": \"2021-03-22T09:22:53Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-19T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-20T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-19T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-20T05:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-22T09:22:53Z\",\n                    \"modified\": \"2021-03-22T09:22:53Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-18T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-19T05:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-19T11:58:52Z\",\n                    \"modified\": \"2021-03-19T11:58:52Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-18T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-19T05:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-19T11:58:52Z\",\n                    \"modified\": \"2021-03-19T11:58:52Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-18T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-19T05:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-19T11:58:52Z\",\n                    \"modified\": \"2021-03-19T11:58:52Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-18T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-19T05:00:00Z\",\n                    \"uid\": null,\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": null,\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": null,\n                    \"productName\": null,\n                    \"qualifier\": null,\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-19T11:58:52Z\",\n                    \"modified\": \"2021-03-19T11:58:52Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-18T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-19T05:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-19T11:58:52Z\",\n                    \"modified\": \"2021-03-19T11:58:52Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-18T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-19T05:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-19T11:58:52Z\",\n                    \"modified\": \"2021-03-19T11:58:52Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-18T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-19T05:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-19T11:58:52Z\",\n                    \"modified\": \"2021-03-19T11:58:52Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-18T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-19T05:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-19T11:58:52Z\",\n                    \"modified\": \"2021-03-19T11:58:52Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-18T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-19T05:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-19T11:58:52Z\",\n                    \"modified\": \"2021-03-19T11:58:52Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-18T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-19T05:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-19T11:58:52Z\",\n                    \"modified\": \"2021-03-19T11:58:52Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-18T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-19T05:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-19T11:58:52Z\",\n                    \"modified\": \"2021-03-19T11:58:52Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-18T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-19T05:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-19T11:58:52Z\",\n                    \"modified\": \"2021-03-19T11:58:52Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-18T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-19T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-18T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-19T05:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-19T11:58:52Z\",\n                    \"modified\": \"2021-03-19T11:58:52Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-17T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-18T05:00:00Z\",\n                    \"uid\": \"P4702H\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Water Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"water\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-19T11:57:37Z\",\n                    \"modified\": \"2021-03-19T11:57:37Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-17T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-18T05:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-19T11:57:37Z\",\n                    \"modified\": \"2021-03-19T11:57:37Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-17T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-18T05:00:00Z\",\n                    \"uid\": \"I4705G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Injection Gina Krog wells\",\n                    \"type\": \"injection\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-19T11:57:37Z\",\n                    \"modified\": \"2021-03-19T11:57:37Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-17T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-18T05:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-19T11:57:37Z\",\n                    \"modified\": \"2021-03-19T11:57:37Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-17T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-18T05:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-19T11:57:37Z\",\n                    \"modified\": \"2021-03-19T11:57:37Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-17T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-18T05:00:00Z\",\n                    \"uid\": \"F4709G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare Total on Gina Krog\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-19T11:57:37Z\",\n                    \"modified\": \"2021-03-19T11:57:37Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-17T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-18T05:00:00Z\",\n                    \"uid\": \"F4716G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel GK on SLA\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-19T11:57:37Z\",\n                    \"modified\": \"2021-03-19T11:57:37Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-17T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-18T05:00:00Z\",\n                    \"uid\": \"F4706G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Fuel on Gina Krog\",\n                    \"type\": \"consume - fuel\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-19T11:57:37Z\",\n                    \"modified\": \"2021-03-19T11:57:37Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-17T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-18T05:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-19T11:57:37Z\",\n                    \"modified\": \"2021-03-19T11:57:37Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-17T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-18T05:00:00Z\",\n                    \"uid\": \"P4703C\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Cond. Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"condensate - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-19T11:57:37Z\",\n                    \"modified\": \"2021-03-19T11:57:37Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-17T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-18T05:00:00Z\",\n                    \"uid\": \"P4701G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"platform\",\n                        \"uid\": \"443856\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export meas. from GK to SLA\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"measured\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-19T11:57:37Z\",\n                    \"modified\": \"2021-03-19T11:57:37Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-17T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-18T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-17T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-18T05:00:00Z\",\n                    \"uid\": \"P4703G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production GK on SLA\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-19T11:57:37Z\",\n                    \"modified\": \"2021-03-19T11:57:37Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-16T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-17T05:00:00Z\",\n                    \"uid\": \"P4702O\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Oil Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"oil - net\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-17T12:31:35Z\",\n                    \"modified\": \"2021-03-17T12:31:35Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-16T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-17T05:00:00Z\",\n                    \"uid\": \"P4702G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Production Gina Krog wells\",\n                    \"type\": \"production\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-17T12:31:35Z\",\n                    \"modified\": \"2021-03-17T12:31:35Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-16T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-17T05:00:00Z\",\n                    \"uid\": \"P4713G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Export from Gina Krog on SLA and SLT\",\n                    \"type\": \"export\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-17T12:31:35Z\",\n                    \"modified\": \"2021-03-17T12:31:35Z\"\n                },\n                {\n                    \"pagination\": null,\n                    \"sourceStartTime\": \"2021-03-16T00:00:00Z\",\n                    \"sourceEndTime\": \"2021-03-17T00:00:00Z\",\n                    \"dataStartTime\": \"2021-03-16T05:00:00Z\",\n                    \"dataEndTime\": \"2021-03-17T05:00:00Z\",\n                    \"uid\": \"F4719G\",\n                    \"sourceEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"owningEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\"\n                    },\n                    \"dataEntity\": {\n                        \"name\": \"GINA KROG\",\n                        \"type\": \"field\",\n                        \"uid\": \"23384544\"\n                    },\n                    \"dataPeriod\": \"day\",\n                    \"name\": \"Gas Flare GK on SLA\",\n                    \"type\": \"consume - flare\",\n                    \"dataType\": \"production\",\n                    \"product\": \"gas\",\n                    \"productName\": \"\",\n                    \"qualifier\": \"allocated\",\n                    \"sourceSystemName\": \"DPR\",\n                    \"sourceSystemVersion\": 2,\n                    \"quality\": \"temporary\",\n                    \"created\": \"2021-03-17T12:31:35Z\",\n                    \"modified\": \"2021-03-17T12:31:35Z\"\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"d38e740a-21fc-4214-8025-a86910d579d1"}],"id":"0b2e9b00-6c5d-4d72-8454-26f8f7f0dfb8","description":"<p>The pagination feature is the recommended way to extract data from the system in a performant manner and at the same time it is able to cope with larger data amounts.</p>\n<p>The pagintation feature works through the use of adding the pagination objects to any query request and at the same time by adding the \"elastic:true\" query filtering attribute to the query.</p>\n<p>Example query:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>query {\n \n  production {\n    data(\n      start: \"2020-11-09\"\n      end: \"2021-11-11\"\n      elastic:true\n      data_entity_names:[\"GINA KROG\"]\n      source_system_versions:[\"2\"]\n      data_periods:[\"day\"]\n      ) {\n      pagination{\n        currentPage\n        itemsPerPage\n        totalPages\n        totalRecords\n      }\n</code></pre><p>When the backend services encounters this request it will automatically split up the result dataset in pages of 1000 entries, which then can be called on subsequent requests to return the complete result from the database. Focus on each page is to return the result as fast as possible meaning that it will be very performant with larger queries over larger time periods.</p>\n<p>When the pagination object is returned from the first query this will contain needed statistics for the dataset that was asked for, including information on </p>\n<ol>\n<li>currentPage -&gt; the current page of data beeing viewed</li>\n<li>itemsPerPage -&gt; number of records returned per page</li>\n<li>totalPages -&gt; the total number of available pages for the dataset</li>\n<li>totalRecords -&gt; the total number of records found</li>\n</ol>\n<p>E.g. </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code> \"pagination\": {\n            \"currentPage\": 1,\n            \"itemsPerPage\": 1000,\n            \"totalPages\": 3,\n            \"totalRecords\": 2093\n          }\n</code></pre><p>To continue looping through the following pages the subsequent requests should then include the query filter attribute pageNum:\"page to be viewed\".</p>\n<p>E.g. </p>\n<p>Using the same query as above to view the second page of the result one would specify it by adding the pageNum filter with the correct corresponding page that should be viewed.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>query {\n \n  production {\n    data(\n      start: \"2020-11-09\"\n      end: \"2021-11-11\"\n      elastic:true\n      data_entity_names:[\"GINA KROG\"]\n      source_system_versions:[\"2\"]\n      data_periods:[\"day\"]\n      pageNum:2\n      ) {\n      pagination{\n        currentPage\n        itemsPerPage\n        totalPages\n        totalRecords\n      }\n</code></pre>","event":[{"listen":"prerequest","script":{"id":"96aef81e-ac12-497f-8f62-9aa010cc0b7c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"5a4e06cf-7ad9-42f9-8655-dd36b8fa3f3b","type":"text/javascript","exec":[""]}}],"_postman_id":"0b2e9b00-6c5d-4d72-8454-26f8f7f0dfb8"},{"name":"Autocompletion","item":[{"name":"Example query for autocompletion on the production object using the name field","event":[{"listen":"test","script":{"id":"bcafecd4-d028-45ee-9a56-80f38716f91e","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","","var template = `","    <table>","        <tr>","            <th>Reporting entity</th>","            <th>Reporting entity kind</th>","            <th>Data entity</th>","            <th>Data entity kind</th>","            <th>Data entity uid</th>","            <th>Report start</th>","            <th>Report end</th>","            <th>Comment start</th>","            <th>Comment end</th>","            <th>Type</th>","            <th>Comment</th>","        </tr>","","        {{#each response.data.drilling.statusInfo}}","            <tr>","                <th>{{sourceEntity.name}}</th>","                <th>{{sourceEntity.uid}}</th>","                <th>{{dataStartTime}}</th>","                <th>{{dataEndTime}}</th>","                <th>{{sum24Hrs}}</th>","                <th>{{forecast24Hrs}}</th>","            </tr>","        {{/each}}","    </table>","`;","","pm.visualizer.set(template, {","    // Pass the response body parsed as JSON as `data`","    response: pm.response.json()","});","",""],"type":"text/javascript"}}],"id":"0a301070-1b5b-45a3-b380-d4b9b98863d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"description":"<p>OPC subscription key as supplied by NOROG</p>\n","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"graphql","graphql":{"query":"query {\n \n  production {\n    data(\n      \n      elastic:true\n      data_entity_names:[\"GINA KROG\"]\n      targetField:\"name\"\n      searchPhrase:\"gas\"\n      ) {\n      suggestions\n    }\n    \n  }\n}","variables":""}},"url":"{{graphQueryAPI}}","description":"<p>Example query for using autocompletion targetting the name field and searching for the phrase \"gas\".</p>\n","urlObject":{"host":["{{graphQueryAPI}}"],"query":[],"variable":[]}},"response":[{"id":"9ebd5619-0504-406f-b1a9-8e2347d78869","name":"Example query for autocompletion on the production object using the name field","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"description":"OPC subscription key as supplied by NOROG","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"graphql","graphql":{"query":"query {\n \n  production {\n    data(\n      \n      elastic:true\n      data_entity_names:[\"GINA KROG\"]\n      targetField:\"name\"\n      searchPhrase:\"gas\"\n      ) {\n      suggestions\n    }\n    \n  }\n}","variables":""}},"url":"{{graphQueryAPI}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Frame-Options","value":"xx"},{"key":"X-Content-Type-Options","value":"xx"},{"key":"X-XSS-Protection","value":"xx"},{"key":"Strict-Transport-Security","value":"xx"},{"key":"Content-Security-Policy","value":"xxx"},{"key":"Date","value":"xx"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"production\": {\n            \"data\": [\n                {\n                    \"suggestions\": {\n                        \"suggestionList\": [\n                            \"Gas Balancing Total\",\n                            \"Gas Balancing on ASGA\",\n                            \"Gas Balancing on ASGB\",\n                            \"Gas Balancing on Grane Process\",\n                            \"Gas Balancing on Kristin Process\"\n                        ]\n                    }\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"0a301070-1b5b-45a3-b380-d4b9b98863d7"},{"name":"Example query for autocompletion on the production object using the product field","event":[{"listen":"test","script":{"id":"d809389c-1cee-42e1-991f-94c2f2f7b089","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","","var template = `","    <table>","        <tr>","            <th>Reporting entity</th>","            <th>Reporting entity kind</th>","            <th>Data entity</th>","            <th>Data entity kind</th>","            <th>Data entity uid</th>","            <th>Report start</th>","            <th>Report end</th>","            <th>Comment start</th>","            <th>Comment end</th>","            <th>Type</th>","            <th>Comment</th>","        </tr>","","        {{#each response.data.drilling.statusInfo}}","            <tr>","                <th>{{sourceEntity.name}}</th>","                <th>{{sourceEntity.uid}}</th>","                <th>{{dataStartTime}}</th>","                <th>{{dataEndTime}}</th>","                <th>{{sum24Hrs}}</th>","                <th>{{forecast24Hrs}}</th>","            </tr>","        {{/each}}","    </table>","`;","","pm.visualizer.set(template, {","    // Pass the response body parsed as JSON as `data`","    response: pm.response.json()","});","",""],"type":"text/javascript"}}],"id":"011d7759-437d-4640-b591-120d5a1b943b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"description":"<p>OPC subscription key as supplied by NOROG</p>\n","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"graphql","graphql":{"query":"query {\n \n  production {\n    data(\n      \n      elastic:true\n      data_entity_names:[\"GINA KROG\"]\n      targetField:\"name\"\n      searchPhrase:\"gas\"\n      ) {\n      suggestions\n    }\n    \n  }\n}","variables":""}},"url":"{{graphQueryAPI}}","description":"<p>Example query for using autocompletion targetting the product field and searching for the phrase \"gas\".</p>\n","urlObject":{"host":["{{graphQueryAPI}}"],"query":[],"variable":[]}},"response":[{"id":"35d07527-990f-4367-bdb5-63b0e8437b57","name":"Example query for autocompletion on the production object using the product field","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"description":"OPC subscription key as supplied by NOROG","key":"Ocp-Apim-Subscription-Key","type":"text","value":"{{opcSubscriptionKey}}"}],"body":{"mode":"graphql","graphql":{"query":"query {\n \n  production {\n    data(\n      \n      elastic:true\n      data_entity_names:[\"GINA KROG\"]\n      targetField:\"name\"\n      searchPhrase:\"gas\"\n      ) {\n      suggestions\n    }\n    \n  }\n}","variables":""}},"url":"{{graphQueryAPI}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"xxx"},{"key":"X-Frame-Options","value":"xxx"},{"key":"X-Content-Type-Options","value":"xxx"},{"key":"X-XSS-Protection","value":"xxx"},{"key":"Strict-Transport-Security","value":"xxx"},{"key":"Content-Security-Policy","value":"xxx"},{"key":"Date","value":"xxx"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"production\": {\n            \"data\": [\n                {\n                    \"suggestions\": {\n                        \"suggestionList\": [\n                            \"Gas Balancing Total\",\n                            \"Gas Balancing on ASGA\",\n                            \"Gas Balancing on ASGB\",\n                            \"Gas Balancing on Grane Process\",\n                            \"Gas Balancing on Kristin Process\"\n                        ]\n                    }\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"011d7759-437d-4640-b591-120d5a1b943b"}],"id":"1709764d-a94d-4a1e-958d-758ae0a51017","description":"<p>The autocompletion feature is an easy way to get an overview of data that is stored within the system for a given asset. Typical usecases could be to get an overview of all of the flow names that have been used for a given asset.</p>\n<p>The autocompletion feature will search within the specified field based on search criteria specified and return any matches through the suggestion object.</p>\n<p>In the example below where are stating that we would like the autocompletion to target the \"name\" field of the production data object and search for the phrase \"gas\".</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>query {\n \n  production {\n    data(\n      \n      elastic:true\n      data_entity_names:[\"GINA KROG\"]\n      targetField:\"name\"\n      searchPhrase:\"gas\"\n      ) {\n      suggestions\n    }\n    \n  }\n}\n</code></pre><p>When the suggestion object is returned we will get an overview of all of the names matchin the given search criteria for the specified asset\n´´´\n{\n  \"data\": {\n    \"production\": {\n      \"data\": [\n        {\n          \"suggestions\": {\n            \"suggestionList\": [\n              \"Gas Balancing Total\",\n              \"Gas Balancing on ASGA\",\n              \"Gas Balancing on ASGB\",\n              \"Gas Balancing on Grane Process\",\n              \"Gas Balancing on Kristin Process\"\n            ]\n          }\n        }\n      ]\n    }\n  }\n}\n´´´</p>\n","event":[{"listen":"prerequest","script":{"id":"7a8a1093-6527-40e6-9edd-e920e09b4b18","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"86095132-a385-45f8-a83e-a55a821ff736","type":"text/javascript","exec":[""]}}],"_postman_id":"1709764d-a94d-4a1e-958d-758ae0a51017"}],"id":"232e0cfb-83b2-4887-83c4-1401b2a93ca6","description":"<p>The following folder contains examples of utilization of the pagination query functionality and advanced querying for data using e.g. full-text searches</p>\n","_postman_id":"232e0cfb-83b2-4887-83c4-1401b2a93ca6"},{"name":"Querying for data returning it as csv","item":[{"name":"Example query for production data and returning data as csv","event":[{"listen":"test","script":{"id":"b47c8b1f-16ad-4073-88ae-27cbafca1e50","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","",""],"type":"text/javascript"}}],"id":"b55faec9-a967-41c4-b1fd-62eb16e6c530","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{bearerToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"description":"<p>OPC subscription key as supplied by NOROG</p>\n","key":"Ocp-Apim-Subscription-Key","type":"text","value":"XXXX"},{"key":"file-type","value":"csv","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query{\nproduction {\n        data(\n        data_entity_names:[\"ÅSGARD\"]\n        start: \"2016-01-01T23:00:00.000Z\", end: \"2016-01-31T23:00:00.000Z\",\n        ) {\n\n            sourceStartTime \n            sourceEndTime\n            dataEntity{name } \n            name\n            volume{\n              value \n              uom  \n              description\n            } \n           }\n\n        }\n\n      }","variables":""}},"url":"{{graphQLCustomReports}}","description":"<p>Example query using GRAPHQL and returning data as csv. To ensure that the service return csv data, add the http header file-type=\"csv\"</p>\n","urlObject":{"host":["{{graphQLCustomReports}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b55faec9-a967-41c4-b1fd-62eb16e6c530"}],"id":"154e4d2a-ccbb-45ca-92fd-ffc778026740","_postman_id":"154e4d2a-ccbb-45ca-92fd-ffc778026740","description":""}],"id":"e84e2854-fdc0-4863-814f-c1d400e13f53","description":"<p>The following section illustrates example of how to query the system for different types of data by using the standard query API. The query API is built and follows the global standard <a href=\"https://www.graphql.org\">GraphQL</a></p>\n","event":[{"listen":"prerequest","script":{"id":"e3afa8cb-0cf9-4f6b-928f-12e32dd17a39","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"2803b079-439e-44ae-8182-2e06a259bc55","type":"text/javascript","exec":[""]}}],"_postman_id":"e84e2854-fdc0-4863-814f-c1d400e13f53"}],"event":[{"listen":"prerequest","script":{"id":"c49770c5-dd75-445a-89e7-3599a8a9f12c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"3584867b-be7f-4f0b-a3cb-e65f0e213e9c","type":"text/javascript","exec":[""]}}]}