{"info":{"_postman_id":"a3dea688-15b8-40a1-bd29-1a05345c26f9","name":"Darwin API","description":"<html><head></head><body><p>The Darwin API is a RESTful API that allows third party vendors and customers to connect and consume data from the Darwin system as well as to push data into the Darwin system.</p>\n<h1 id=\"getting-started\">Getting Started</h1>\n<p>To begin using Darwin RESTful API, complete the following steps:</p>\n<ol>\n<li><p>Get your credentials and API keys</p>\n</li>\n<li><p>Authenticate and get your tokens</p>\n</li>\n<li><p>Create your Authentication Header</p>\n</li>\n<li><p>Craft a Call</p>\n</li>\n<li><p>Create your sandbox</p>\n</li>\n<li><p>Test your Calls</p>\n</li>\n</ol>\n<h1 id=\"step-1-get-your-credentials-and-api-keys\">Step 1: Get your credentials and API Keys</h1>\n<p>To begin integrating with Darwin RESTful API, you first need to have your API authentication Credentials (<code>{{client_id}}</code> and <code>{{client_secret}}</code>). These will give you access to use the Darwin RESTful API. These are issued for each 3rd party vendor / integrator on each client</p>\n<p>Then you need to be get a <code>{{username}}</code>, <code>{{password}}</code> and <code>{{api_key}}</code>. These are also issued for each 3rd party vendor / integrator on each client. These will give you access and authorize you to pull and push data into that specific client (identified by the <code>{{api_key}}</code>).</p>\n<ul>\n<li><p><strong>client_id</strong> and <strong>client_secret</strong>: Issued for each 3rd party vendor / integrator on each client you want to connect to. Allows you to get access to the Darwin RESTful API</p>\n</li>\n<li><p><strong>username</strong> and <strong>password</strong>: Issued for each 3rd party vendor / integrator on each client you want to connect to. Authorizes you to pull and push data into a specific client</p>\n</li>\n<li><p><strong>api_key</strong>: Issued for each 3rd party vendor / integrator on each client you want to connect to. Identifies the client to which you will get connected to pull and push data.</p>\n</li>\n</ul>\n<p>You need to contact the manager of the client to whose data you would like to connect to get issued all these API authentication credentials and Keys</p>\n<h1 id=\"step-2-authenticate-and-get-your-tokens\">Step 2. Authenticate and get your tokens</h1>\n<p>Once you get all the API Authentication credentials and keys, you get a <code>{{token}}</code> and a <code>{{refresh_token}}</code></p>\n<p>In order to get these tokens, you need to make an HTTP Request to our <code>login</code> resource. You will need the <code>{{client_id}}</code>, <code>{{client_secret}}</code>, <code>{{api_key}}</code>, <code>{{username}}</code> and <code>{{password}}</code> to craft the request.</p>\n<p>If successfully done, the request response will give you the <code>{{token}}</code> and the <code>{{refreshToken}}</code></p>\n<ul>\n<li><p><strong>token</strong>: Use this value to make any other request to any other resource in the Darwin RESTful API. This token will be valid for 24 hours.</p>\n</li>\n<li><p><strong>refreshToken</strong>: Get this value and save it in a secure place. You will need this in order to renew your <code>{{token}}</code> when it expires. For this, you will simply need to call the <code>Refresh-token</code> resource in the Darwin RESTful API. This will generate a new token in replacement of the expired one and it will also issue you a new <code>{{refreshToken}}</code> token to replace the previous one. You will always need to use the updated <code>{{refreshToken}}</code> in order to successfully call the <code>Refresh-token</code> resource.</p>\n</li>\n</ul>\n<h1 id=\"step-3-create-your-authentication-header\">Step 3. Create your Authentication Header</h1>\n<p>Darwin RESTful API relies on Basic access authentication over HTTPS using the <code>{{username}}</code> and <code>{{token}}</code> as the username and password values. These unique values are combined with a colon and then encoded using the RFC2045-MIME variant of Base64. The encoded string is then added to the HTTP <code>Authorization</code> header. For example, if you have the following API credentials and token value:</p>\n<ul>\n<li><p><strong>username</strong>: <a href=\"https://mailto:test@mail.com\">test@mail.com</a></p>\n</li>\n<li><p><strong>token</strong>: 315c7649520edde96c5cbad59a5b265f</p>\n</li>\n</ul>\n<p>The value of the <code>Authorization</code> header field would look like the following:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>dGVzdEBtYWlsLmNvbTozMTVjNzY0OTUyMGVkZGU5NmM1Y2JhZDU5YTViMjY1Zg==\n\n</code></pre><p>Several different online tools can help you create your <code>Authorization</code> header, such as Postman. You can also add Base64 encoding to HMAC requests to automatically convert the API Access ID and API Secure Key values into the encoded ASCII string. To do so, use the following code:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Convert.ToBase64String(Encoding.Default.GetBytes(`{{username}}` + \":\" + `{{token}}`)).Trim()\n\n</code></pre><p><strong>NOTE:</strong> This authorization header is required to be sent for all Darwin API RESTful resources except <code>login</code> and <code>refresh-token</code></p>\n<h1 id=\"step-4-craft-a-call\">Step 4. Craft a Call</h1>\n<p>The following sections detail everything you'll need to create a request call. The API Reference section lists and explains all the resources you can use and provides samples of common requests and responses.</p>\n<h2 id=\"api-base-uri\">API Base URI</h2>\n<p>The base URL to use for all the API resources is:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>base_url</th>\n<th>Environment</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>api.darwin.cloud</td>\n<td>Production</td>\n</tr>\n<tr>\n<td>api.darwin.cloud</td>\n<td>Sandbox</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>NOTE:</strong> To get access to the sandbox, please request the client a different set of API authentication credentials</p>\n<h1 id=\"step-5-create-your-sandbox\">Step 5. Create your Sandbox</h1>\n<p>To starting practising and getting used to how the Darwin RESTful API works, you can now create your Sandbox environment in which you will be able to make as many calls as you need to any of the Darwin API resources without touching anything on the production environment.</p>\n<p>To create and manage your Sandbox, you need to make an HTTP Request to our <code>sandbox</code> resources. You will need a <code>{{token}}</code> to do it. You will receive in response a <code>{{SandboxGUID}}</code> value that you can later use to query The sandbox status and check if it is ready to use. You can also use this <code>{{SandboxID}}</code> to drop a sandbox and then recreate another one.</p>\n<p>Please refer to the <strong><code>Sandbox</code></strong> section of this document to learn about these resources.</p>\n<h1 id=\"step-6-test-your-calls\">Step 6. Test your Calls</h1>\n<p>To help you gain a greater understanding of how Darwin RESTful API works, we've built a <a href=\"https://www.getpostman.com/collections/4d76764f22815bf88441\">Postman collection</a> of sample REST requests that you can use to test each resource.</p>\n<p><strong>NOTE:</strong> While we've included sample body parameters in this collection of request calls, you'll still need to add the URLs and Authentication Headers described in Step above.</p>\n<h1 id=\"credentials-expiration-period\">Credentials Expiration Period</h1>\n<p>Be aware that all credentials (<code>{{username}}</code> and <code>{{password}}</code>) have an expiration of 42 days. After that period of time, the credentails are not longer valid and you will not be able to do a request to the <code>login</code> resource.</p>\n<p>However, if your credentials have expired but your <code>{{token}}</code> has not yet expired, you will still be able to use this <code>{{token}}</code> to access any Darwin RESTful API resource. This will work up to the <code>{{token}}</code> expiration date.</p>\n<p>In summary, if you have a <code>{{token}}</code> that is not yet expired, you can use it to access any Darwin API RESTful resource until the expiration date, without the need to request a new <code>{{token}}</code> to the <code>login</code> resource every time you connect to the Darwin RESTful API.</p>\n<h1 id=\"refresh-tokens\">Refresh Tokens</h1>\n<p>If your <code>{{token}}</code> has already expired, the best way to get a new <code>{{token}}</code> is using the <code>Refresh-token</code> you were provided when you first got your <code>{{token}}.</code>In the response of the <code>login</code> resource you should have given a <code>{{token}}</code> and a <code>Refresh-token</code>. Use the <code>Refresh-token</code> to get issued a new updated not-expired <code>{{token}}</code> so that you can continue using the Darwin RESTful API resources.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Getting Started","slug":"getting-started"},{"content":"Step 1: Get your credentials and API Keys","slug":"step-1-get-your-credentials-and-api-keys"},{"content":"Step 2. Authenticate and get your tokens","slug":"step-2-authenticate-and-get-your-tokens"},{"content":"Step 3. Create your Authentication Header","slug":"step-3-create-your-authentication-header"},{"content":"Step 4. Craft a Call","slug":"step-4-craft-a-call"},{"content":"Step 5. Create your Sandbox","slug":"step-5-create-your-sandbox"},{"content":"Step 6. Test your Calls","slug":"step-6-test-your-calls"},{"content":"Credentials Expiration Period","slug":"credentials-expiration-period"},{"content":"Refresh Tokens","slug":"refresh-tokens"}],"owner":"3591617","collectionId":"a3dea688-15b8-40a1-bd29-1a05345c26f9","publishedId":"TzRU9mSp","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2025-08-04T15:03:07.000Z"},"item":[{"name":"Security","item":[{"name":"Login","event":[{"listen":"test","script":{"id":"40d25f74-b7f5-4d6f-9e9c-641602270c1d","exec":["var jsonData =  JSON.parse(responseBody);\r","pm.environment.set(\"token\",jsonData.token);\r","pm.environment.set(\"username\",jsonData.userName);\r","pm.environment.set(\"refreshToken\",btoa(jsonData.refreshToken));\r",""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"7b69e024-ecfa-45df-b1c0-5f76d7ffdb5d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"client_id","value":"{{client_id}}","description":"<p>This represents the ID of 3rd party client application accessing the darwin API. This will be provided by AccountTECH to the 3rd party client. </p>\n<p><code>client</code> needs to be encoded with base64 for using in the Darwin API</p>\n"},{"key":"client_secret","value":"{{client_secret}}","description":"<p>This represents the password of 3rd party client application accessing the darwin API. This will be provided by AccountTECH to the 3rd party client. </p>\n<p><code>client_secret</code>  needs to be encoded with base64 for using in the Darwin API</p>\n"},{"key":"api_key","value":"{{api_key}}","description":"<p>This represents a secret GUID value provided by AccountTECH to the 3rd party client in order to access its data. This can be changed by the client from within the Darwin UI as needed.</p>\n<p><code>API_key</code>  needs to be encoded with base64 for using in the Darwin API</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{ \"userName\": \"{{username}}\", \"userPassword\": \"{{password}}\" } "},"url":"https://{{base_url}}/api/auth/login/{{username}}","description":"<p>Upon passing the right credentials and keys, the <b>Login </b> endpoint will provide the token needed to be able to invoke all the other endpoints in the Darwin API</p>\n","urlObject":{"protocol":"https","path":["api","auth","login","{{username}}"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"c2bd85a0-b6b4-4ce4-9f87-3b153d91f68d","name":"success response sample","originalRequest":{"method":"POST","header":[{"key":"client_id","value":"{{client_id}}","description":"This represents the ID of 3rd party client application accessing the darwin API. This will be provided by AccountTECH to the 3rd party client. \n\n`client` needs to be encoded with base64 for using in the Darwin API\n"},{"key":"client_secret","value":"{{client_secret}}","description":"This represents the password of 3rd party client application accessing the darwin API. This will be provided by AccountTECH to the 3rd party client. \n\n`client_secret`  needs to be encoded with base64 for using in the Darwin API\n"},{"key":"api_key","value":"{{api_key}}","description":"This represents a secret GUID value provided by AccountTECH to the 3rd party client in order to access its data. This can be changed by the client from within the Darwin UI as needed.\n\n`API_key`  needs to be encoded with base64 for using in the Darwin API\n"},{"key":"Content-Type","value":"application/json"},{"key":"Client_device","value":"","description":"(optional) This is a value the 3rd party client creates as an extra security layer for authentication. On the first request we received, AccountTECH will store this value and ask the client to properly authorize it via an email to will get sent to the client’s owner email address on file. Once approved, authentication will be granted\n\nClient device  needs to be encoded with base64 for using in the Darwin API\n","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{ \"userName\": \"{{username}}\", \"userPassword\": \"{{password}}\" } "},"url":"https://{{base_url}}/api/auth/login/{{username}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Thu, 09 Sep 2021 15:02:56 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": 8474,\n    \"userName\": \"saAffiliated\",\n    \"fullName\": null,\n    \"firstName\": \"Super admin\",\n    \"lastName\": \"Affiliated\",\n    \"agentId\": null,\n    \"email\": \"mark@accounttech.com\",\n    \"databaseId\": 5,\n    \"token\": \"6531C9C7-FFED-456C-9C51-8BBA351FB0C2\",\n    \"tokenExpiration\": \"9/10/2021 11:03:00 AM\",\n    \"refreshToken\": \"82C1B3C1-5909-487A-9B4D-1980EF0E3A26\",\n    \"lastPasswordDate\": \"2021-08-09T13:09:59.77\",\n    \"expPasswordDate\": null,\n    \"firstLogin\": false,\n    \"passwordExpired\": false,\n    \"locked\": false,\n    \"notifyPropertyMsg\": false,\n    \"notifyContactMsg\": false,\n    \"notifyPropertyDoc\": false,\n    \"notifyContactDoc\": false,\n    \"lockedDate\": null,\n    \"createDate\": null,\n    \"createdBy\": null,\n    \"modifyDate\": null,\n    \"modifyBy\": null,\n    \"userRoles\": null,\n    \"userCompanies\": null,\n    \"userOffices\": null,\n    \"userGLAccounts\": null,\n    \"userVoucherTypes\": null,\n    \"DuoResult\": \"AUTHORIZED\",\n    \"DuoUserId\": \"DUJUTUEXPX6O3802SSP5\",\n    \"DuoActivationCode\": \"duo://EGZ8D6D8A2rA4SmBX7Or-YXBpLWFjODFjMTkzLmR1b3NlY3VyaXR5LmNvbQ\",\n    \"DuoActivationBarCode\": \"https://api-ac81c193.duosecurity.com/frame/qr?value=duo%3A%2F%2FEGZ8D6D8A2rA4SmBX7Or-YXBpLWFjODFjMTkzLmR1b3NlY3VyaXR5LmNvbQ\",\n    \"DuoDevices\":[\n                    {\n                        \"capabilities\": [\n                            \"auto\",\n                            \"push\",\n                            \"sms\",\n                            \"phone\",\n                            \"mobile_otp\"\n                        ],\n                        \"device\": \"DPFZRS9FB0D46QFTM891\",\n                        \"display_name\": \"iOS (XXX-XXX-0100)\",\n                        \"name\": \"\",\n                        \"number\": \"XXX-XXX-0100\",\n                        \"type\": \"phone\"\n                    },\n                    {\n                        \"device\": \"DHEKH0JJIYC1LX3AZWO4\",\n                        \"name\": \"0\",\n                        \"type\": \"token\"\n\n                    }\n    ]\n\n}"},{"id":"7925e9fe-e944-498c-9af9-cd143ec65dc4","name":"failed response sample","originalRequest":{"method":"POST","header":[{"key":"Client_id","value":"{{client_id}}","description":"This represents the ID of 3rd party client application accessing the darwin API. This will be provided by AccountTECH to the 3rd party client. \n\nClient needs to be encoded with base64 for using in the Darwin API\n"},{"key":"Client_secret","value":"{{client_secret}}","description":"This represents the password of 3rd party client application accessing the darwin API. This will be provided by AccountTECH to the 3rd party client. \n\nClient_secret  needs to be encoded with base64 for using in the Darwin API\n"},{"key":"api_key","value":"{{api_key}}","description":"This represents a secret GUID value provided by AccountTECH to the 3rd party client in order to access its data. This can be changed by the client from within the Darwin UI as needed.\n\nAPI_key  needs to be encoded with base64 for using in the Darwin API\n"},{"key":"Content-Type","value":"application/json"},{"key":"Client_device","value":"","description":"(optional) This is a value the 3rd party client creates as an extra security layer for authentication. On the first request we received, AccountTECH will store this value and ask the client to properly authorize it via an email to will get sent to the client’s owner email address on file. Once approved, authentication will be granted\n\nClient device  needs to be encoded with base64 for using in the Darwin API\n","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{ \"userName\": \"{{username}}\", \"userPassword\": \"{{passwordw}}\" } "},"url":"https://{{base_url}}/api/auth/login/{{username}}"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Server","value":"Kestrel"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 11 May 2021 16:55:43 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"The username or password are invalid. Please try again.\",\n    \"reason\": 0,\n    \"userID\": 0\n}"}],"_postman_id":"7b69e024-ecfa-45df-b1c0-5f76d7ffdb5d"},{"name":"Refresh-token","event":[{"listen":"test","script":{"id":"29c90156-b6c3-4517-b5a8-3fa2297ed2e5","exec":["var jsonData =  JSON.parse(responseBody);\r","pm.environment.set(\"token\",jsonData.token);\r","pm.environment.set(\"username\",jsonData.userName);\r","pm.environment.set(\"refreshToken\",btoa(jsonData.refreshToken));"],"type":"text/javascript"}}],"id":"abebc13a-eafc-4479-8e2a-f5ed26270301","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"userName\": \"{{username}}\",\n    \"refreshToken\": \"{{refreshToken}}\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{base_url}}/api/auth/refresh-token","description":"<p>This Resource will allow you to refresh your <code>{{token}}</code></p>\n<p>once it expires.</p>\n<p>Once this resource is invoked, a new <code>{{token}}</code> and a new <code>{{refreshToken}}</code>will get issued.</p>\n<p>The <code>{{refreshToken}}</code> needs to be sent encoded in base64</p>\n","urlObject":{"protocol":"https","path":["api","auth","refresh-token"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"abebc13a-eafc-4479-8e2a-f5ed26270301"},{"name":"User Offices","event":[{"listen":"prerequest","script":{"id":"b4652265-7ee4-461a-80c5-49a48c0f55d0","exec":["pm.environment.set(\"officeId\",\"5\");"],"type":"text/javascript"}}],"id":"ab6bb429-3dc2-4f57-9fc4-13e8922210d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://{{base_url}}/api/user/office?companyId={{companyId}}&userID={{userID}}&officeID={{officeId}}","description":"<p>This resource will allow you to pull the list of offices to which a given user is granted access.</p>\n","urlObject":{"protocol":"https","path":["api","user","office"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>The company ID in Darwin for the company to pull offices permissions from. If zero, permissions from offices from all companies will be retrieved</p>\n","type":"text/plain"},"key":"companyId","value":"{{companyId}}"},{"description":{"content":"<p>For internal use only. Expects a number. Can be left as blank</p>\n","type":"text/plain"},"key":"userID","value":"{{userID}}"},{"description":{"content":"<p>Used to filter by a specific office record ID in Darwin. </p>\n<p>By default it is “0”.</p>\n<p>If left with “0”, this filter is not applied.</p>\n","type":"text/plain"},"key":"officeID","value":"{{officeId}}"}],"variable":[]}},"response":[{"id":"aac66f4e-c73f-4440-8b9b-caa460b1ac3b","name":"User Offices","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Basic {{token}}","description":"This is a value generated with 2 components:\n\n\n“Basic `{userName:token}`”\n\nThe Token will be issued to the user after a successful authentication (used can get it from the LOGIN endpoint response when this succeeds) \n\nThis 2-value string needs to be encoded to base64\n"}],"url":{"raw":"https://{{base_url}}/api/user/office?companyId={{companyId}}&userID={{userID}}&officeID={{officeId}}","protocol":"https","host":["{{base_url}}"],"path":["api","user","office"],"query":[{"key":"companyId","value":"{{companyId}}","description":"The company ID in Darwin for the company to pull offices permissions from. If zero, permissions from offices from all companies will be retrieved"},{"key":"userID","value":"{{userID}}","description":"For internal use only. Expects a number. Can be left as blank"},{"key":"officeID","value":"{{officeId}}","description":"Used to filter by a specific office record ID in Darwin. By default it is “0”.\nIf left with “0”, this filter is not applied."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 10 Sep 2021 13:58:36 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"userOfficeId\": 6412,\n        \"userId\": 22248,\n        \"officeId\": 5,\n        \"officeName\": \"Concord\",\n        \"createDate\": \"2019-04-05T11:04:43.013\",\n        \"createdBy\": \"saDeploy\",\n        \"modifyDate\": null,\n        \"modifyBy\": null\n    }\n]"}],"_postman_id":"ab6bb429-3dc2-4f57-9fc4-13e8922210d4"},{"name":"Duo Authorization","id":"1f60c9f0-7dcb-44d4-88a4-62c016e5d2d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[]},"isInherited":false},"method":"POST","header":[{"key":"client_id","value":"{{client_id}}","type":"text"},{"key":"client_secret","value":"{{client_secret}}","type":"text"}],"body":{"mode":"raw","raw":"{ \"userName\": \"{{username}}\", \"userPassword\": \"{{password}}\" } "},"url":"https://{{base_url}}/api/auth/duoAuthorize?duoUserId={{duoUserId}}&factor={{factor}}&passcode={{passcode}}&device={{device}}","description":"<p>After passing the Darwin credentials validations and completing the Duo enrollment process, the selected device will be sent to complete the authentication on Duo Security's two-factor platform.</p>\n<p>The result will be the user object already validated, with the field duoResult=ALLOWED that will indicate that the authentication process has been completed successfully.</p>\n","urlObject":{"protocol":"https","path":["api","auth","duoAuthorize"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Unique identifier for the user in Duo that is obtained by completing the enrollment process</p>\n","type":"text/plain"},"key":"duoUserId","value":"{{duoUserId}}"},{"description":{"content":"<p>Available factor of the selected device, the following choices are supported: auto,push,sms,passcode and phone</p>\n","type":"text/plain"},"key":"factor","value":"{{factor}}"},{"description":{"content":"<p>Send the passcode when the factor is \"passcode\" else send an empty string</p>\n","type":"text/plain"},"key":"passcode","value":"{{passcode}}"},{"description":{"content":"<p>ID of the selected device</p>\n","type":"text/plain"},"key":"device","value":"{{device}}"}],"variable":[]}},"response":[{"id":"406b0a69-3590-4b19-a196-478b8063d4c4","name":"success","originalRequest":{"method":"POST","header":[],"url":"https://{{base_url}}/api/auth/duoAuthorize/duoUserId={{duoUserId}}&factor={{factor}}&passcode={{passcode}}&device={{device}}"},"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"userId\": 8474,\r\n    \"userName\": \"saAffiliated\",\r\n    \"fullName\": null,\r\n    \"firstName\": \"Super admin\",\r\n    \"lastName\": \"Affiliated\",\r\n    \"agentId\": null,\r\n    \"email\": \"mark@accounttech.com\",\r\n    \"databaseId\": 5,\r\n    \"token\": \"6531C9C7-FFED-456C-9C51-8BBA351FB0C2\",\r\n    \"tokenExpiration\": \"9/10/2021 11:03:00 AM\",\r\n    \"refreshToken\": \"82C1B3C1-5909-487A-9B4D-1980EF0E3A26\",\r\n    \"lastPasswordDate\": \"2021-08-09T13:09:59.77\",\r\n    \"expPasswordDate\": null,\r\n    \"firstLogin\": false,\r\n    \"passwordExpired\": false,\r\n    \"locked\": false,\r\n    \"notifyPropertyMsg\": false,\r\n    \"notifyContactMsg\": false,\r\n    \"notifyPropertyDoc\": false,\r\n    \"notifyContactDoc\": false,\r\n    \"lockedDate\": null,\r\n    \"createDate\": null,\r\n    \"createdBy\": null,\r\n    \"modifyDate\": null,\r\n    \"modifyBy\": null,\r\n    \"userRoles\": null,\r\n    \"userCompanies\": null,\r\n    \"userOffices\": null,\r\n    \"userGLAccounts\": null,\r\n    \"userVoucherTypes\": null,\r\n    \"DuoResult\": \"ALLOWED\",\r\n    \"DuoUserId\": \"DUJUTUEXPX6O3802SSP5\",\r\n    \"DuoActivationCode\": \"duo://EGZ8D6D8A2rA4SmBX7Or-YXBpLWFjODFjMTkzLmR1b3NlY3VyaXR5LmNvbQ\",\r\n    \"DuoActivationBarCode\": \"https://api-ac81c193.duosecurity.com/frame/qr?value=duo%3A%2F%2FEGZ8D6D8A2rA4SmBX7Or-YXBpLWFjODFjMTkzLmR1b3NlY3VyaXR5LmNvbQ\",\r\n    \"DuoDevices\":null\r\n\r\n}"}],"_postman_id":"1f60c9f0-7dcb-44d4-88a4-62c016e5d2d6"}],"id":"e555452e-07c1-4d96-b8df-6c52c109d723","description":"<p>The <code>Security</code> object allows you to have access to Darwin RESTful API resources that allows you to get authenticated, get a token and refresh the token as needed.</p>\n<p>It also provides access to the list of offices for which any given user has access to.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"ee5f9b77-8830-4613-9d0d-3bf30412092b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"748e823c-c0d8-4264-9cf5-dfc772faa3b2","type":"text/javascript","exec":[""]}}],"_postman_id":"e555452e-07c1-4d96-b8df-6c52c109d723"},{"name":"Company","item":[{"name":"Company Report","event":[{"listen":"prerequest","script":{"id":"092273e5-6fb9-4f29-b803-f2d89fb6d5c6","exec":["pm.environment.set(\"name\",\"\");\r","pm.environment.set(\"dateType\",1);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"0c443946-3b8e-45a4-abac-78c9f8203709","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://{{base_url}}/api/companyReport?id={{companyId}}&name={{name}}&dateType={{dateType}}&dateStart={{dateStart}}&dateEnd={{dateEnd}}&showDeleted={{showDeleted}}&pageIndex={{pageIndex}}&pageSize={{pageSize}}","description":"<p>This Resource will allows you to pull the list of legal entities (companies) of any given client filtered by different parameters such as: id, name, date, etc.</p>\n","urlObject":{"protocol":"https","path":["api","companyReport"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Used to filter by a specific company record ID in Darwin. </p>\n<p>By default it is “0”.</p>\n<p>If left with “0”, this filter is not applied.</p>\n","type":"text/plain"},"key":"id","value":"{{companyId}}"},{"description":{"content":"<p>Used to filter by a specific company record name in Darwin. </p>\n<p>By default it is \"empty”.</p>\n<p>If left blank, this filter is not applied.</p>\n","type":"text/plain"},"key":"name","value":"{{name}}"},{"description":{"content":"<p>Represents the type of date to use for filtering in a given date range.</p>\n<p>It is used together with dateStart and dateEnd parameters</p>\n<p>Possible values:</p>\n<ul>\n<li>0 means no date type will be used</li>\n<li>1 means createDate will be used to filter by date range</li>\n<li>2 means modifyDate will be used to filter by date range</li>\n<li>3 means deleteDate will be used to filter by date range</li>\n</ul>\n","type":"text/plain"},"key":"dateType","value":"{{dateType}}"},{"description":{"content":"<p>The start date from which companies will be retrieved.</p>\n","type":"text/plain"},"key":"dateStart","value":"{{dateStart}}"},{"description":{"content":"<p>The end date until which companies will be retrieved.</p>\n","type":"text/plain"},"key":"dateEnd","value":"{{dateEnd}}"},{"description":{"content":"<p>Retrieves deleted companies records from Darwin. Possible values are 1 or 0.</p>\n<ul>\n<li>1 means the deleted companies will be retrieved</li>\n<li>0 means the deleted companies will not be retrieved.</li>\n</ul>\n","type":"text/plain"},"key":"showDeleted","value":"{{showDeleted}}"},{"description":{"content":"<p>Represents the page number that will be retrieved. Starts in zero.</p>\n<p>If nothing is passed, it will assume page zero.</p>\n<p>If -1 is passed, it will retrieve all records at once.</p>\n","type":"text/plain"},"key":"pageIndex","value":"{{pageIndex}}"},{"description":{"content":"<p>Determines the number of company entries that will be retrieved on every request. Could be any value from 1 to 100</p>\n<p>Default value is 100, returns maximum of 100 records.</p>\n","type":"text/plain"},"key":"pageSize","value":"{{pageSize}}"}],"variable":[]}},"response":[{"id":"181d3795-5f3e-4be6-a3ec-c3f0bbc9d541","name":"Company Report","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Basic {{token}}","description":"This is a value generated with 2 components:\n\n“Basic `{userName:token}`”\n\nThe Token will be issued to the user after a successful authentication (used can get it from the LOGIN endpoint response when this succeeds) \n\nThis 2-value string needs to be encoded to base64\n"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{base_url}}/api/companyReport?id={{companyId}}&name={{name}}&dateType={{dateType}}&dateStart={{dateStart}}&dateEnd={{dateEnd}}&showDeleted={{showDeleted}}&pageIndex={{pageIndex}}&pageSize={{pageSize}}","protocol":"https","host":["{{base_url}}"],"path":["api","companyReport"],"query":[{"key":"id","value":"{{companyId}}","description":"Used to filter by a specific company record ID in Darwin. By default it is “0”.\n\nIf left with “0”, this filter is not applied."},{"key":"name","value":"{{name}}","description":"Used to filter by a specific company record name in Darwin. By default it is \"empty”.\n\nIf left blank, this filter is not applied."},{"key":"dateType","value":"{{dateType}}","description":"Represents the type of date to use for filtering in a given date range.\n\nIt is used together with dateStart and dateEnd parameters\n\nPossible values:\n\n* 0 means no date type will be used\n* 1 means createDate will be used to filter by date range\n* 2 means modifyDate will be used to filter by date range\n* 3 means deleteDate will be used to filter by date range\n"},{"key":"dateStart","value":"{{dateStart}}","description":"The start date from which companies will be retrieved"},{"key":"dateEnd","value":"{{dateEnd}}","description":"The end date until which companies will be retrieved"},{"key":"showDeleted","value":"{{showDeleted}}","description":"Retrieves deleted companies records from Darwin. Possible values are 1 or 0.\n\n1 means the deleted companies will be retrieved\n0 means the deleted companies will not be retrieved"},{"key":"pageIndex","value":"{{pageIndex}}","description":"Represents the page number that will be retrieved. Starts in zero.\n\nIf nothing is passed, it will assume page zero.\n\nIf -1 is passed, it will retrieve all records at once"},{"key":"pageSize","value":"{{pageSize}}","description":"Determines the number of companies entries that will be retrieved on every request. Could be any value from 1 to 100\n\nDefault value is 100, returns maximum of 100 records"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 10 Sep 2021 13:38:45 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"companyId\": 1,\n        \"brandCode\": \"SIR\",\n        \"name\": \"Company 1\",\n        \"legalName\": \"Company 1\",\n        \"taxId\": \"1112223333\",\n        \"mailboxId\": \"8003070001\",\n        \"city\": \"Miami\",\n        \"state\": \"FL\",\n        \"stateTax\": \"\",\n        \"zip\": \"34103\",\n        \"address\": \"400 Main Street\",\n        \"companyGUID\": \"F41E4512-CFEE-462B-ABE4-D068B56B422C\",\n        \"otherID\": null,\n        \"internalName\": \"PREMIER\",\n        \"providerIdentifier\": null,\n        \"atGUID\": \"0A485AFB-B7D8-4F44-B289-54579DFDC9DE\",\n        \"createDate\": \"2018-08-03 09:34\",\n        \"createdBy\": \"ATBIAPP\\\\dwinner\",\n        \"modifyDate\": \"2021-08-15 04:12\",\n        \"modifyBy\": \"saDeploy\",\n        \"deleteDate\": null,\n        \"deletedBy\": null\n    },\n    {\n        \"companyId\": 2,\n        \"brandCode\": \"SIR\",\n        \"name\": \"Company 9\",\n        \"legalName\": \"Company 9\",\n        \"taxId\": \"\",\n        \"mailboxId\": \"8002560002\",\n        \"city\": \"\",\n        \"state\": \"\",\n        \"stateTax\": \"\",\n        \"zip\": \"\",\n        \"address\": \"\",\n        \"companyGUID\": \"38A3AFB2-2B54-4078-9518-25340118A745\",\n        \"otherID\": null,\n        \"internalName\": \"Signature\",\n        \"providerIdentifier\": null,\n        \"atGUID\": \"2E0EFB09-9256-4C4A-87F2-3D3A8C923D96\",\n        \"createDate\": \"2019-03-12 02:27\",\n        \"createdBy\": \"sa\",\n        \"modifyDate\": \"2021-07-31 09:24\",\n        \"modifyBy\": \"saDeploy\",\n        \"deleteDate\": null,\n        \"deletedBy\": null\n    },\n    {\n        \"companyId\": 3,\n        \"brandCode\": \"SIR\",\n        \"name\": \"Company 3\",\n        \"legalName\": \"Company 3\",\n        \"taxId\": \"\",\n        \"mailboxId\": \"8003070001\",\n        \"city\": \"new york\",\n        \"state\": \"ny \",\n        \"stateTax\": \"\",\n        \"zip\": \"11416\",\n        \"address\": \"123 main street \",\n        \"companyGUID\": \"CD0592E0-6989-4348-B4EB-C4F835335AD3\",\n        \"otherID\": null,\n        \"internalName\": \"Estuary\",\n        \"providerIdentifier\": null,\n        \"atGUID\": \"7DD763C0-0E79-4C9D-BF2D-2487A41508B8\",\n        \"createDate\": \"2019-04-02 06:07\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2021-08-15 04:12\",\n        \"modifyBy\": \"saDeploy\",\n        \"deleteDate\": null,\n        \"deletedBy\": null\n    },\n    {\n        \"companyId\": 4,\n        \"brandCode\": \"SIR\",\n        \"name\": \"Company 2\",\n        \"legalName\": \"Company 4\",\n        \"taxId\": \"\",\n        \"mailboxId\": \"8003070001\",\n        \"city\": \"\",\n        \"state\": \"\",\n        \"stateTax\": \"\",\n        \"zip\": \"\",\n        \"address\": \"\",\n        \"companyGUID\": \"AD56E300-6E8B-40BF-B0F8-E47D7EE9C9CE\",\n        \"otherID\": null,\n        \"internalName\": \"Linville\",\n        \"providerIdentifier\": null,\n        \"atGUID\": \"248B4A54-3077-4105-BF33-24EAC065F150\",\n        \"createDate\": \"2019-04-02 06:19\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2021-08-15 04:12\",\n        \"modifyBy\": \"saDeploy\",\n        \"deleteDate\": null,\n        \"deletedBy\": null\n    },\n    {\n        \"companyId\": 5,\n        \"brandCode\": \"SIR\",\n        \"name\": \"Company 6\",\n        \"legalName\": \"Company 6\",\n        \"taxId\": \"\",\n        \"mailboxId\": \"8003070001\",\n        \"city\": \"\",\n        \"state\": \"\",\n        \"stateTax\": \"\",\n        \"zip\": \"\",\n        \"address\": \"\",\n        \"companyGUID\": \"3553225E-356A-435B-A94B-3D42A49E8513\",\n        \"otherID\": null,\n        \"internalName\": \"PremierNC\",\n        \"providerIdentifier\": null,\n        \"atGUID\": \"83298C23-EF9C-4036-9152-6B040E1809F1\",\n        \"createDate\": \"2019-04-02 06:32\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2021-07-31 09:23\",\n        \"modifyBy\": \"saDeploy\",\n        \"deleteDate\": null,\n        \"deletedBy\": null\n    }\n]"}],"_postman_id":"0c443946-3b8e-45a4-abac-78c9f8203709"},{"name":"Get Companies","id":"b973f85e-929c-44bc-9b61-eb47a087cdb0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://{{base_url}}/api/company","urlObject":{"protocol":"https","path":["api","company"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b973f85e-929c-44bc-9b61-eb47a087cdb0"}],"id":"76e596d9-a3fb-4a1f-86c9-eed1954dc4fd","description":"<p>The <code>Company</code> object allows you to get information about all the legal entities that are part of any given client.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"de365b9c-a0bd-4d9a-a774-2e5755b0e7df","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"3410bb4b-3705-4999-8746-945da06b3bed","type":"text/javascript","exec":[""]}}],"_postman_id":"76e596d9-a3fb-4a1f-86c9-eed1954dc4fd"},{"name":"Office","item":[{"name":"Office Goals Report","id":"5e731362-fbc5-4836-9679-2adb13912d6e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://{{base_url}}/api/officegoalreport","description":"<p>This Resource will allow you to pull the list of offices goals of any given company.</p>\n","urlObject":{"protocol":"https","path":["api","officegoalreport"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"625b40c6-79aa-4fd8-a264-3d4b6e9e654f","name":"Office Goals Report","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Basic {{token}}","description":"This is a value generated with 2 components:\n\n“Basic {userName:token}”\n\nThe Token will be issued to the user after a successful authentication (used can get it from the LOGIN endpoint response when this succeeds) \n\nThis 2-value string needs to be encoded to base64\n"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://{{base_url}}/api/officegoalreport"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 06 Sep 2021 16:48:49 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"officeID\": 2,\n        \"date\": \"2019-01-01T00:00:00\",\n        \"goalAGCI\": 80,\n        \"goalCompanyDollar\": 0,\n        \"goalVolume\": 0,\n        \"goalNumSides\": 0,\n        \"goalCMOE\": 0,\n        \"goalWrittenContracts\": 0,\n        \"goalListingsTaken\": 0,\n        \"goalAgentCount\": 0,\n        \"goalEmployeeCount\": 0\n    },\n    {\n        \"officeID\": 2,\n        \"date\": \"2019-02-01T00:00:00\",\n        \"goalAGCI\": 80,\n        \"goalCompanyDollar\": 0,\n        \"goalVolume\": 0,\n        \"goalNumSides\": 0,\n        \"goalCMOE\": 0,\n        \"goalWrittenContracts\": 0,\n        \"goalListingsTaken\": 0,\n        \"goalAgentCount\": 0,\n        \"goalEmployeeCount\": 0\n    },\n    {\n        \"officeID\": 2,\n        \"date\": \"2019-03-01T00:00:00\",\n        \"goalAGCI\": 80,\n        \"goalCompanyDollar\": 0,\n        \"goalVolume\": 0,\n        \"goalNumSides\": 0,\n        \"goalCMOE\": 0,\n        \"goalWrittenContracts\": 0,\n        \"goalListingsTaken\": 0,\n        \"goalAgentCount\": 0,\n        \"goalEmployeeCount\": 0\n    },\n    {\n        \"officeID\": 2,\n        \"date\": \"2019-04-01T00:00:00\",\n        \"goalAGCI\": 80,\n        \"goalCompanyDollar\": 0,\n        \"goalVolume\": 0,\n        \"goalNumSides\": 0,\n        \"goalCMOE\": 0,\n        \"goalWrittenContracts\": 0,\n        \"goalListingsTaken\": 0,\n        \"goalAgentCount\": 0,\n        \"goalEmployeeCount\": 0\n    },\n    {\n        \"officeID\": 2,\n        \"date\": \"2019-05-01T00:00:00\",\n        \"goalAGCI\": 80,\n        \"goalCompanyDollar\": 0,\n        \"goalVolume\": 0,\n        \"goalNumSides\": 0,\n        \"goalCMOE\": 0,\n        \"goalWrittenContracts\": 0,\n        \"goalListingsTaken\": 0,\n        \"goalAgentCount\": 0,\n        \"goalEmployeeCount\": 0\n    },\n    {\n        \"officeID\": 2,\n        \"date\": \"2019-06-01T00:00:00\",\n        \"goalAGCI\": 80,\n        \"goalCompanyDollar\": 0,\n        \"goalVolume\": 0,\n        \"goalNumSides\": 0,\n        \"goalCMOE\": 0,\n        \"goalWrittenContracts\": 0,\n        \"goalListingsTaken\": 0,\n        \"goalAgentCount\": 0,\n        \"goalEmployeeCount\": 0\n    },\n    {\n        \"officeID\": 2,\n        \"date\": \"2019-07-01T00:00:00\",\n        \"goalAGCI\": 80,\n        \"goalCompanyDollar\": 0,\n        \"goalVolume\": 0,\n        \"goalNumSides\": 0,\n        \"goalCMOE\": 0,\n        \"goalWrittenContracts\": 0,\n        \"goalListingsTaken\": 0,\n        \"goalAgentCount\": 0,\n        \"goalEmployeeCount\": 0\n    },\n    {\n        \"officeID\": 2,\n        \"date\": \"2019-08-01T00:00:00\",\n        \"goalAGCI\": 80,\n        \"goalCompanyDollar\": 0,\n        \"goalVolume\": 0,\n        \"goalNumSides\": 0,\n        \"goalCMOE\": 0,\n        \"goalWrittenContracts\": 0,\n        \"goalListingsTaken\": 0,\n        \"goalAgentCount\": 0,\n        \"goalEmployeeCount\": 0\n    },\n    {\n        \"officeID\": 2,\n        \"date\": \"2019-09-01T00:00:00\",\n        \"goalAGCI\": 80,\n        \"goalCompanyDollar\": 0,\n        \"goalVolume\": 0,\n        \"goalNumSides\": 0,\n        \"goalCMOE\": 0,\n        \"goalWrittenContracts\": 0,\n        \"goalListingsTaken\": 0,\n        \"goalAgentCount\": 0,\n        \"goalEmployeeCount\": 0\n    },\n    {\n        \"officeID\": 2,\n        \"date\": \"2019-10-01T00:00:00\",\n        \"goalAGCI\": 80,\n        \"goalCompanyDollar\": 0,\n        \"goalVolume\": 0,\n        \"goalNumSides\": 0,\n        \"goalCMOE\": 0,\n        \"goalWrittenContracts\": 0,\n        \"goalListingsTaken\": 0,\n        \"goalAgentCount\": 0,\n        \"goalEmployeeCount\": 0\n    },\n    {\n        \"officeID\": 2,\n        \"date\": \"2019-11-01T00:00:00\",\n        \"goalAGCI\": 80,\n        \"goalCompanyDollar\": 0,\n        \"goalVolume\": 0,\n        \"goalNumSides\": 0,\n        \"goalCMOE\": 0,\n        \"goalWrittenContracts\": 0,\n        \"goalListingsTaken\": 0,\n        \"goalAgentCount\": 0,\n        \"goalEmployeeCount\": 0\n    },\n    {\n        \"officeID\": 2,\n        \"date\": \"2019-12-01T00:00:00\",\n        \"goalAGCI\": 80,\n        \"goalCompanyDollar\": 0,\n        \"goalVolume\": 0,\n        \"goalNumSides\": 0,\n        \"goalCMOE\": 0,\n        \"goalWrittenContracts\": 0,\n        \"goalListingsTaken\": 0,\n        \"goalAgentCount\": 0,\n        \"goalEmployeeCount\": 0\n    }\n]"}],"_postman_id":"5e731362-fbc5-4836-9679-2adb13912d6e"},{"name":"Office Report","id":"677ba48b-a503-41df-83ae-563fbef77185","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://{{base_url}}/api/officeReport?id={{officeId}}&crestCode={{crestCode}}&companyID={{companyId}}&dateType={{dateType}}&dateStart={{dateStart}}&dateEnd={{dateEnd}}&showDeleted={{showDeleted}}&pageIndex={{pageIndex}}&pageSize={{pageSize}}","description":"<p>This Resource will allow you to pull the detailed list of offices of any given company filtered by different parameters such as: id, companyId, date, etc.</p>\n","urlObject":{"protocol":"https","path":["api","officeReport"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Used to filter by a specific office record ID in Darwin. </p>\n<p>By default it is “0”.</p>\n<p>If left with “0”, this filter is not applied.</p>\n","type":"text/plain"},"key":"id","value":"{{officeId}}"},{"description":{"content":"<p>Used to filter by a specific office crest code value in Darwin. </p>\n<p>By default it is \"empty”.</p>\n<p>If left blank, this filter is not applied.</p>\n","type":"text/plain"},"key":"crestCode","value":"{{crestCode}}"},{"description":{"content":"<p>Used to filter offices that belong to a specific companyID. It must match a companyId in Darwin.</p>\n<p>If left with zero (0), then this filter is not used.</p>\n","type":"text/plain"},"key":"companyID","value":"{{companyId}}"},{"description":{"content":"<p>Represents the type of date to use for filtering in a given date range.</p>\n<p>It is used together with dateStart and dateEnd parameters</p>\n<p>Possible values:</p>\n<ul>\n<li>0 means no date type will be used</li>\n<li>1 means createDate will be used to filter by date range</li>\n<li>2 means modifyDate will be used to filter by date range</li>\n<li>3 means deleteDate will be used to filter by date range</li>\n<li>4 means terminatedDate will be used to filter by date range</li>\n</ul>\n","type":"text/plain"},"key":"dateType","value":"{{dateType}}"},{"description":{"content":"<p>The start date from which offices will be retrieved.</p>\n","type":"text/plain"},"key":"dateStart","value":"{{dateStart}}"},{"description":{"content":"<p>The end date until which offices will be retrieved.</p>\n","type":"text/plain"},"key":"dateEnd","value":"{{dateEnd}}"},{"description":{"content":"<p>Retrieves deleted office records from Darwin. Possible values are 1 or 0.</p>\n","type":"text/plain"},"key":"showDeleted","value":"{{showDeleted}}"},{"description":{"content":"<p>Represents the page number that will be retrieved. Starts in zero.</p>\n<p>If nothing is passed, it will assume page zero.</p>\n<p>If -1 is passed, it will retrieve all records at once.</p>\n","type":"text/plain"},"key":"pageIndex","value":"{{pageIndex}}"},{"description":{"content":"<p>Determines the number of office entries that will be retrieved on every request. Could be any value from 1 to 100.</p>\n<p>Default value is 100, returns maximum of 100 records.</p>\n","type":"text/plain"},"key":"pageSize","value":"{{pageSize}}"}],"variable":[]}},"response":[{"id":"268ea67e-31aa-4853-a2bf-80e2f1f07f8e","name":"Office Report","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Basic {{token}}","description":"This is a value generated with 2 components:\n\n“Basic `{userName:token}`”\n\nThe Token will be issued to the user after a successful authentication (used can get it from the LOGIN endpoint response when this succeeds) \n\nThis 2-value string needs to be encoded to base64\n"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{base_url}}/api/officeReport?id={{officeId}}&crestCode={{crestCode}}&companyID={{companyId}}&dateType={{dateType}}&dateStart={{dateStart}}&dateEnd={{dateEnd}}&showDeleted={{showDeleted}}&pageIndex={{pageIndex}}&pageSize={{pageSize}}","protocol":"https","host":["{{base_url}}"],"path":["api","officeReport"],"query":[{"key":"id","value":"{{officeId}}","description":"Used to filter by a specific office record ID in Darwin. By default it is “0”.\n\nIf left with “0”, this filter is not applied."},{"key":"crestCode","value":"{{crestCode}}","description":"Used to filter by a specific office crest code value in Darwin. By default it is \"empty”.\n\nIf left blank, this filter is not applied."},{"key":"companyID","value":"{{companyId}}","description":"Used to filter offices that belong to a specific companyID. It must match a companyId in Darwin.\n\nIf left with zero (0), then this filter is not used"},{"key":"dateType","value":"{{dateType}}","description":"Represents the type of date to use for filtering in a given date range.\n\nIt is used together with dateStart and dateEnd parameters\n\nPossible values:\n\n* 0 means no date type will be used\n* 1 means createDate will be used to filter by date range\n* 2 means modifyDate will be used to filter by date range\n* 3 means deleteDate will be used to filter by date range\n* 4 means terminatedDate will be used to filter by date range\n"},{"key":"dateStart","value":"{{dateStart}}","description":"The start date from which offices will be retrieved"},{"key":"dateEnd","value":"{{dateEnd}}","description":"The end date until which offices will be retrieved"},{"key":"showDeleted","value":"{{showDeleted}}","description":"Retrieves deleted office records from Darwin. Possible values are 1 or 0."},{"key":"pageIndex","value":"{{pageIndex}}","description":"Represents the page number that will be retrieved. Starts in zero.\n\nIf nothing is passed, it will assume page zero.\n\nIf -1 is passed, it will retrieve all records at once"},{"key":"pageSize","value":"{{pageSize}}","description":"Determines the number of offices entries that will be retrieved on every request. Could be any value from 1 to 100\n\nDefault value is 100, returns maximum of 100 records"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 10 Sep 2021 13:41:23 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"officeId\": 1,\n        \"officeName\": \"5th Ave\",\n        \"crestCode\": \"0002\",\n        \"officeGUID\": \"4f6fc5a8-958d-41a7-8a7f-dabd5e9b95dd\",\n        \"officeJobCode\": \"f\",\n        \"internalName\": null,\n        \"atGUID\": null,\n        \"jobId\": 9,\n        \"miscJobID\": 2161,\n        \"emailAddress\": \"\",\n        \"webSiteURL\": \"\",\n        \"phoneNumber\": \"\",\n        \"faxNumber\": \"\",\n        \"streetAddress\": \"\",\n        \"city\": \"\",\n        \"state\": \"\",\n        \"zip\": \"\",\n        \"mlsId\": \"\",\n        \"isCorporate\": false,\n        \"canDoCommercialBusiness\": true,\n        \"companyId\": 1,\n        \"companyName\": \"Company 1\",\n        \"createDate\": \"2018-08-03 09:36\",\n        \"createdBy\": \"ATBIAPP\\\\dwinner\",\n        \"modifyDate\": \"2019-05-28 06:56\",\n        \"modifyBy\": \"ATBIAPP\\\\mercedes\",\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"openDate\": \"F6E33272-9078-428F-AF60-B6B508842E03\",\n        \"terminatedDate\": null\n    },\n    {\n        \"officeId\": 2,\n        \"officeName\": \"Boston\",\n        \"crestCode\": \"0006\",\n        \"officeGUID\": \"5796e906-f5ce-454b-bc25-94b910c9d219\",\n        \"officeJobCode\": \"p\",\n        \"internalName\": null,\n        \"atGUID\": null,\n        \"jobId\": 16,\n        \"miscJobID\": 2162,\n        \"emailAddress\": \"\",\n        \"webSiteURL\": \"\",\n        \"phoneNumber\": \"(___) ___-____\",\n        \"faxNumber\": \"(___) ___-____\",\n        \"streetAddress\": \"\",\n        \"city\": \"\",\n        \"state\": \"\",\n        \"zip\": \"\",\n        \"mlsId\": \"\",\n        \"isCorporate\": false,\n        \"canDoCommercialBusiness\": true,\n        \"companyId\": 1,\n        \"companyName\": \"Company 1\",\n        \"createDate\": \"2018-08-03 09:36\",\n        \"createdBy\": \"ATBIAPP\\\\dwinner\",\n        \"modifyDate\": \"2021-07-31 09:25\",\n        \"modifyBy\": \"saDeploy\",\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"openDate\": \"CDDF62A8-959C-452D-90E3-21B0E10E6637\",\n        \"terminatedDate\": null\n    },\n    {\n        \"officeId\": 3,\n        \"officeName\": \"Broad Avenue\",\n        \"crestCode\": \"0001\",\n        \"officeGUID\": \"d1d80f5d-4cb3-4869-9b73-282fa846f801\",\n        \"officeJobCode\": \"b\",\n        \"internalName\": null,\n        \"atGUID\": null,\n        \"jobId\": 5,\n        \"miscJobID\": 2163,\n        \"emailAddress\": \"\",\n        \"webSiteURL\": \"\",\n        \"phoneNumber\": \"(___) ___-____\",\n        \"faxNumber\": \"(___) ___-____\",\n        \"streetAddress\": \"\",\n        \"city\": \"\",\n        \"state\": \"\",\n        \"zip\": \"\",\n        \"mlsId\": \"\",\n        \"isCorporate\": false,\n        \"canDoCommercialBusiness\": true,\n        \"companyId\": 1,\n        \"companyName\": \"Company 1\",\n        \"createDate\": \"2018-08-03 09:36\",\n        \"createdBy\": \"ATBIAPP\\\\dwinner\",\n        \"modifyDate\": \"2019-05-28 06:56\",\n        \"modifyBy\": \"ATBIAPP\\\\mercedes\",\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"openDate\": \"06F9BEEB-2AAA-4466-B3F5-0ABCD53638CC\",\n        \"terminatedDate\": null\n    },\n    {\n        \"officeId\": 4,\n        \"officeName\": \"Cambridge\",\n        \"crestCode\": \"0015\",\n        \"officeGUID\": \"3cd2a9fa-9827-477b-a4f1-a2193c14d515\",\n        \"officeJobCode\": \"t\",\n        \"internalName\": null,\n        \"atGUID\": null,\n        \"jobId\": 19,\n        \"miscJobID\": 2164,\n        \"emailAddress\": \"\",\n        \"webSiteURL\": \"\",\n        \"phoneNumber\": \"(___) ___-____\",\n        \"faxNumber\": \"(___) ___-____\",\n        \"streetAddress\": \"\",\n        \"city\": \"\",\n        \"state\": \"\",\n        \"zip\": \"\",\n        \"mlsId\": \"\",\n        \"isCorporate\": false,\n        \"canDoCommercialBusiness\": true,\n        \"companyId\": 1,\n        \"companyName\": \"Company 1\",\n        \"createDate\": \"2018-08-03 09:36\",\n        \"createdBy\": \"ATBIAPP\\\\dwinner\",\n        \"modifyDate\": \"2021-07-31 09:25\",\n        \"modifyBy\": \"saDeploy\",\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"openDate\": \"FB2268A9-483C-4C87-AED1-F157D3A0AD48\",\n        \"terminatedDate\": null\n    },\n    {\n        \"officeId\": 5,\n        \"officeName\": \"Concord\",\n        \"crestCode\": \"0013\",\n        \"officeGUID\": \"2c5ef868-b4a1-4c40-9839-833f3f237c99\",\n        \"officeJobCode\": \"a\",\n        \"internalName\": null,\n        \"atGUID\": null,\n        \"jobId\": 4,\n        \"miscJobID\": 2165,\n        \"emailAddress\": \"\",\n        \"webSiteURL\": \"\",\n        \"phoneNumber\": \"(___) ___-____\",\n        \"faxNumber\": \"(___) ___-____\",\n        \"streetAddress\": \"\",\n        \"city\": \"\",\n        \"state\": \"\",\n        \"zip\": \"\",\n        \"mlsId\": \"\",\n        \"isCorporate\": false,\n        \"canDoCommercialBusiness\": true,\n        \"companyId\": 1,\n        \"companyName\": \"Company 1\",\n        \"createDate\": \"2018-08-03 09:36\",\n        \"createdBy\": \"ATBIAPP\\\\dwinner\",\n        \"modifyDate\": \"2021-07-31 09:25\",\n        \"modifyBy\": \"saDeploy\",\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"openDate\": \"88BF3E04-55C9-44E4-8543-F7C1493E726D\",\n        \"terminatedDate\": null\n    }\n]"}],"_postman_id":"677ba48b-a503-41df-83ae-563fbef77185"}],"id":"88b603c3-84d4-4774-a623-89627dd794c9","description":"<p>The <code>Office</code> object allows you to get information about all the offices that are associated with a company.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"78626551-015c-4303-a132-b57302aed206","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"17a20aa5-e14a-42da-9f9c-c8c2aa70c51b","type":"text/javascript","exec":[""]}}],"_postman_id":"88b603c3-84d4-4774-a623-89627dd794c9"},{"name":"CodeValues","item":[{"name":"Code Values Report","event":[{"listen":"prerequest","script":{"id":"b6803a10-3075-4229-9f49-8e25c2eb02b7","exec":["pm.environment.set(\"name\",\"\");\r",""],"type":"text/javascript"}}],"id":"6a8f2292-5f1d-42b5-bb3e-91d28cfca6b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://{{base_url}}/api/codeValueReport?id={{codeValueId}}&name={{name}}&category={{category}}&showDeleted={{showDeleted}}&pageIndex={{pageIndex}}&pageSize={{pageSize}}","description":"<p>This Resource will allow you to pull the list of codes filtered by different parameters such as id, name, category, etc.</p>\n","urlObject":{"protocol":"https","path":["api","codeValueReport"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Used to filter by a specific codeValue record ID in Darwin. \nBy default it is “0”.</p>\n<p>If left with “0”, this filter is not applied.</p>\n","type":"text/plain"},"key":"id","value":"{{codeValueId}}"},{"description":{"content":"<p>Used to filter by a specific codeValue record name in Darwin. \nBy default it is \"empty”.</p>\n<p>If left blank, this filter is not applied.</p>\n","type":"text/plain"},"key":"name","value":"{{name}}"},{"description":{"content":"<p>Used to filter by a specific codeValue category in Darwin. \nBy default it is “”.</p>\n<p>If left blank, this filter is not applied.</p>\n<p>If used together with name, it will retrieve the record that matches the name within the given category.</p>\n<p>The list of possible categories is this:</p>\n<ul>\n<li><strong>1099_type:</strong> Use this to get the list of 1099 income types</li>\n<li><strong>flag1099_code:</strong> Use this to get the list of 1099 reporting type</li>\n<li><strong>area_units:</strong> Use this to get the list of area units for properties</li>\n<li><strong>arpayment_paymentmethod:</strong> Use this to get the list of receivable payment methods</li>\n<li><strong>division:</strong> Use this to get the list of divisions</li>\n<li><strong>expense_type:</strong> Use this to get the list of expense types</li>\n<li><strong>formula_prorate_levels:</strong> Use this to get the list of commission formula prorration levels</li>\n<li><strong>formula_withindates:</strong> Use this to get the list of commission formulas data ranges</li>\n<li><strong>invoice_ordertype:</strong> Use this to get the list of invoice order types</li>\n<li><strong>media_category:</strong> Use this to get the list of media categories</li>\n<li><strong>media_format:</strong> Use this to get the list of media formats</li>\n<li><strong>micr_format:</strong> Use this to get the list of MICR formats</li>\n<li><strong>news_type:</strong> Use this to get the list of news types</li>\n<li><strong>officeform_category:</strong> Use this to get the list of office form categories</li>\n<li><strong>override_type:</strong> Use this to get the list of override types</li>\n<li><strong>payment_provider:</strong> Use this to get the list of online payment providers</li>\n<li><strong>person_addresstype:</strong> Use this to get the list of people address types</li>\n<li><strong>person_affiliationtype:</strong> Use this to get the list of person affiliation types</li>\n<li><strong>person_areaofspecializationtype:</strong> Use this to get the list of person area of specializations</li>\n<li><strong>person_designationtype:</strong> Use this to get the list of person designation types</li>\n<li><strong>person_educationlevel:</strong> Use this to get the list of education levels</li>\n<li><strong>person_entitytype:</strong> Use this to get the list of person entity types</li>\n<li><strong>person_insurancetype:</strong> Use this to get the list of insurance types</li>\n<li><strong>person_language:</strong> Use this to get the list of languages</li>\n<li><strong>person_leadgeneratedby:</strong> Use this to get the list of lead generated by</li>\n<li><strong>person_leadsource:</strong> Use this to get the list of lead sources</li>\n<li><strong>person_leadtype:</strong> Use this to get the list of lead types</li>\n<li><strong>person_licensetype:</strong> Use this to get the list of license types</li>\n<li><strong>person_occupation:</strong> Use this to get the list of occupations</li>\n<li><strong>person_phonetype:</strong> Use this to get the list of phone types</li>\n<li><strong>person_referralBrand:</strong> Use this to get the list of referral Brands</li>\n<li><strong>person_referralNetwork:</strong> Use this to get the list of referral Networks</li>\n<li><strong>person_referralType:</strong> Use this to get the list of referral Types</li>\n<li><strong>person_salutation:</strong> Use this to get the list of salutations</li>\n<li><strong>person_specialty:</strong> Use this to get the list of people specialties</li>\n<li><strong>person_titles:</strong> Use this to get the list of people titles</li>\n<li><strong>person_type:</strong> Use this to get the list of person types</li>\n<li><strong>person_webcategory:</strong> Use this to get the list of person webcategories</li>\n<li><strong>property_accounting_classification:</strong> Use this to get the list of property accounting classifications</li>\n<li><strong>property_cancelreason:</strong> Use this to get the list of cancel reasons</li>\n<li><strong>property_datetypes:</strong> Use this to get the list of date types</li>\n<li><strong>property_development:</strong> Use this to get the list of property developments</li>\n<li><strong>property_featuregroup:</strong> Use this to get the list of feature groups</li>\n<li><strong>property_featuretype:</strong> Use this to get the list of feature types</li>\n<li><strong>property_financingtype:</strong> Use this to get the list of financing types</li>\n<li><strong>property_otherIncomeType:</strong> Use this to get the list of other Income Types</li>\n<li><strong>property_propertytype:</strong> Use this to get the list of property types</li>\n<li><strong>property_propertyuse:</strong> Use this to get the list of property uses</li>\n<li><strong>property_referraltype:</strong> Use this to get the list of referral types</li>\n<li><strong>property_remarktype:</strong> Use this to get the list of remark types</li>\n<li><strong>property_status:</strong> Use this to get the list of statuses</li>\n<li><strong>property_streetdesignation:</strong> Use this to get the list of street designations</li>\n<li><strong>property_style:</strong> Use this to get the list of styles</li>\n<li><strong>property_trtypes:</strong> Use this to get the list of property TR types</li>\n<li><strong>property_typecode:</strong> Use this to get the list of type codes</li>\n<li><strong>staff_preference:</strong> Use this to get the list of staff preferences</li>\n<li><strong>submission_destination:</strong> Use this to get the list of submission destinations</li>\n<li><strong>survey_type:</strong> Use this to get the list of survey types</li>\n<li><strong>term:</strong> Use this to get the list of payment terms</li>\n<li><strong>voucher_ordertype:</strong> Use this to get the list of voucher order types</li>\n<li><strong>voucher_paymentmethod:</strong> Use this to get the list of payables payment methods</li>\n</ul>\n","type":"text/plain"},"key":"category","value":"{{category}}"},{"description":{"content":"<p>Retrieves deleted code value records from Darwin. Possible values are 1 or 0.</p>\n<ul>\n<li>1 means the deleted code values will be retrieved</li>\n<li>0 means the deleted code values will not be retrieved.</li>\n</ul>\n","type":"text/plain"},"key":"showDeleted","value":"{{showDeleted}}"},{"description":{"content":"<p>Represents the page number that will be retrieved. Starts in zero.</p>\n<p>If nothing is passed, it will assume page zero.</p>\n<p>If -1 is passed, it will retrieve all records at once.</p>\n","type":"text/plain"},"key":"pageIndex","value":"{{pageIndex}}"},{"description":{"content":"<p>Determines the number of code value entries that will be retrieved on every request. Could be any value from 1 to 100.</p>\n<p>Default value is 100, returns maximum of 100 records.</p>\n","type":"text/plain"},"key":"pageSize","value":"{{pageSize}}"}],"variable":[]}},"response":[{"id":"c9e8326c-712b-43d5-af5c-a412c0248452","name":"Code Values Report","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Basic {{token}}","description":"This is a value generated with 2 components:\n\n“Basic `{userName:token}`”\n\nThe Token will be issued to the user after a successful authentication (used can get it from the LOGIN endpoint response when this succeeds) \n\nThis 2-value string needs to be encoded to base64\n"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{base_url}}/api/codeValueReport?id={{codeValueId}}&name={{name}}&category={{category}}&showDeleted={{showDeleted}}&pageIndex={{pageIndex}}&pageSize={{pageSize}}","protocol":"https","host":["{{base_url}}"],"path":["api","codeValueReport"],"query":[{"key":"id","value":"{{codeValueId}}","description":"Used to filter by a specific codeValue record ID in Darwin. By default it is “0”.\n\nIf left with “0”, this filter is not applied.\n"},{"key":"name","value":"{{name}}","description":"Used to filter by a specific codeValue record name in Darwin. By default it is \"empty”.\n\nIf left blank, this filter is not applied.\n"},{"key":"category","value":"{{category}}","description":"Used to filter by a specific codeValue category in Darwin. By default it is “”.\n\nIf left blank, this filter is not applied.\nIf used together with name, it will retrieve the record that matches the name within the given category"},{"key":"showDeleted","value":"{{showDeleted}}","description":"Retrieves deleted code value records from Darwin. Possible values are 1 or 0.\n\n1 means the deleted code values will be retrieved\n0 means the deleted code values will not be retrieved "},{"key":"pageIndex","value":"{{pageIndex}}","description":"Represents the page number that will be retrieved. Starts in zero.\n\nIf nothing is passed, it will assume page zero.\n\nIf -1 is passed, it will retrieve all records at once"},{"key":"pageSize","value":"{{pageSize}}","description":"Determines the number of code value entries that will be retrieved on every request. Could be any value from 1 to 100\n\nDefault value is 100, returns maximum of 100 records"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 10 Sep 2021 13:46:33 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 56,\n        \"name\": \"Agent Generated\",\n        \"code\": \"AG\",\n        \"group\": null,\n        \"category\": \"person_leadgeneratedby\",\n        \"custom1\": null,\n        \"custom2\": null,\n        \"custom3\": null,\n        \"brandCode\": null,\n        \"createDate\": \"2018-04-18 04:06\",\n        \"createdBy\": \"sa\",\n        \"modifyDate\": \"2018-10-11 07:05\",\n        \"modifyBy\": \"dwinner\",\n        \"deleteDate\": null,\n        \"deletedBy\": null\n    },\n    {\n        \"id\": 57,\n        \"name\": \"Office Generated\",\n        \"code\": \"OG\",\n        \"group\": null,\n        \"category\": \"person_leadgeneratedby\",\n        \"custom1\": null,\n        \"custom2\": null,\n        \"custom3\": null,\n        \"brandCode\": null,\n        \"createDate\": \"2018-04-18 04:06\",\n        \"createdBy\": \"sa\",\n        \"modifyDate\": \"2018-10-11 07:05\",\n        \"modifyBy\": \"dwinner\",\n        \"deleteDate\": null,\n        \"deletedBy\": null\n    },\n    {\n        \"id\": 58,\n        \"name\": \"x DO NOT USE\",\n        \"code\": \"CL\",\n        \"group\": null,\n        \"category\": \"property_accounting_classification\",\n        \"custom1\": \"Misc income\",\n        \"custom2\": \"0\",\n        \"custom3\": \"0\",\n        \"brandCode\": null,\n        \"createDate\": \"2018-04-18 04:06\",\n        \"createdBy\": \"sa\",\n        \"modifyDate\": \"2019-03-26 06:08\",\n        \"modifyBy\": \"saPremier\",\n        \"deleteDate\": \"2019-03-26 06:08\",\n        \"deletedBy\": \"saPremier\"\n    },\n    {\n        \"id\": 59,\n        \"name\": \"x DO NOT USE \",\n        \"code\": \"CM\",\n        \"group\": null,\n        \"category\": \"property_accounting_classification\",\n        \"custom1\": \"Misc income\",\n        \"custom2\": \"0\",\n        \"custom3\": \"0\",\n        \"brandCode\": null,\n        \"createDate\": \"2018-04-18 04:06\",\n        \"createdBy\": \"sa\",\n        \"modifyDate\": \"2019-03-26 06:08\",\n        \"modifyBy\": \"saPremier\",\n        \"deleteDate\": \"2019-03-26 06:08\",\n        \"deletedBy\": \"saPremier\"\n    },\n    {\n        \"id\": 60,\n        \"name\": \"x DO NOT USE\",\n        \"code\": \"CF\",\n        \"group\": null,\n        \"category\": \"property_accounting_classification\",\n        \"custom1\": \"Misc income\",\n        \"custom2\": \"0\",\n        \"custom3\": \"0\",\n        \"brandCode\": null,\n        \"createDate\": \"2018-04-18 04:06\",\n        \"createdBy\": \"sa\",\n        \"modifyDate\": \"2019-03-26 06:08\",\n        \"modifyBy\": \"saPremier\",\n        \"deleteDate\": \"2019-03-26 06:08\",\n        \"deletedBy\": \"saPremier\"\n    }\n]"}],"_postman_id":"6a8f2292-5f1d-42b5-bb3e-91d28cfca6b5"}],"id":"067d3561-6400-4920-9ea4-fa849f37974b","description":"<p>The <code>Code Value</code> object allows you to get the list of possible values for any type of information such as: </p>\n<ul>\n<li>allowed property statuses</li>\n<li>allowed property types</li>\n<li>allowed person types</li>\n<li>etc</li>\n</ul>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"4c8769ef-5cf7-4979-9714-af9b2d74a224","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"6437aa0d-4171-45c9-8caf-07688a07fd04","type":"text/javascript","exec":[""]}}],"_postman_id":"067d3561-6400-4920-9ea4-fa849f37974b"},{"name":"Person","item":[{"name":"Person Report","event":[{"listen":"prerequest","script":{"id":"8348eeac-511f-435d-939e-7b3091916029","exec":["// pm.environment.set(\"personId\",59147);\r","// pm.environment.set(\"personType\",\"Agent\");"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"f65699f8-155d-4851-a6e4-c7ab720a1db6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://{{base_url}}/api/personreport?personId={{personId}}&personType={{personType}}","description":"<p>This Resource will allow you to pull the list of people filtered by different parameters such as id, person type, active, date, etc; also it will allow you to get additional information for each person, such as addresses, phones, deductions, totals, web profiles, etc.</p>\n","urlObject":{"protocol":"https","path":["api","personreport"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Darwin ID of the person for which data will be retrieved.\nIf not passed, it will not apply this filter</p>\n","type":"text/plain"},"key":"personId","value":"{{personId}}"},{"description":{"content":"<p>A text value that determines what type of person records will be retrieved (Ex. Agent, Payee, ecc.)</p>\n","type":"text/plain"},"key":"personType","value":"{{personType}}"},{"disabled":true,"description":{"content":"<p>Determines if only active people will be returned.</p>\n<ul>\n<li>1 means only active </li>\n<li>0 means only no active</li>\n</ul>\n<p>if you do not send this parameter, API will return active and no active</p>\n","type":"text/plain"},"key":"active","value":"{{active}}"},{"disabled":true,"description":{"content":"<p>Determines what date field to use to apply a date range filter on.</p>\n<ul>\n<li>9 createDate</li>\n<li>10 modifyDate</li>\n</ul>\n","type":"text/plain"},"key":"dateType","value":"{{datetype}}"},{"disabled":true,"description":{"content":"<p>Start date of the date range filter using the date Type establish in the DateType parameter.</p>\n<p>Required when dateType is present</p>\n","type":"text/plain"},"key":"dateStart","value":"{{dateStart}}"},{"disabled":true,"description":{"content":"<p>End date of the date range filter using the date Type stablish in the DateType parameter.</p>\n<p>Required when dateType is present</p>\n","type":"text/plain"},"key":"dateEnd","value":"{{dateEnd}}"},{"disabled":true,"description":{"content":"<p>Represents the page number that will be retrieved. Starts in zero.</p>\n<p>If nothing is passed, it will assume page zero.</p>\n<p>If -1 is passed, it will retrieve all records at once</p>\n","type":"text/plain"},"key":"pageIndex","value":"{{pageIndex}}"},{"disabled":true,"description":{"content":"<p>Determines the number of properties that will be retrieved on every request. Could be any value from 1 to 100</p>\n<p>Default value is 100, returns maximum of 100 records</p>\n","type":"text/plain"},"key":"pageSize","value":"{{pageSize}}"},{"disabled":true,"description":{"content":"<p>Retrieves fields from the Darwin <b>Person / People basics / addresses</b> section.\nPossible values are 1 or 0.</p>\n<ul>\n<li>1 means the fields of this section will be retrieved </li>\n<li>0 means the fields of this section will not be retrieved</li>\n</ul>\n<p><b>NOTE: </b> see JSON response example for a complete list of fields in this section</p>\n","type":"text/plain"},"key":"showAddresses","value":"{{showAddresses}}"},{"disabled":true,"description":{"content":"<p>Retrieves fields from the Darwin <b>Person / People basics / phone numbers</b> section.\nPossible values are 1 or 0.</p>\n<ul>\n<li>1 means the fields of this section will be retrieved </li>\n<li>0 means the fields of this section will not be retrieved</li>\n</ul>\n<p><b>NOTE: </b> see JSON response example for a complete list of fields in this section</p>\n","type":"text/plain"},"key":"showPhones","value":"{{showPhones}}"},{"disabled":true,"description":{"content":"<p>Retrieves fields from the Darwin <b>Person / Agent basics / positions</b> section.\nPossible values are 1 or 0.</p>\n<ul>\n<li>1 means the fields of this section will be retrieved </li>\n<li>0 means the fields of this section will not be retrieved</li>\n</ul>\n<p><b>NOTE: </b> see JSON response example for a complete list of fields in this section</p>\n","type":"text/plain"},"key":"showPositions","value":"{{showPositions}}"},{"disabled":true,"description":{"content":"<p>Retrieves fields from the Darwin <b>Person / Agent basics / licences</b> section.\nPossible values are 1 or 0.</p>\n<ul>\n<li>1 means the fields of this section will be retrieved. </li>\n<li>0 means the fields of this section will not be retrieved.</li>\n</ul>\n<p><b>NOTE: </b> see JSON response example for a complete list of fields in this section.</p>\n","type":"text/plain"},"key":"showLicenses","value":"{{showLicenses}}"},{"disabled":true,"description":{"content":"<p>Retrieves fields from the Darwin <b>Person / Agent basics / insurances</b> section.\nPossible values are 1 or 0.</p>\n<ul>\n<li>1 means the fields of this section will be retrieved. </li>\n<li>0 means the fields of this section will not be retrieved.</li>\n</ul>\n<p><b>NOTE: </b> see JSON response example for a complete list of fields in this section.</p>\n","type":"text/plain"},"key":"showInsurances","value":"{{showInsurances}}"},{"disabled":true,"description":{"content":"<p>Retrieves fields from the Darwin <b>Person / Web profile / web profiles</b> section.\nPossible values are 1 or 0.</p>\n<ul>\n<li>1 means the fields of this section will be retrieved. </li>\n<li>0 means the fields of this section will not be retrieved.</li>\n</ul>\n<p><b>NOTE: </b> see JSON response example for a complete list of fields in this section.</p>\n","type":"text/plain"},"key":"showWebProfiles","value":"{{showWebProfiles}}"},{"disabled":true,"description":{"content":"<p>Retrieves fields from the Darwin <b>Person / Web profile / languages</b> section.\nPossible values are 1 or 0.</p>\n<ul>\n<li>1 means the fields of this section will be retrieved. </li>\n<li>0 means the fields of this section will not be retrieved .</li>\n</ul>\n<p><b>NOTE: </b> see JSON response example for a complete list of fields in this section.</p>\n","type":"text/plain"},"key":"showLanguages","value":"{{showLanguages}}"},{"disabled":true,"description":{"content":"<p>Retrieves fields from the Darwin <b>Person / Custom fields</b> section.\nPossible values are 1 or 0.</p>\n<ul>\n<li>1 means the fields of this section will be retrieved. </li>\n<li>0 means the fields of this section will not be retrieved .</li>\n</ul>\n<p><b>NOTE: </b> see JSON response example for a complete list of fields in this section.</p>\n","type":"text/plain"},"key":"showCustomFields","value":"{{showCustomFields}}"},{"disabled":true,"description":{"content":"<p>Determines whether or not to retrieve person records that have been removed from Darwin (useful for incremental updates).</p>\n<p>Possible values are 1 or 0.</p>\n<ul>\n<li>1 means the deleted person records will be included. </li>\n<li>0 means the deleted person records will be excluded.</li>\n</ul>\n<p>If this parameter is not provided, 0 will be assumed.</p>\n","type":"text/plain"},"key":"showDeleted","value":"{{showDeleted}}"},{"disabled":true,"description":{"content":"<p>Retrieves fields from the Darwin Darwin <b>Person /  Deduction Current Level</b> section.</p>\n<p>Possible values are 1 or 0.</p>\n<ul>\n<li>1 means the fields of this section will be retrieved. </li>\n<li>0 means the fields of this section will not be retrieved.</li>\n</ul>\n<p><b>NOTE: </b> see JSON response example for a complete list of fields in this section.</p>\n","type":"text/plain"},"key":"showLevels","value":"{{showLevels}}"},{"disabled":true,"description":{"content":"<p>Retrieves fields from the Darwin <b>Person / Web profile / designations</b> section.\nPossible values are 1 or 0.</p>\n<ul>\n<li>1 means the fields of this section will be retrieved. </li>\n<li>0 means the fields of this section will not be retrieved.</li>\n</ul>\n<p><b>NOTE: </b> see JSON response example for a complete list of fields in this section.</p>\n","type":"text/plain"},"key":"showDesignations","value":"{{showDesignations}}"},{"disabled":true,"description":{"content":"<p>Retrieves fields from the Darwin <b>Person / Commission / deductions</b> section.\nPossible values are 1 or 0.</p>\n<ul>\n<li>1 means the fields of this section will be retrieved. </li>\n<li>0 means the fields of this section will not be retrieved.</li>\n</ul>\n<p><b>NOTE: </b> see JSON response example for a complete list of fields in this section.</p>\n","type":"text/plain"},"key":"showDeductions","value":"{{showDeductions}}"},{"disabled":true,"description":{"content":"<p>Retrieves fields from the Darwin <b>Person / Commission / totals</b> section.\nPossible values are 1 or 0.</p>\n<ul>\n<li>1 means the fields of this section will be retrieved. </li>\n<li>0 means the fields of this section will not be retrieved.</li>\n</ul>\n<p><b>NOTE: </b> see JSON response example for a complete list of fields in this section.</p>\n","type":"text/plain"},"key":"showTotals","value":"{{showTotals}}"},{"disabled":true,"description":{"content":"<p>Retrieves fields from the Darwin <b>Person / Exp recovery / Expenses</b> to recover section.\nPossible values are 1 or 0.</p>\n<ul>\n<li>1 means the fields of this section will be retrieved. </li>\n<li>0 means the fields of this section will not be retrieved.</li>\n</ul>\n<p><b>NOTE: </b> see JSON response example for a complete list of fields in this section.</p>\n","type":"text/plain"},"key":"showExpensesToRecover","value":"{{showExpensesToRecover}}"},{"disabled":true,"description":{"content":"<p>Retrieves fields from the Darwin <b>Person / Exp recovery / Expenses</b> already recovered section.\nPossible values are 1 or 0.</p>\n<ul>\n<li>1 means the fields of this section will be retrieved. </li>\n<li>0 means the fields of this section will not be retrieved.</li>\n</ul>\n<p><b>NOTE: </b> see JSON response example for a complete list of fields in this sectionv</p>\n","type":"text/plain"},"key":"showExpensesRecovered","value":"{{showExpensesRecovered}}"},{"disabled":true,"description":{"content":"<p>Retrieves fields from the Darwin <b>Person / Overrides</b> section.\nPossible values are 1 or 0.</p>\n<ul>\n<li>1 means the fields of this section will be retrieved. </li>\n<li>0 means the fields of this section will not be retrieved</li>\n</ul>\n<p><b>NOTE: </b> see JSON response example for a complete list of fields in this section</p>\n","type":"text/plain"},"key":"showOverrides","value":"{{showOverrides}}"}],"variable":[]}},"response":[{"id":"2dd1b53e-c1d2-43ec-b645-a2fb8b28e3a5","name":"Person Report","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic {{token}}","description":"This is a value generated with 2 components:\n\n“Basic {userName:token}”\n\nThe Token will be issued to the user after a successful authentication (used can get it from the LOGIN endpoint response when this succeeds) \n\nThis 2-value string needs to be encoded to base64\n"}],"body":{"mode":"raw","raw":""},"url":{"raw":"https://{{base_url}}/api/personreport?personId={{personId}}&personType={{personType}}&active={{active}}&dateType={{datetype}}&dateStart={{dateStart}}&dateEnd={{dateEnd}}&pageIndex={{pageIndex}}&pageSize={{pageSize}}&showAddresses={{showAddresses}}&showPhones={{showPhones}}&showPositions={{showPositions}}&showLicenses={{showLicenses}}&showInsurances={{showInsurances}}&showWebProfiles={{showWebProfiles}}&showLanguages={{showLanguages}}&showCustomFields={{showCustomFields}}&showDeleted={{showDeleted}}&showLevels={{showLevels}}&showDesignations={{showDesignations}}&showDeductions={{showDeductions}}&showTotals={{showTotals}}&showExpensesToRecover={{showExpensesToRecover}}&showExpensesRecovered={{showExpensesRecovered}}&showOverrides={{showOverrides}}","protocol":"https","host":["{{base_url}}"],"path":["api","personreport"],"query":[{"key":"personId","value":"{{personId}}","description":"Darwin ID of the person for which data will be retrieved.\nIf not passed, it will not apply this filter"},{"key":"personType","value":"{{personType}}","description":"A text value that determines what type of person records will be retrieved (Ex. Agent, Payee, ecc.)"},{"key":"active","value":"{{active}}","description":"Determines if only active people will be returned.\n\n1 means only active \n0 means only no active\nif you do not send this parameter, API will return active and no active"},{"key":"dateType","value":"{{datetype}}","description":"Determines what date field to use to apply a date range filter on.\n9. createDate\n10. modifyDate"},{"key":"dateStart","value":"{{dateStart}}","description":"Start date of the date range filter using the date Type establish in the DateType parameter.\n \nRequired when dateType is present"},{"key":"dateEnd","value":"{{dateEnd}}","description":"End date of the date range filter using the date Type stablish in the DateType parameter.\n \nRequired when dateType is present\n"},{"key":"pageIndex","value":"{{pageIndex}}","description":"Represents the page number that will be retrieved. Starts in zero.\n\nIf nothing is passed, it will assume page zero.\n\nIf -1 is passed, it will retrieve all records at once\n"},{"key":"pageSize","value":"{{pageSize}}","description":"Determines the number of properties that will be retrieved on every request. Could be any value from 1 to 100\n\nDefault value is 100, returns maximum of 100 records"},{"key":"showAddresses","value":"{{showAddresses}}","description":"Retrieves fields from the Darwin Person / People basics / addresses section.\nPossible values are 1 or 0.\n\n1 means the fields of this section will be retrieved \n0 means the fields of this section will not be retrieved \n\nNOTE: see JSON response example for a complete list of fields in this section"},{"key":"showPhones","value":"{{showPhones}}","description":"Retrieves fields from the Darwin Person / People basics / phone numbers section.\nPossible values are 1 or 0.\n\n1 means the fields of this section will be retrieved \n0 means the fields of this section will not be retrieved \n\nNOTE: see JSON response example for a complete list of fields in this section"},{"key":"showPositions","value":"{{showPositions}}","description":"Retrieves fields from the Darwin Person / Agent basics / positions section.\nPossible values are 1 or 0.\n\n1 means the fields of this section will be retrieved \n0 means the fields of this section will not be retrieved \n\nNOTE: see JSON response example for a complete list of fields in this section"},{"key":"showLicenses","value":"{{showLicenses}}","description":"Retrieves fields from the Darwin Person / Agent basics / licences section.\nPossible values are 1 or 0.\n\n1 means the fields of this section will be retrieved \n0 means the fields of this section will not be retrieved \n\nNOTE: see JSON response example for a complete list of fields in this section"},{"key":"showInsurances","value":"{{showInsurances}}","description":"Retrieves fields from the Darwin Person / Agent basics / insurances section.\nPossible values are 1 or 0.\n\n1 means the fields of this section will be retrieved \n0 means the fields of this section will not be retrieved \n\nNOTE: see JSON response example for a complete list of fields in this section"},{"key":"showWebProfiles","value":"{{showWebProfiles}}","description":"Retrieves fields from the Darwin Person / Web profile / web profiles section.\nPossible values are 1 or 0.\n\n1 means the fields of this section will be retrieved \n0 means the fields of this section will not be retrieved \n\nNOTE: see JSON response example for a complete list of fields in this section"},{"key":"showLanguages","value":"{{showLanguages}}","description":"Retrieves fields from the Darwin Person / Web profile / languages section.\nPossible values are 1 or 0.\n\n1 means the fields of this section will be retrieved \n0 means the fields of this section will not be retrieved \n\nNOTE: see JSON response example for a complete list of fields in this section"},{"key":"showCustomFields","value":"{{showCustomFields}}","description":"Retrieves fields from the Darwin Person / Custom fields section.\nPossible values are 1 or 0.\n\n1 means the fields of this section will be retrieved \n0 means the fields of this section will not be retrieved \n\nNOTE: see JSON response example for a complete list of fields in this section"},{"key":"showDeleted","value":"{{showDeleted}}","description":"Determines whether or not to retrieve person records that have been removed from Darwin (useful for incremental updates).\n\nPossible values are 1 or 0.\n\n1 means the deleted person records will be included \n0 means the deleted person records will be excluded \n\nIf this parameter is not provided, 0 will be assumed\n"},{"key":"showLevels","value":"{{showLevels}}","description":"Retrieves fields from the Darwin Darwin Person /  Deduction Current Level section.\n\nPossible values are 1 or 0.\n\n1 means the fields of this section will be retrieved \n0 means the fields of this section will not be retrieved \n\nNOTE: see JSON response example for a complete list of fields in this section"},{"key":"showDesignations","value":"{{showDesignations}}","description":"Retrieves fields from the Darwin Person / Web profile / designations section.\nPossible values are 1 or 0.\n\n1 means the fields of this section will be retrieved \n0 means the fields of this section will not be retrieved \n\nNOTE: see JSON response example for a complete list of fields in this section"},{"key":"showDeductions","value":"{{showDeductions}}","description":"Retrieves fields from the Darwin Person / Commission / deductions section.\nPossible values are 1 or 0.\n\n1 means the fields of this section will be retrieved \n0 means the fields of this section will not be retrieved \n\nNOTE: see JSON response example for a complete list of fields in this section"},{"key":"showTotals","value":"{{showTotals}}","description":"Retrieves fields from the Darwin Person / Commission / totals section.\nPossible values are 1 or 0.\n\n1 means the fields of this section will be retrieved \n0 means the fields of this section will not be retrieved \n\nNOTE: see JSON response example for a complete list of fields in this section"},{"key":"showExpensesToRecover","value":"{{showExpensesToRecover}}","description":"Retrieves fields from the Darwin Darwin Person / Exp recovery / Expenses to recover section.\nPossible values are 1 or 0.\n\n1 means the fields of this section will be retrieved \n0 means the fields of this section will not be retrieved \n\nNOTE: see JSON response example for a complete list of fields in this section"},{"key":"showExpensesRecovered","value":"{{showExpensesRecovered}}","description":"Retrieves fields from the Darwin Person / Exp recovery / Expenses already recovered section.\nPossible values are 1 or 0.\n\n1 means the fields of this section will be retrieved \n0 means the fields of this section will not be retrieved \n\nNOTE: see JSON response example for a complete list of fields in this section"},{"key":"showOverrides","value":"{{showOverrides}}","description":"Retrieves fields from the Darwin Person / Overrides section.\nPossible values are 1 or 0.\n\n1 means the fields of this section will be retrieved \n0 means the fields of this section will not be retrieved \n\nNOTE: see JSON response example for a complete list of fields in this section"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 06 Sep 2021 16:36:16 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"personId\": 59147,\n        \"personName\": \"Roya Nousample\",\n        \"firstName\": \"Roya\",\n        \"lastName\": \"Nousample\",\n        \"companyName\": \"Company 1\",\n        \"personTypeId\": 1368,\n        \"personType\": \"Agent\",\n        \"personAddress\": null,\n        \"termId\": 185,\n        \"emailAddress\": \"roya.nouhi@premiersir.com\",\n        \"expenseJobId\": 1430,\n        \"incomeJobId\": 1429,\n        \"officeId\": 19,\n        \"officeGUID\": null,\n        \"office\": \"Dorchester\",\n        \"companyId\": 1,\n        \"companyGUID\": null,\n        \"company\": null,\n        \"agentNumber\": \"10032\",\n        \"contractStartDate\": null,\n        \"startDate\": \"1996-12-18\",\n        \"terminatedDate\": null,\n        \"reStartDate\": \"1996-12-18\",\n        \"planId\": null,\n        \"planName\": null,\n        \"active\": true,\n        \"leadSourceId\": null,\n        \"salutationId\": null,\n        \"entityTypeId\": null,\n        \"leadGeneratedById\": null,\n        \"entityName\": null,\n        \"sendSurveyFlag\": false,\n        \"callToShow\": false,\n        \"autoDeposit\": true,\n        \"birthDate\": \"1956-06-15\",\n        \"printedName\": \"Roya Nouhi, PA\",\n        \"middleName\": null,\n        \"brandStartDate\": null,\n        \"priorOccupationId\": null,\n        \"educationLevelId\": null,\n        \"genderType\": \"F\",\n        \"priorAffiliationId\": null,\n        \"recruitedByPersonId\": null,\n        \"recruitedByPerson\": null,\n        \"emergencyPersonId\": null,\n        \"emergencyPerson\": null,\n        \"coachedByPersonId\": null,\n        \"coachedByPerson\": null,\n        \"manageByPersonId\": null,\n        \"manageByPerson\": null,\n        \"employeeId\": null,\n        \"customerId\": null,\n        \"atPersonId\": null,\n        \"tfdId\": null,\n        \"anniversaryStartDate\": null,\n        \"anniversaryEndDate\": null,\n        \"cobrokeOfficePersonId\": null,\n        \"cobrokeOfficePerson\": null,\n        \"forteClientId\": null,\n        \"forteAchId\": null,\n        \"forteCcId\": null,\n        \"guid\": \"f73baf7d-b855-4c10-96c1-a811a2be14c9\",\n        \"saGuid\": \"3eec155f-fb6d-41bb-8bb2-d44fed28d993\",\n        \"atguid\": \"39EE1105-97D8-4747-A236-3C6AC0274B89\",\n        \"familiarName\": null,\n        \"mlsId\": \"602399\",\n        \"url\": null,\n        \"confirmed\": false,\n        \"balance\": null,\n        \"notes\": null,\n        \"referralNotes\": null,\n        \"commissionNotes\": null,\n        \"referralPercentage\": null,\n        \"referralId\": null,\n        \"referralBrandId\": null,\n        \"referralNetworkId\": null,\n        \"referral\": null,\n        \"assignedPersonId\": null,\n        \"assignedPerson\": null,\n        \"taxId\": null,\n        \"accountId\": 221,\n        \"useCorporate\": true,\n        \"is1099\": true,\n        \"is1099TypeId\": 9494,\n        \"divisionId\": null,\n        \"userId\": null,\n        \"userName\": null,\n        \"title\": null,\n        \"accountNumber\": null,\n        \"dotLoopID\": null,\n        \"eRELOID\": null,\n        \"skySlopeID\": null,\n        \"crestID\": null,\n        \"feedID\": null,\n        \"showOnInternet\": true,\n        \"isFullTime\": true,\n        \"companyStaffGUID\": null,\n        \"agentTeamId\": null,\n        \"exclude\": null,\n        \"priorProduction\": 0,\n        \"isIntercompany\": false,\n        \"createDate\": \"2019-04-02 01:43\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2021-08-19 05:24\",\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"addresses\": [\n            {\n                \"addressId\": 3524,\n                \"address\": \"270 Monterey Dr Naples FL 34119\",\n                \"personId\": 59147,\n                \"addressTypeId\": 1476,\n                \"addressType\": \"Mailing\",\n                \"streetNumber\": \"270\",\n                \"streetDirection\": null,\n                \"streetName\": \"Monterey\",\n                \"streetDesignation\": \"Dr\",\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": null,\n                \"buildingFloorNumber\": null,\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"34119\",\n                \"country\": null,\n                \"nextAddress\": false,\n                \"personAddress1\": \"270 Monterey Dr \",\n                \"personAddress2\": \"Naples, FL 34119\",\n                \"createDate\": \"2019-04-02 01:47\",\n                \"createdBy\": \"ATBIAPP\\\\lucho\",\n                \"modifyDate\": \"2019-04-02 01:47\",\n                \"modifyBy\": null\n            }\n        ],\n        \"phones\": [\n            {\n                \"personPhoneId\": 24203,\n                \"personId\": 59147,\n                \"phoneTypeId\": 1432,\n                \"phoneType\": \"Business\",\n                \"phoneTypeCode\": \"2\",\n                \"phoneNumber\": \"2395525535\",\n                \"phoneExtension\": \"\",\n                \"createDate\": \"2019-04-03 10:39\",\n                \"createdBy\": \"ATBIAPP\\\\lucho\",\n                \"modifyDate\": null,\n                \"modifyBy\": null\n            },\n            {\n                \"personPhoneId\": 24204,\n                \"personId\": 59147,\n                \"phoneTypeId\": 1435,\n                \"phoneType\": \"Fax\",\n                \"phoneTypeCode\": \"5\",\n                \"phoneNumber\": \"2394305141\",\n                \"phoneExtension\": \"\",\n                \"createDate\": \"2019-04-03 10:39\",\n                \"createdBy\": \"ATBIAPP\\\\lucho\",\n                \"modifyDate\": null,\n                \"modifyBy\": null\n            },\n            {\n                \"personPhoneId\": 24205,\n                \"personId\": 59147,\n                \"phoneTypeId\": 1437,\n                \"phoneType\": \"Home\",\n                \"phoneTypeCode\": \"6\",\n                \"phoneNumber\": \"2393530480\",\n                \"phoneExtension\": \"\",\n                \"createDate\": \"2019-04-03 10:39\",\n                \"createdBy\": \"ATBIAPP\\\\lucho\",\n                \"modifyDate\": null,\n                \"modifyBy\": null\n            },\n            {\n                \"personPhoneId\": 24206,\n                \"personId\": 59147,\n                \"phoneTypeId\": 1439,\n                \"phoneType\": \"Mobile\",\n                \"phoneTypeCode\": \"8\",\n                \"phoneNumber\": \"2392909111\",\n                \"phoneExtension\": \"\",\n                \"createDate\": \"2019-04-03 10:39\",\n                \"createdBy\": \"ATBIAPP\\\\lucho\",\n                \"modifyDate\": null,\n                \"modifyBy\": null\n            }\n        ],\n        \"positions\": [\n            {\n                \"positionId\": 1480,\n                \"personId\": 59147,\n                \"officeId\": 19,\n                \"officeName\": \"Dorchester\",\n                \"companyId\": 1,\n                \"companyName\": \"Company 1\",\n                \"titleId\": 1641,\n                \"titleName\": \"Sales Associate\",\n                \"positionGuid\": \"c81499d6-3b57-4926-98c7-75a6fa096e43\",\n                \"activeDate\": \"1996-12-18\",\n                \"deactivateDate\": null,\n                \"createDate\": \"2019-04-02 01:47\",\n                \"createdBy\": \"ATBIAPP\\\\lucho\",\n                \"modifyDate\": \"2019-06-15 08:01\",\n                \"modifyBy\": \"dwinner\",\n                \"isFulltime\": true\n            }\n        ],\n        \"licenses\": [\n            {\n                \"personLicenseId\": 590,\n                \"personId\": 59147,\n                \"licenseTypeId\": 1520,\n                \"licenseTypeName\": \"Sales Associate\",\n                \"state\": \"FL\",\n                \"licenseNumber\": \"SL623572\",\n                \"issuedDate\": \"1995-03-13\",\n                \"expirationDate\": \"2020-09-30\",\n                \"createDate\": \"2019-04-02 01:47\",\n                \"createdBy\": \"ATBIAPP\\\\lucho\",\n                \"modifyDate\": null,\n                \"modifyBy\": null\n            }\n        ],\n        \"insurances\": [],\n        \"webProfiles\": [\n            {\n                \"personWebProfileId\": 2866,\n                \"personId\": 59147,\n                \"webCategoryId\": 1669,\n                \"webCategoryName\": \"Personal Profile\",\n                \"paragraphNumber\": 1,\n                \"profileText\": \"Roya has lived in Naples since 1988 and served as a real estate professional for the past 20 years. She holds a Bachelor’s degree in construction management and is a licensed general contractor.<br><br>\",\n                \"createDate\": \"2019-04-02 01:47\",\n                \"createdBy\": \"ATBIAPP\\\\lucho\",\n                \"modifyDate\": null,\n                \"modifyBy\": null\n            },\n            {\n                \"personWebProfileId\": 2867,\n                \"personId\": 59147,\n                \"webCategoryId\": 1669,\n                \"webCategoryName\": \"Personal Profile\",\n                \"paragraphNumber\": 2,\n                \"profileText\": \"She is a skilled negotiator with broad expertise in the local real estate market. Accolades include recognition as a Five-Star Realtor and Best in Client Satisfaction from Gulfshore Life magazine.<br><br>\",\n                \"createDate\": \"2019-04-02 01:47\",\n                \"createdBy\": \"ATBIAPP\\\\lucho\",\n                \"modifyDate\": null,\n                \"modifyBy\": null\n            },\n            {\n                \"personWebProfileId\": 2868,\n                \"personId\": 59147,\n                \"webCategoryId\": 1669,\n                \"webCategoryName\": \"Personal Profile\",\n                \"paragraphNumber\": 3,\n                \"profileText\": \"She prides herself as dedicated, enthusiastic and a result-oriented professional.&nbsp;\",\n                \"createDate\": \"2019-04-02 01:47\",\n                \"createdBy\": \"ATBIAPP\\\\lucho\",\n                \"modifyDate\": null,\n                \"modifyBy\": null\n            },\n            {\n                \"personWebProfileId\": 2869,\n                \"personId\": 59147,\n                \"webCategoryId\": 1669,\n                \"webCategoryName\": \"Personal Profile\",\n                \"paragraphNumber\": 4,\n                \"profileText\": \"She is an international traveler and an avid tennis player.<br><br>\",\n                \"createDate\": \"2019-04-02 01:47\",\n                \"createdBy\": \"ATBIAPP\\\\lucho\",\n                \"modifyDate\": null,\n                \"modifyBy\": null\n            },\n            {\n                \"personWebProfileId\": 2870,\n                \"personId\": 59147,\n                \"webCategoryId\": 1669,\n                \"webCategoryName\": \"Personal Profile\",\n                \"paragraphNumber\": 5,\n                \"profileText\": \"Roya is a member of the Naples Area Board of REALTORS®, Florida REALTORS® and the National Association of REALTORS®. She is president of Teak Construction Inc.<br><br>\",\n                \"createDate\": \"2019-04-02 01:47\",\n                \"createdBy\": \"ATBIAPP\\\\lucho\",\n                \"modifyDate\": null,\n                \"modifyBy\": null\n            }\n        ],\n        \"languages\": [\n            {\n                \"personLanguageId\": 1,\n                \"personId\": 59147,\n                \"languageId\": 19551,\n                \"languageName\": \"Farsi\",\n                \"createDate\": \"2019-04-02 01:47\",\n                \"createdBy\": \"ATBIAPP\\\\lucho\",\n                \"modifyDate\": null,\n                \"modifyBy\": null\n            }\n        ],\n        \"designations\": [\n            {\n                \"personDesignationId\": 328,\n                \"personId\": 59147,\n                \"designationId\": 1523,\n                \"designationCode\": \"1\",\n                \"designationName\": \"Accredited Buyer Representative\",\n                \"createDate\": \"2019-04-02 01:47\",\n                \"createdBy\": \"ATBIAPP\\\\lucho\",\n                \"modifyDate\": null,\n                \"modifyBy\": null\n            }\n        ],\n        \"deductions\": [\n            {\n                \"personDeductionId\": 9415,\n                \"personId\": 59147,\n                \"deductionId\": 1,\n                \"deductionCode\": \"deduct1\",\n                \"deductionName\": \"NAF\",\n                \"amount\": 0,\n                \"amountCAP\": 0,\n                \"percentage\": 0,\n                \"maxAmount\": 0,\n                \"maxPercentage\": 0,\n                \"percentageTerminatedDate\": null,\n                \"createDate\": \"2019-04-02 01:47\",\n                \"createdBy\": \"ATBIAPP\\\\lucho\",\n                \"modifyDate\": null,\n                \"modifyBy\": null\n            },\n            {\n                \"personDeductionId\": 9416,\n                \"personId\": 59147,\n                \"deductionId\": 2,\n                \"deductionCode\": \"deduct2\",\n                \"deductionName\": \"Royalty\",\n                \"amount\": 0,\n                \"amountCAP\": 0,\n                \"percentage\": 0.06,\n                \"maxAmount\": 0,\n                \"maxPercentage\": 0,\n                \"percentageTerminatedDate\": null,\n                \"createDate\": \"2019-04-02 01:47\",\n                \"createdBy\": \"ATBIAPP\\\\lucho\",\n                \"modifyDate\": null,\n                \"modifyBy\": null\n            },\n            {\n                \"personDeductionId\": 9417,\n                \"personId\": 59147,\n                \"deductionId\": 3,\n                \"deductionCode\": \"deduct3\",\n                \"deductionName\": \"Company $\",\n                \"amount\": 0,\n                \"amountCAP\": 0,\n                \"percentage\": 0.3,\n                \"maxAmount\": 0,\n                \"maxPercentage\": 0,\n                \"percentageTerminatedDate\": null,\n                \"createDate\": \"2019-04-02 01:47\",\n                \"createdBy\": \"ATBIAPP\\\\lucho\",\n                \"modifyDate\": null,\n                \"modifyBy\": null\n            },\n            {\n                \"personDeductionId\": 9418,\n                \"personId\": 59147,\n                \"deductionId\": 4,\n                \"deductionCode\": \"deduct4\",\n                \"deductionName\": \"Charity\",\n                \"amount\": 0,\n                \"amountCAP\": 0,\n                \"percentage\": 0,\n                \"maxAmount\": 0,\n                \"maxPercentage\": 0,\n                \"percentageTerminatedDate\": null,\n                \"createDate\": \"2019-04-02 01:47\",\n                \"createdBy\": \"ATBIAPP\\\\lucho\",\n                \"modifyDate\": null,\n                \"modifyBy\": null\n            },\n            {\n                \"personDeductionId\": 9419,\n                \"personId\": 59147,\n                \"deductionId\": 5,\n                \"deductionCode\": \"deduct5\",\n                \"deductionName\": \"Mentor\",\n                \"amount\": 0,\n                \"amountCAP\": 0,\n                \"percentage\": 0,\n                \"maxAmount\": 0,\n                \"maxPercentage\": 0,\n                \"percentageTerminatedDate\": null,\n                \"createDate\": \"2019-04-02 01:47\",\n                \"createdBy\": \"ATBIAPP\\\\lucho\",\n                \"modifyDate\": null,\n                \"modifyBy\": null\n            },\n            {\n                \"personDeductionId\": 9420,\n                \"personId\": 59147,\n                \"deductionId\": 6,\n                \"deductionCode\": \"deduct6\",\n                \"deductionName\": \"Direct Deposit fee\",\n                \"amount\": 0,\n                \"amountCAP\": 0,\n                \"percentage\": 0,\n                \"maxAmount\": 0,\n                \"maxPercentage\": 0,\n                \"percentageTerminatedDate\": null,\n                \"createDate\": \"2019-04-02 01:47\",\n                \"createdBy\": \"ATBIAPP\\\\lucho\",\n                \"modifyDate\": null,\n                \"modifyBy\": null\n            },\n            {\n                \"personDeductionId\": 9421,\n                \"personId\": 59147,\n                \"deductionId\": 7,\n                \"deductionCode\": \"deduct7\",\n                \"deductionName\": \"E/O\",\n                \"amount\": 0,\n                \"amountCAP\": 0,\n                \"percentage\": 0,\n                \"maxAmount\": 0,\n                \"maxPercentage\": 0,\n                \"percentageTerminatedDate\": null,\n                \"createDate\": \"2019-04-02 01:47\",\n                \"createdBy\": \"ATBIAPP\\\\lucho\",\n                \"modifyDate\": null,\n                \"modifyBy\": null\n            },\n            {\n                \"personDeductionId\": 9422,\n                \"personId\": 59147,\n                \"deductionId\": 8,\n                \"deductionCode\": \"deduct8\",\n                \"deductionName\": \"Sign fee\",\n                \"amount\": 0,\n                \"amountCAP\": 0,\n                \"percentage\": 0,\n                \"maxAmount\": 0,\n                \"maxPercentage\": 0,\n                \"percentageTerminatedDate\": null,\n                \"createDate\": \"2019-04-02 01:47\",\n                \"createdBy\": \"ATBIAPP\\\\lucho\",\n                \"modifyDate\": null,\n                \"modifyBy\": null\n            },\n            {\n                \"personDeductionId\": 9423,\n                \"personId\": 59147,\n                \"deductionId\": 9,\n                \"deductionCode\": \"deduct9\",\n                \"deductionName\": \"Trans Coord\",\n                \"amount\": 0,\n                \"amountCAP\": 0,\n                \"percentage\": 0,\n                \"maxAmount\": 0,\n                \"maxPercentage\": 0,\n                \"percentageTerminatedDate\": null,\n                \"createDate\": \"2019-04-02 01:47\",\n                \"createdBy\": \"ATBIAPP\\\\lucho\",\n                \"modifyDate\": null,\n                \"modifyBy\": null\n            }\n        ],\n        \"totals\": [\n            {\n                \"personTotalId\": 769,\n                \"personId\": 59147,\n                \"totalId\": 140,\n                \"totalName\": \"Agent Generated Net YTD\",\n                \"balance\": 0,\n                \"isUpdated\": false,\n                \"isInCheckTemplate\": false,\n                \"createDate\": \"2019-04-15 11:49\",\n                \"createdBy\": \"saDeploy\",\n                \"modifyDate\": \"2021-08-19 05:24\",\n                \"modifyBy\": \"saDeploy\"\n            },\n            {\n                \"personTotalId\": 3020,\n                \"personId\": 59147,\n                \"totalId\": 1,\n                \"totalName\": \"Gross YTD\",\n                \"balance\": 0,\n                \"isUpdated\": false,\n                \"isInCheckTemplate\": false,\n                \"createDate\": \"2019-04-28 03:22\",\n                \"createdBy\": \"ATBIAPP\\\\sqlServer\",\n                \"modifyDate\": \"2021-08-19 05:24\",\n                \"modifyBy\": \"saDeploy\"\n            },\n            {\n                \"personTotalId\": 4143,\n                \"personId\": 59147,\n                \"totalId\": 78,\n                \"totalName\": \"Net/Bills/Payouts this year\",\n                \"balance\": 0,\n                \"isUpdated\": false,\n                \"isInCheckTemplate\": false,\n                \"createDate\": \"2019-04-28 03:22\",\n                \"createdBy\": \"ATBIAPP\\\\sqlServer\",\n                \"modifyDate\": \"2021-08-19 05:23\",\n                \"modifyBy\": \"saDeploy\"\n            },\n            {\n                \"personTotalId\": 5266,\n                \"personId\": 59147,\n                \"totalId\": 132,\n                \"totalName\": \"Company $ this year\",\n                \"balance\": 0,\n                \"isUpdated\": false,\n                \"isInCheckTemplate\": false,\n                \"createDate\": \"2019-04-28 03:22\",\n                \"createdBy\": \"ATBIAPP\\\\sqlServer\",\n                \"modifyDate\": \"2021-08-19 05:06\",\n                \"modifyBy\": \"saDeploy\"\n            },\n            {\n                \"personTotalId\": 6388,\n                \"personId\": 59147,\n                \"totalId\": 138,\n                \"totalName\": \"Agent Generated AGCI YTD\",\n                \"balance\": 0,\n                \"isUpdated\": false,\n                \"isInCheckTemplate\": false,\n                \"createDate\": \"2019-04-28 03:22\",\n                \"createdBy\": \"ATBIAPP\\\\sqlServer\",\n                \"modifyDate\": \"2021-08-19 05:07\",\n                \"modifyBy\": \"saDeploy\"\n            },\n            {\n                \"personTotalId\": 8634,\n                \"personId\": 59147,\n                \"totalId\": 259,\n                \"totalName\": \"Premier Agt\",\n                \"balance\": 0,\n                \"isUpdated\": false,\n                \"isInCheckTemplate\": false,\n                \"createDate\": \"2019-04-28 03:22\",\n                \"createdBy\": \"ATBIAPP\\\\sqlServer\",\n                \"modifyDate\": \"2021-08-19 05:12\",\n                \"modifyBy\": \"saDeploy\"\n            }\n        ],\n        \"expensesToRecover\": [],\n        \"expensesRecovered\": [\n            {\n                \"type\": \"voucher\",\n                \"detailId\": 41519,\n                \"id\": 349,\n                \"companyId\": 1,\n                \"companyName\": \"Company 1\",\n                \"amount\": 679,\n                \"description\": \"SCRIPPS MEDIA, INC. - 011905 FEB 2013\",\n                \"date\": \"2/28/2013 12:00:00 AM\",\n                \"orderTypeId\": 194,\n                \"accountId\": 221,\n                \"account\": \"6-1001 - Agent Personal exp\",\n                \"jobId\": 1430,\n                \"divisionId\": null,\n                \"reimb\": true,\n                \"locked\": false,\n                \"deductType\": null,\n                \"side\": null,\n                \"columnNumber\": null,\n                \"propertyId\": null,\n                \"personID\": 59147\n            },\n            {\n                \"type\": \"voucher\",\n                \"detailId\": 69071,\n                \"id\": 4698,\n                \"companyId\": 1,\n                \"companyName\": \"Company 1\",\n                \"amount\": 360,\n                \"description\": \"Marketcrank, Inc. - February 2014\",\n                \"date\": \"2/1/2014 12:00:00 AM\",\n                \"orderTypeId\": 194,\n                \"accountId\": 221,\n                \"account\": \"6-1001 - Agent Personal exp\",\n                \"jobId\": 1430,\n                \"divisionId\": null,\n                \"reimb\": true,\n                \"locked\": false,\n                \"deductType\": null,\n                \"side\": null,\n                \"columnNumber\": null,\n                \"propertyId\": null,\n                \"personID\": 59147\n            },\n            {\n                \"type\": \"voucher\",\n                \"detailId\": 71854,\n                \"id\": 5283,\n                \"companyId\": 1,\n                \"companyName\": \"Company 1\",\n                \"amount\": 27.56,\n                \"description\": \"Keeton Office Supply - Name Badge\",\n                \"date\": \"2/25/2014 12:00:00 AM\",\n                \"orderTypeId\": 194,\n                \"accountId\": 221,\n                \"account\": \"6-1001 - Agent Personal exp\",\n                \"jobId\": 1430,\n                \"divisionId\": null,\n                \"reimb\": true,\n                \"locked\": false,\n                \"deductType\": null,\n                \"side\": null,\n                \"columnNumber\": null,\n                \"propertyId\": null,\n                \"personID\": 59147\n            },\n            {\n                \"type\": \"voucher\",\n                \"detailId\": 5430,\n                \"id\": 8984,\n                \"companyId\": 1,\n                \"companyName\": \"Company 1\",\n                \"amount\": 364.1,\n                \"description\": \"AD DEPOT, INC. - ROYA NOUHI NEWSLETTER JANUARY\",\n                \"date\": \"12/15/2011 12:00:00 AM\",\n                \"orderTypeId\": 194,\n                \"accountId\": 221,\n                \"account\": \"6-1001 - Agent Personal exp\",\n                \"jobId\": 1430,\n                \"divisionId\": null,\n                \"reimb\": true,\n                \"locked\": false,\n                \"deductType\": null,\n                \"side\": null,\n                \"columnNumber\": null,\n                \"propertyId\": null,\n                \"personID\": 59147\n            },\n            {\n                \"type\": \"voucher\",\n                \"detailId\": 12412,\n                \"id\": 29473,\n                \"companyId\": 1,\n                \"companyName\": \"Company 1\",\n                \"amount\": 364.1,\n                \"description\": \"AD DEPOT, INC. - LAYOUT APRIL 2012 NEWSLETTER 550\",\n                \"date\": \"3/16/2012 12:00:00 AM\",\n                \"orderTypeId\": 194,\n                \"accountId\": 221,\n                \"account\": \"6-1001 - Agent Personal exp\",\n                \"jobId\": 1430,\n                \"divisionId\": null,\n                \"reimb\": true,\n                \"locked\": false,\n                \"deductType\": null,\n                \"side\": null,\n                \"columnNumber\": null,\n                \"propertyId\": null,\n                \"personID\": 59147\n            },\n            {\n                \"type\": \"voucher\",\n                \"detailId\": 27741,\n                \"id\": 39006,\n                \"companyId\": 1,\n                \"companyName\": \"Company 1\",\n                \"amount\": 540.12,\n                \"description\": \"AD DEPOT, INC. - July Newsletter\",\n                \"date\": \"6/19/2012 12:00:00 AM\",\n                \"orderTypeId\": 194,\n                \"accountId\": 221,\n                \"account\": \"6-1001 - Agent Personal exp\",\n                \"jobId\": 1430,\n                \"divisionId\": null,\n                \"reimb\": true,\n                \"locked\": false,\n                \"deductType\": null,\n                \"side\": null,\n                \"columnNumber\": null,\n                \"propertyId\": null,\n                \"personID\": 59147\n            },\n            {\n                \"type\": \"voucher\",\n                \"detailId\": 30052,\n                \"id\": 39533,\n                \"companyId\": 1,\n                \"companyName\": \"Company 1\",\n                \"amount\": 500,\n                \"description\": \"VALERIE S. HABOUSH - 12990 COLLIER RESERVE DRIVE\",\n                \"date\": \"9/17/2012 12:00:00 AM\",\n                \"orderTypeId\": 194,\n                \"accountId\": 221,\n                \"account\": \"6-1001 - Agent Personal exp\",\n                \"jobId\": 1430,\n                \"divisionId\": null,\n                \"reimb\": true,\n                \"locked\": false,\n                \"deductType\": null,\n                \"side\": null,\n                \"columnNumber\": null,\n                \"propertyId\": null,\n                \"personID\": 59147\n            },\n            {\n                \"type\": \"voucher\",\n                \"detailId\": 344500,\n                \"id\": 266311,\n                \"companyId\": 1,\n                \"companyName\": \"Company 1\",\n                \"amount\": 13.19,\n                \"description\": \"dear agent - you need to pay this\",\n                \"date\": \"11/4/2019 12:00:00 AM\",\n                \"orderTypeId\": 194,\n                \"accountId\": 221,\n                \"account\": \"6-1001 - Agent Personal exp\",\n                \"jobId\": 1430,\n                \"divisionId\": null,\n                \"reimb\": true,\n                \"locked\": false,\n                \"deductType\": null,\n                \"side\": null,\n                \"columnNumber\": null,\n                \"propertyId\": null,\n                \"personID\": 59147\n            },\n            {\n                \"type\": \"voucher\",\n                \"detailId\": 344921,\n                \"id\": 266312,\n                \"companyId\": 1,\n                \"companyName\": \"Company 1\",\n                \"amount\": 166.27,\n                \"description\": \"test goes here\",\n                \"date\": \"11/4/2019 12:00:00 AM\",\n                \"orderTypeId\": 194,\n                \"accountId\": 221,\n                \"account\": \"6-1001 - Agent Personal exp\",\n                \"jobId\": 1430,\n                \"divisionId\": null,\n                \"reimb\": true,\n                \"locked\": false,\n                \"deductType\": null,\n                \"side\": null,\n                \"columnNumber\": null,\n                \"propertyId\": null,\n                \"personID\": 59147\n            }\n        ],\n        \"overrides\": [],\n        \"customFields\": [],\n        \"deductionsLevel\": []\n    }\n]"}],"_postman_id":"f65699f8-155d-4851-a6e4-c7ab720a1db6"},{"name":"Person Search","event":[{"listen":"prerequest","script":{"id":"8348eeac-511f-435d-939e-7b3091916029","exec":["pm.environment.set(\"personId\",59147);\r","pm.environment.set(\"personType\",\"Agent\");"],"type":"text/javascript"}}],"id":"82a91493-184b-4dc7-85ed-76788af13ca0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://{{base_url}}/api/person?person={{personName}}&personTypeID={{personTypeID}}&userID={{userID}}&companyID={{companyId}}&pageIndex={{pageIndex}}&pageSize={{pageSize}}&sortedBy={{sortedBy}}&custom={{custom}}&officeID={{officeId}}&propertyID={{propertyId}}&side={{side}}&companyName={{companyName}}&mls={{mls}}&emailAddress={{emailAddress}}&phoneNumber={{phoneNumber}}&licenseNumber={{licenseNumber}}&filter1={{filter1}}&filter2={{filter2}}&withTrash={{withTrash}}&active={{active}}&cobrokeOfficeID={{cobrokeOfficeID}}&printedName={{printedName}}&personID={{personId}}&applySecurity={{applySecurity}}&personTaxID={{personTaxID}}","description":"<p>This Resource will allow you to pull the list of people filtered by different parameters such as id, personName, companyName, person type, active, date, etc.</p>\n","urlObject":{"protocol":"https","path":["api","person"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>The person name used to filter on.</p>\n<p>If used, it will filter the results to only people when the person name contains this value.</p>\n<p>By default it is “”.</p>\n","type":"text/plain"},"key":"person","value":"{{personName}}"},{"description":{"content":"<p>Darwin ID of the type of person.\nUsed to filter by a specific person type\nBy default it is “0”.\nIf left with “0”, this filter is not applied.</p>\n","type":"text/plain"},"key":"personTypeID","value":"{{personTypeID}}"},{"description":{"content":"<p>For internal use only. Expects a number. Can be left as blank</p>\n<p>By default it is “0”.\nIf left with “0”, this filter is not applied.</p>\n","type":"text/plain"},"key":"userID","value":"{{userID}}"},{"description":{"content":"<p>Darwin internal ID of the company (legal entity) to filter on.</p>\n<p>If not passed, people from all legal entities will be retrieved.</p>\n<p>If used together with the officeID parameter, it will retrieve people within a given office within a given company</p>\n","type":"text/plain"},"key":"companyID","value":"{{companyId}}"},{"description":{"content":"<p>Represents the page number that will be retrieved. Starts in zero.</p>\n<p>If nothing is passed, it will assume page zero.</p>\n<p>If -1 is passed, it will retrieve all records at once</p>\n","type":"text/plain"},"key":"pageIndex","value":"{{pageIndex}}"},{"description":{"content":"<p>Determines the number of people that will be retrieved on every request. Could be any value from 1 to 100</p>\n<p>Default value is 10, returns maximum of 100 records</p>\n","type":"text/plain"},"key":"pageSize","value":"{{pageSize}}"},{"description":{"content":"<p>Used to sort by a specific field in person records.</p>\n<p>By default it is “personName”.</p>\n","type":"text/plain"},"key":"sortedBy","value":"{{sortedBy}}"},{"description":{"content":"<p>Used to filter by a specific custom record in person.</p>\n<p>By default it is “all”.</p>\n","type":"text/plain"},"key":"custom","value":"{{custom}}"},{"description":{"content":"<p>Darwin internal ID of the person's office.\nUsed to filter by people in a specific office\nBy default it is “0”.\nIf left with “0”, this filter is not applied.</p>\n","type":"text/plain"},"key":"officeID","value":"{{officeId}}"},{"description":{"content":"<p>Used to filter by a specific propertyID in person records (propertyDeduction, propertyPeople, personOverride).</p>\n<p>By default it is 0.</p>\n<p>If left with 0, this filter is not applied.</p>\n","type":"text/plain"},"key":"propertyID","value":"{{propertyId}}"},{"description":{"content":"<p>Used to filter by a specific side (L/S) in person.\nBy default it is “”.</p>\n","type":"text/plain"},"key":"side","value":"{{side}}"},{"description":{"content":"<p>The company name used to filter on.\nIf used, it will filter the results to only people when the company name contains this value.\nBy default it is “”.</p>\n","type":"text/plain"},"key":"companyName","value":"{{companyName}}"},{"description":{"content":"<p>The mls for a person filter on.</p>\n<p>If used, it will filter the results to only person records when the mls contains this value.</p>\n","type":"text/plain"},"key":"mls","value":"{{mls}}"},{"description":{"content":"<p>The email address used to filter on.\nIf used, it will filter the results to only people when the email address contains this value.\nBy default it is “”.</p>\n","type":"text/plain"},"key":"emailAddress","value":"{{emailAddress}}"},{"description":{"content":"<p>The phone number used to filter on.\nIf used, it will filter the results to only people when the phone number contains this value.\nBy default it is “”.</p>\n","type":"text/plain"},"key":"phoneNumber","value":"{{phoneNumber}}"},{"description":{"content":"<p>The license number used to filter on.\nIf used, it will filter the results to only people when the license number contains this value.\nBy default it is “”.</p>\n","type":"text/plain"},"key":"licenseNumber","value":"{{licenseNumber}}"},{"description":{"content":"<p>Used to filter by a custom filter #1 in the person records, example: date,  IDs, etc)\nBy default it is “”.</p>\n","type":"text/plain"},"key":"filter1","value":"{{filter1}}"},{"description":{"content":"<p>Used to filter by a custom filter #2 in the person records, example: date,  IDs, etc)\nBy default it is “”.</p>\n","type":"text/plain"},"key":"filter2","value":"{{filter2}}"},{"description":{"content":"<p>Used to filter deleted person records from Darwin. Possible values are 1 or 0.</p>\n<p>1 means the results to show all Darwin person\n0 means the results to show only Darwin person not deleted.</p>\n","type":"text/plain"},"key":"withTrash","value":"{{withTrash}}"},{"description":{"content":"<p>Determines if only active people will be returned.</p>\n<p>1 means only active\n0 means only no active</p>\n<p>if you do not send this parameter, API will return active and no active</p>\n","type":"text/plain"},"key":"active","value":"{{active}}"},{"description":{"content":"<p>Used to filter by a Cobroke office person in the person records.\nBy default it is “0”.</p>\n","type":"text/plain"},"key":"cobrokeOfficeID","value":"{{cobrokeOfficeID}}"},{"description":{"content":"<p>The printed name used to filter on.\nIf used, it will filter the results to only people when the printed name contains this value.\nBy default it is “”.</p>\n","type":"text/plain"},"key":"printedName","value":"{{printedName}}"},{"description":{"content":"<p>Used to filter by a specific personID in person records.\nBy default it is 0.\nIf left with 0, this filter is not applied.</p>\n","type":"text/plain"},"key":"personID","value":"{{personId}}"},{"description":{"content":"<p>Possible values are 1 or 0.</p>\n<ul>\n<li>1 means person types that apply permissions will be included.</li>\n<li>0 means the API will return all records.\nIf this parameter is not provided, 0 will be assumed.</li>\n</ul>\n","type":"text/plain"},"key":"applySecurity","value":"{{applySecurity}}"},{"description":{"content":"<p>Used to filter by a specific taxID in person records.\nBy default it is \"\".\nIf left with \"\", this filter is not applied.</p>\n","type":"text/plain"},"key":"personTaxID","value":"{{personTaxID}}"}],"variable":[]}},"response":[{"id":"f30bcb74-cdfa-4c9d-bb23-a9a20214f0b8","name":"Person Search","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"https://{{base_url}}/api/person?person={{personName}}","protocol":"https","host":["{{base_url}}"],"path":["api","person"],"query":[{"key":"person","value":"{{personName}}","description":"The person name used to filter on.\n\nIf used, it will filter the results to only people when the person name contains this value.\n\nBy default it is “”."},{"key":"personTypeID","value":"{{personTypeID}}","description":"Darwin ID of the type of person.\nUsed to filter by a specific person type\nBy default it is “0”.\nIf left with “0”, this filter is not applied.","disabled":true},{"key":"userID","value":"{{userID}}","description":"For internal use only. Expects a number. Can be left as blank\n\nBy default it is “0”.\nIf left with “0”, this filter is not applied.","disabled":true},{"key":"companyID","value":"{{companyId}}","description":"Darwin internal ID of the company (legal entity) to filter on.\n\nIf not passed, people from all legal entities will be retrieved.\n\nIf used together with the officeID parameter, it will retrieve people within a given office within a given company","disabled":true},{"key":"pageIndex","value":"{{pageIndex}}","description":"Represents the page number that will be retrieved. Starts in zero.\n\nIf nothing is passed, it will assume page zero.\n\nIf -1 is passed, it will retrieve all records at once","disabled":true},{"key":"pageSize","value":"{{pageSize}}","description":"Determines the number of people that will be retrieved on every request. Could be any value from 1 to 100\n\nDefault value is 10, returns maximum of 100 records","disabled":true},{"key":"sortedBy","value":"{{sortedBy}}","description":"Used to sort by a specific field in person records.\n\nBy default it is “personName”.","disabled":true},{"key":"custom","value":"{{custom}}","description":"Used to filter by a specific custom record in person.\n\nBy default it is “all”.","disabled":true},{"key":"officeID","value":"{{officeId}}","description":"Darwin internal ID of the person's office.\nUsed to filter by people in a specific office\nBy default it is “0”.\nIf left with “0”, this filter is not applied.","disabled":true},{"key":"propertyID","value":"{{propertyId}}","description":"Used to filter by a specific propertyID in person records (propertyDeduction, propertyPeople, personOverride).\n\nBy default it is 0.\n\nIf left with 0, this filter is not applied.","disabled":true},{"key":"side","value":"{{side}}","description":"Used to filter by a specific side (L/S) in person.\nBy default it is “”.","disabled":true},{"key":"companyName","value":"{{companyName}}","description":"The company name used to filter on.\nIf used, it will filter the results to only people when the company name contains this value.\nBy default it is “”.","disabled":true},{"key":"mls","value":"{{mls}}","description":"The mls for a person filter on.\n\nIf used, it will filter the results to only person records when the mls contains this value.","disabled":true},{"key":"emailAddress","value":"{{emailAddress}}","description":"The email address used to filter on.\nIf used, it will filter the results to only people when the email address contains this value.\nBy default it is “”.","disabled":true},{"key":"phoneNumber","value":"{{phoneNumber}}","description":"The phone number used to filter on.\nIf used, it will filter the results to only people when the phone number contains this value.\nBy default it is “”.","disabled":true},{"key":"licenseNumber","value":"{{licenseNumber}}","description":"The license number used to filter on.\nIf used, it will filter the results to only people when the license number contains this value.\nBy default it is “”.","disabled":true},{"key":"filter1","value":"{{filter1}}","description":"Used to filter by a custom filter #1 in the person records, example: date,  IDs, etc)\nBy default it is “”.","disabled":true},{"key":"filter2","value":"{{filter2}}","description":"Used to filter by a custom filter #2 in the person records, example: date,  IDs, etc)\nBy default it is “”.","disabled":true},{"key":"withTrash","value":"{{withTrash}}","description":"Used to filter deleted person records from Darwin. Possible values are 1 or 0.\n\n1 means the results to show all Darwin person\n0 means the results to show only Darwin person not deleted.","disabled":true},{"key":"active","value":"{{active}}","description":"Determines if only active people will be returned.\n\n1 means only active\n0 means only no active\n\nif you do not send this parameter, API will return active and no active","disabled":true},{"key":"cobrokeOfficeID","value":"{{cobrokeOfficeID}}","description":"Used to filter by a Cobroke office person in the person records.\nBy default it is “0”.","disabled":true},{"key":"printedName","value":"{{printedName}}","description":"The printed name used to filter on.\nIf used, it will filter the results to only people when the printed name contains this value.\nBy default it is “”.","disabled":true},{"key":"personID","value":"{{personId}}","description":"Used to filter by a specific personID in person records.\nBy default it is 0.\nIf left with 0, this filter is not applied.","disabled":true},{"key":"applySecurity","value":"{{applySecurity}}","description":"Possible values are 1 or 0.\n* 1 means person types that apply permissions will be included.\n* 0 means the API will return all records.\nIf this parameter is not provided, 0 will be assumed.","disabled":true},{"key":"personTaxID","value":"{{personTaxID}}","description":"Used to filter by a specific taxID in person records.\nBy default it is \"\".\nIf left with \"\", this filter is not applied.","disabled":true}]}},"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":"Server","value":"Kestrel"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 09 Jun 2023 21:27:02 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"personId\": 122689,\n        \"personName\": \"Celeste Tratch\",\n        \"firstName\": \"Celeste\",\n        \"lastName\": \"Tratch\",\n        \"companyName\": null,\n        \"personTypeId\": 1371,\n        \"personType\": \"Buyer/Seller\",\n        \"personAddress\": null,\n        \"termId\": null,\n        \"emailAddress\": \"\",\n        \"expenseJobId\": null,\n        \"incomeJobId\": null,\n        \"officeId\": null,\n        \"officeGUID\": null,\n        \"office\": null,\n        \"companyId\": null,\n        \"companyGUID\": null,\n        \"company\": null,\n        \"agentNumber\": null,\n        \"contractStartDate\": null,\n        \"startDate\": null,\n        \"terminatedDate\": null,\n        \"reStartDate\": null,\n        \"planId\": null,\n        \"nextCommissionPlanId\": null,\n        \"subplanId\": null,\n        \"nextCommissionEffectiveDate\": null,\n        \"active\": true,\n        \"leadSourceId\": null,\n        \"salutationId\": null,\n        \"entityTypeId\": null,\n        \"leadGeneratedById\": null,\n        \"entityName\": null,\n        \"sendSurveyFlag\": null,\n        \"callToShow\": null,\n        \"autoDeposit\": null,\n        \"birthDate\": null,\n        \"printedName\": null,\n        \"middleName\": null,\n        \"brandStartDate\": null,\n        \"priorOccupationId\": null,\n        \"educationLevelId\": null,\n        \"specialty\": null,\n        \"genderType\": null,\n        \"priorAffiliationId\": null,\n        \"recruitedByPersonId\": null,\n        \"recruitedByPerson\": null,\n        \"emergencyPersonId\": null,\n        \"emergencyPerson\": null,\n        \"coachedByPersonId\": null,\n        \"coachedByPerson\": null,\n        \"manageByPersonId\": null,\n        \"manageByPerson\": null,\n        \"employeeId\": null,\n        \"customerId\": null,\n        \"atPersonId\": null,\n        \"tfdId\": null,\n        \"anniversaryStartDate\": null,\n        \"anniversaryEndDate\": null,\n        \"cobrokeOfficePersonId\": null,\n        \"cobrokeOfficePerson\": null,\n        \"forteClientId\": null,\n        \"forteAchId\": null,\n        \"forteCcId\": null,\n        \"guid\": null,\n        \"saGuid\": null,\n        \"atguid\": null,\n        \"familiarName\": null,\n        \"mlsId\": null,\n        \"url\": null,\n        \"confirmed\": null,\n        \"balance\": null,\n        \"notes\": null,\n        \"referralNotes\": null,\n        \"commissionNotes\": null,\n        \"referralPercentage\": null,\n        \"referralId\": null,\n        \"referralBrandId\": null,\n        \"referralNetworkId\": null,\n        \"referral\": null,\n        \"assignedPersonId\": null,\n        \"assignedPerson\": null,\n        \"taxId\": null,\n        \"accountId\": null,\n        \"useCorporate\": null,\n        \"is1099\": null,\n        \"is1099TypeId\": null,\n        \"divisionId\": null,\n        \"userId\": null,\n        \"userName\": null,\n        \"title\": null,\n        \"accountNumber\": null,\n        \"dotLoopID\": null,\n        \"eRELOID\": null,\n        \"skySlopeID\": null,\n        \"crestID\": null,\n        \"feedID\": null,\n        \"showOnInternet\": null,\n        \"isFullTime\": null,\n        \"companyStaffGUID\": null,\n        \"agentTeamId\": null,\n        \"exclude\": null,\n        \"priorProduction\": 0,\n        \"priorVolume\": 0,\n        \"priorSides\": 0,\n        \"priorNet\": 0,\n        \"isIntercompany\": false,\n        \"displayName\": null,\n        \"brandName\": null,\n        \"routingNumber\": null,\n        \"bankAccountNumber\": null,\n        \"createDate\": \"2019-04-02T17:55:15.667\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": null,\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"lwid\": null,\n        \"lW_EMPLID\": null,\n        \"corporateTaxId\": null,\n        \"corporationStartDate\": null,\n        \"corporationEndDate\": null,\n        \"notifyPropertyMsg\": false,\n        \"notifyContactMsg\": false,\n        \"notifyPropertyDoc\": false,\n        \"notifyContactDoc\": false,\n        \"billingNotes\": null,\n        \"isDirectDepositEnabled\": false\n    },\n    {\n        \"personId\": 87762,\n        \"personName\": \"Jose Tratch\",\n        \"firstName\": \"Jose\",\n        \"lastName\": \"Tratch\",\n        \"companyName\": null,\n        \"personTypeId\": 1371,\n        \"personType\": \"Buyer/Seller\",\n        \"personAddress\": \"unknown, Seward, AK, 99664\",\n        \"termId\": null,\n        \"emailAddress\": \"ttratch@rogers.com\",\n        \"expenseJobId\": null,\n        \"incomeJobId\": null,\n        \"officeId\": null,\n        \"officeGUID\": null,\n        \"office\": null,\n        \"companyId\": null,\n        \"companyGUID\": null,\n        \"company\": null,\n        \"agentNumber\": null,\n        \"contractStartDate\": null,\n        \"startDate\": null,\n        \"terminatedDate\": null,\n        \"reStartDate\": null,\n        \"planId\": null,\n        \"nextCommissionPlanId\": null,\n        \"subplanId\": null,\n        \"nextCommissionEffectiveDate\": null,\n        \"active\": true,\n        \"leadSourceId\": null,\n        \"salutationId\": null,\n        \"entityTypeId\": null,\n        \"leadGeneratedById\": null,\n        \"entityName\": null,\n        \"sendSurveyFlag\": null,\n        \"callToShow\": null,\n        \"autoDeposit\": null,\n        \"birthDate\": null,\n        \"printedName\": null,\n        \"middleName\": null,\n        \"brandStartDate\": null,\n        \"priorOccupationId\": null,\n        \"educationLevelId\": null,\n        \"specialty\": null,\n        \"genderType\": null,\n        \"priorAffiliationId\": null,\n        \"recruitedByPersonId\": null,\n        \"recruitedByPerson\": null,\n        \"emergencyPersonId\": null,\n        \"emergencyPerson\": null,\n        \"coachedByPersonId\": null,\n        \"coachedByPerson\": null,\n        \"manageByPersonId\": null,\n        \"manageByPerson\": null,\n        \"employeeId\": null,\n        \"customerId\": null,\n        \"atPersonId\": null,\n        \"tfdId\": null,\n        \"anniversaryStartDate\": null,\n        \"anniversaryEndDate\": null,\n        \"cobrokeOfficePersonId\": null,\n        \"cobrokeOfficePerson\": null,\n        \"forteClientId\": null,\n        \"forteAchId\": null,\n        \"forteCcId\": null,\n        \"guid\": null,\n        \"saGuid\": null,\n        \"atguid\": null,\n        \"familiarName\": null,\n        \"mlsId\": null,\n        \"url\": null,\n        \"confirmed\": null,\n        \"balance\": null,\n        \"notes\": null,\n        \"referralNotes\": null,\n        \"commissionNotes\": null,\n        \"referralPercentage\": null,\n        \"referralId\": null,\n        \"referralBrandId\": null,\n        \"referralNetworkId\": null,\n        \"referral\": null,\n        \"assignedPersonId\": null,\n        \"assignedPerson\": null,\n        \"taxId\": null,\n        \"accountId\": null,\n        \"useCorporate\": null,\n        \"is1099\": null,\n        \"is1099TypeId\": null,\n        \"divisionId\": null,\n        \"userId\": null,\n        \"userName\": null,\n        \"title\": null,\n        \"accountNumber\": null,\n        \"dotLoopID\": null,\n        \"eRELOID\": null,\n        \"skySlopeID\": null,\n        \"crestID\": null,\n        \"feedID\": null,\n        \"showOnInternet\": null,\n        \"isFullTime\": null,\n        \"companyStaffGUID\": null,\n        \"agentTeamId\": null,\n        \"exclude\": null,\n        \"priorProduction\": 0,\n        \"priorVolume\": 0,\n        \"priorSides\": 0,\n        \"priorNet\": 0,\n        \"isIntercompany\": false,\n        \"displayName\": null,\n        \"brandName\": null,\n        \"routingNumber\": null,\n        \"bankAccountNumber\": null,\n        \"createDate\": \"2019-04-02T17:55:15.667\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": null,\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"lwid\": null,\n        \"lW_EMPLID\": null,\n        \"corporateTaxId\": null,\n        \"corporationStartDate\": null,\n        \"corporationEndDate\": null,\n        \"notifyPropertyMsg\": false,\n        \"notifyContactMsg\": false,\n        \"notifyPropertyDoc\": false,\n        \"notifyContactDoc\": false,\n        \"billingNotes\": null,\n        \"isDirectDepositEnabled\": false\n    },\n    {\n        \"personId\": 96074,\n        \"personName\": \"Luis Tratch\",\n        \"firstName\": \"Luis\",\n        \"lastName\": \"Tratch\",\n        \"companyName\": null,\n        \"personTypeId\": 1371,\n        \"personType\": \"Buyer/Seller\",\n        \"personAddress\": null,\n        \"termId\": null,\n        \"emailAddress\": \"\",\n        \"expenseJobId\": null,\n        \"incomeJobId\": null,\n        \"officeId\": null,\n        \"officeGUID\": null,\n        \"office\": null,\n        \"companyId\": null,\n        \"companyGUID\": null,\n        \"company\": null,\n        \"agentNumber\": null,\n        \"contractStartDate\": null,\n        \"startDate\": null,\n        \"terminatedDate\": null,\n        \"reStartDate\": null,\n        \"planId\": null,\n        \"nextCommissionPlanId\": null,\n        \"subplanId\": null,\n        \"nextCommissionEffectiveDate\": null,\n        \"active\": true,\n        \"leadSourceId\": null,\n        \"salutationId\": null,\n        \"entityTypeId\": null,\n        \"leadGeneratedById\": null,\n        \"entityName\": null,\n        \"sendSurveyFlag\": null,\n        \"callToShow\": null,\n        \"autoDeposit\": null,\n        \"birthDate\": null,\n        \"printedName\": null,\n        \"middleName\": null,\n        \"brandStartDate\": null,\n        \"priorOccupationId\": null,\n        \"educationLevelId\": null,\n        \"specialty\": null,\n        \"genderType\": null,\n        \"priorAffiliationId\": null,\n        \"recruitedByPersonId\": null,\n        \"recruitedByPerson\": null,\n        \"emergencyPersonId\": null,\n        \"emergencyPerson\": null,\n        \"coachedByPersonId\": null,\n        \"coachedByPerson\": null,\n        \"manageByPersonId\": null,\n        \"manageByPerson\": null,\n        \"employeeId\": null,\n        \"customerId\": null,\n        \"atPersonId\": null,\n        \"tfdId\": null,\n        \"anniversaryStartDate\": null,\n        \"anniversaryEndDate\": null,\n        \"cobrokeOfficePersonId\": null,\n        \"cobrokeOfficePerson\": null,\n        \"forteClientId\": null,\n        \"forteAchId\": null,\n        \"forteCcId\": null,\n        \"guid\": null,\n        \"saGuid\": null,\n        \"atguid\": null,\n        \"familiarName\": null,\n        \"mlsId\": null,\n        \"url\": null,\n        \"confirmed\": null,\n        \"balance\": null,\n        \"notes\": null,\n        \"referralNotes\": null,\n        \"commissionNotes\": null,\n        \"referralPercentage\": null,\n        \"referralId\": null,\n        \"referralBrandId\": null,\n        \"referralNetworkId\": null,\n        \"referral\": null,\n        \"assignedPersonId\": null,\n        \"assignedPerson\": null,\n        \"taxId\": null,\n        \"accountId\": null,\n        \"useCorporate\": null,\n        \"is1099\": null,\n        \"is1099TypeId\": null,\n        \"divisionId\": null,\n        \"userId\": null,\n        \"userName\": null,\n        \"title\": null,\n        \"accountNumber\": null,\n        \"dotLoopID\": null,\n        \"eRELOID\": null,\n        \"skySlopeID\": null,\n        \"crestID\": null,\n        \"feedID\": null,\n        \"showOnInternet\": null,\n        \"isFullTime\": null,\n        \"companyStaffGUID\": null,\n        \"agentTeamId\": null,\n        \"exclude\": null,\n        \"priorProduction\": 0,\n        \"priorVolume\": 0,\n        \"priorSides\": 0,\n        \"priorNet\": 0,\n        \"isIntercompany\": false,\n        \"displayName\": null,\n        \"brandName\": null,\n        \"routingNumber\": null,\n        \"bankAccountNumber\": null,\n        \"createDate\": \"2019-04-02T17:55:15.667\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": null,\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"lwid\": null,\n        \"lW_EMPLID\": null,\n        \"corporateTaxId\": null,\n        \"corporationStartDate\": null,\n        \"corporationEndDate\": null,\n        \"notifyPropertyMsg\": false,\n        \"notifyContactMsg\": false,\n        \"notifyPropertyDoc\": false,\n        \"notifyContactDoc\": false,\n        \"billingNotes\": null,\n        \"isDirectDepositEnabled\": false\n    },\n    {\n        \"personId\": 108721,\n        \"personName\": \"Teresinha Tratch\",\n        \"firstName\": \"Teresinha\",\n        \"lastName\": \"Tratch\",\n        \"companyName\": null,\n        \"personTypeId\": 1371,\n        \"personType\": \"Buyer/Seller\",\n        \"personAddress\": \"unknown, Seward, AK, 99664\",\n        \"termId\": null,\n        \"emailAddress\": \"\",\n        \"expenseJobId\": null,\n        \"incomeJobId\": null,\n        \"officeId\": null,\n        \"officeGUID\": null,\n        \"office\": null,\n        \"companyId\": null,\n        \"companyGUID\": null,\n        \"company\": null,\n        \"agentNumber\": null,\n        \"contractStartDate\": null,\n        \"startDate\": null,\n        \"terminatedDate\": null,\n        \"reStartDate\": null,\n        \"planId\": null,\n        \"nextCommissionPlanId\": null,\n        \"subplanId\": null,\n        \"nextCommissionEffectiveDate\": null,\n        \"active\": true,\n        \"leadSourceId\": null,\n        \"salutationId\": null,\n        \"entityTypeId\": null,\n        \"leadGeneratedById\": null,\n        \"entityName\": null,\n        \"sendSurveyFlag\": null,\n        \"callToShow\": null,\n        \"autoDeposit\": null,\n        \"birthDate\": null,\n        \"printedName\": null,\n        \"middleName\": null,\n        \"brandStartDate\": null,\n        \"priorOccupationId\": null,\n        \"educationLevelId\": null,\n        \"specialty\": null,\n        \"genderType\": null,\n        \"priorAffiliationId\": null,\n        \"recruitedByPersonId\": null,\n        \"recruitedByPerson\": null,\n        \"emergencyPersonId\": null,\n        \"emergencyPerson\": null,\n        \"coachedByPersonId\": null,\n        \"coachedByPerson\": null,\n        \"manageByPersonId\": null,\n        \"manageByPerson\": null,\n        \"employeeId\": null,\n        \"customerId\": null,\n        \"atPersonId\": null,\n        \"tfdId\": null,\n        \"anniversaryStartDate\": null,\n        \"anniversaryEndDate\": null,\n        \"cobrokeOfficePersonId\": null,\n        \"cobrokeOfficePerson\": null,\n        \"forteClientId\": null,\n        \"forteAchId\": null,\n        \"forteCcId\": null,\n        \"guid\": null,\n        \"saGuid\": null,\n        \"atguid\": null,\n        \"familiarName\": null,\n        \"mlsId\": null,\n        \"url\": null,\n        \"confirmed\": null,\n        \"balance\": null,\n        \"notes\": null,\n        \"referralNotes\": null,\n        \"commissionNotes\": null,\n        \"referralPercentage\": null,\n        \"referralId\": null,\n        \"referralBrandId\": null,\n        \"referralNetworkId\": null,\n        \"referral\": null,\n        \"assignedPersonId\": null,\n        \"assignedPerson\": null,\n        \"taxId\": null,\n        \"accountId\": null,\n        \"useCorporate\": null,\n        \"is1099\": null,\n        \"is1099TypeId\": null,\n        \"divisionId\": null,\n        \"userId\": null,\n        \"userName\": null,\n        \"title\": null,\n        \"accountNumber\": null,\n        \"dotLoopID\": null,\n        \"eRELOID\": null,\n        \"skySlopeID\": null,\n        \"crestID\": null,\n        \"feedID\": null,\n        \"showOnInternet\": null,\n        \"isFullTime\": null,\n        \"companyStaffGUID\": null,\n        \"agentTeamId\": null,\n        \"exclude\": null,\n        \"priorProduction\": 0,\n        \"priorVolume\": 0,\n        \"priorSides\": 0,\n        \"priorNet\": 0,\n        \"isIntercompany\": false,\n        \"displayName\": null,\n        \"brandName\": null,\n        \"routingNumber\": null,\n        \"bankAccountNumber\": null,\n        \"createDate\": \"2019-04-02T17:55:15.667\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": null,\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"lwid\": null,\n        \"lW_EMPLID\": null,\n        \"corporateTaxId\": null,\n        \"corporationStartDate\": null,\n        \"corporationEndDate\": null,\n        \"notifyPropertyMsg\": false,\n        \"notifyContactMsg\": false,\n        \"notifyPropertyDoc\": false,\n        \"notifyContactDoc\": false,\n        \"billingNotes\": null,\n        \"isDirectDepositEnabled\": false\n    }\n]"}],"_postman_id":"82a91493-184b-4dc7-85ed-76788af13ca0"},{"name":"Person Details","id":"c0a13493-4dbc-49e3-8e24-0e1f6953df67","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://{{base_url}}/api/person/?personId={{personId}}","description":"<p>This Resource will allow you to get the detailed information for a specific person filtered by id.</p>\n","urlObject":{"protocol":"https","path":["api","person",""],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Darwin ID of the person for which data will be retrieved.\nIf not passed, it will not apply this filter.</p>\n","type":"text/plain"},"key":"personId","value":"{{personId}}"}],"variable":[]}},"response":[{"id":"f03ebc86-1242-4347-a77e-c0057fbcb0d8","name":"Person Details","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic {{token}}","description":"This is a value generated with 2 components:\n\n“Basic {userName:token}”\n\nThe Token will be issued to the user after a successful authentication (used can get it from the LOGIN endpoint response when this succeeds) \n\nThis 2-value string needs to be encoded to base64\n"}],"url":{"raw":"https://{{base_url}}/api/person/?personId={{personId}}","protocol":"https","host":["{{base_url}}"],"path":["api","person",""],"query":[{"key":"personId","value":"{{personId}}","description":"Darwin ID of the person for which data will be retrieved.\nIf not passed, it will not apply this filter"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 06 Sep 2021 16:47:38 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"personId\": 59147,\n        \"personName\": \"Roya Nousample\",\n        \"firstName\": \"Roya\",\n        \"lastName\": \"Nousample\",\n        \"companyName\": null,\n        \"personTypeId\": 1368,\n        \"personType\": \"Agent\",\n        \"personAddress\": \"270 Monterey Dr, Naples, FL, 34119\",\n        \"termId\": null,\n        \"emailAddress\": \"roya.nouhi@premiersir.com\",\n        \"expenseJobId\": null,\n        \"incomeJobId\": null,\n        \"officeId\": 19,\n        \"officeGUID\": null,\n        \"office\": \"Dorchester\",\n        \"companyId\": null,\n        \"companyGUID\": null,\n        \"company\": \"Company 1\",\n        \"agentNumber\": null,\n        \"contractStartDate\": null,\n        \"startDate\": null,\n        \"terminatedDate\": null,\n        \"reStartDate\": null,\n        \"planId\": null,\n        \"active\": true,\n        \"leadSourceId\": null,\n        \"salutationId\": null,\n        \"entityTypeId\": null,\n        \"leadGeneratedById\": null,\n        \"entityName\": null,\n        \"sendSurveyFlag\": null,\n        \"callToShow\": null,\n        \"autoDeposit\": null,\n        \"birthDate\": null,\n        \"printedName\": null,\n        \"middleName\": null,\n        \"brandStartDate\": null,\n        \"priorOccupationId\": null,\n        \"educationLevelId\": null,\n        \"specialty\": null,\n        \"genderType\": null,\n        \"priorAffiliationId\": null,\n        \"recruitedByPersonId\": null,\n        \"recruitedByPerson\": null,\n        \"emergencyPersonId\": null,\n        \"emergencyPerson\": null,\n        \"coachedByPersonId\": null,\n        \"coachedByPerson\": null,\n        \"manageByPersonId\": null,\n        \"manageByPerson\": null,\n        \"employeeId\": null,\n        \"customerId\": null,\n        \"atPersonId\": null,\n        \"tfdId\": null,\n        \"anniversaryStartDate\": null,\n        \"anniversaryEndDate\": null,\n        \"cobrokeOfficePersonId\": null,\n        \"cobrokeOfficePerson\": null,\n        \"forteClientId\": null,\n        \"forteAchId\": null,\n        \"forteCcId\": null,\n        \"guid\": null,\n        \"saGuid\": null,\n        \"atguid\": null,\n        \"familiarName\": null,\n        \"mlsId\": null,\n        \"url\": null,\n        \"confirmed\": null,\n        \"balance\": null,\n        \"notes\": null,\n        \"referralNotes\": null,\n        \"commissionNotes\": null,\n        \"referralPercentage\": null,\n        \"referralId\": null,\n        \"referralBrandId\": null,\n        \"referralNetworkId\": null,\n        \"referral\": null,\n        \"assignedPersonId\": null,\n        \"assignedPerson\": null,\n        \"taxId\": \"57-1214865\",\n        \"accountId\": null,\n        \"useCorporate\": null,\n        \"is1099\": null,\n        \"is1099TypeId\": null,\n        \"divisionId\": null,\n        \"userId\": null,\n        \"userName\": null,\n        \"title\": null,\n        \"accountNumber\": null,\n        \"dotLoopID\": null,\n        \"eRELOID\": null,\n        \"skySlopeID\": null,\n        \"crestID\": null,\n        \"feedID\": null,\n        \"showOnInternet\": null,\n        \"isFullTime\": null,\n        \"companyStaffGUID\": null,\n        \"agentTeamId\": null,\n        \"exclude\": null,\n        \"priorProduction\": 0,\n        \"priorVolume\": 0,\n        \"priorSides\": 0,\n        \"priorNet\": 0,\n        \"isIntercompany\": false,\n        \"displayName\": null,\n        \"brandName\": null,\n        \"routingNumber\": null,\n        \"bankAccountNumber\": null,\n        \"createDate\": \"2019-04-02T13:43:00\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": null,\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"lwid\": null,\n        \"lW_EMPLID\": null\n    }\n]"}],"_postman_id":"c0a13493-4dbc-49e3-8e24-0e1f6953df67"},{"name":"Add Person","id":"a80d4bec-5e78-4915-9b2b-ef4be1dad275","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\"firstName\": \"rondal\",\r\n\"lastName\": \"test\",\r\n\"personTypeId\": \"4\",\r\n\"personType\":\"Buyer/Seller\",\r\n\"emailAddress\": \"test@email.com\",\r\n\"startDate\": \"02/15/2019\",\r\n\"active\": 1,\r\n\"officeId\": 2,\r\n\"mlsID\": \"\",\r\n\"middleName\": \"p\",\r\n\"printedName\": \"\",\r\n\"familiarName\": \"\",\r\n \"companyName\": \"\",\r\n\"birthDate\": null,\r\n\"notes\": \"\",\r\n\"referralNotes\": \"\",\r\n\"referralPercentage\": \"\",\r\n\"agentNumber\": \"\",\r\n\"contractStartDate\": \"\",\r\n\"terminatedDate\": \"\",\r\n\"reStartDate\": \"\",\r\n\"entityName\": \"\",\r\n\"sendSurveyFlag\": \"\",\r\n\"callToShow\": \"\",\r\n\"autoDeposit\": \"\",\r\n\"brandStartDate\": \"\",\r\n\"termId\": \"\",\r\n\"planId\": \"\",\r\n\"leadSourceId\": \"\",\r\n\"salutationId\": \"\",\r\n\"entityTypeId\": \"\",\r\n\"leadGeneratedById\": \"\",\r\n\"priorOccupationId\": \"\",\r\n\"educationLevelId\": \"\",\r\n\"genderType\": \"\",\r\n\"priorAffiliationId\": \"\",\r\n\"recruitedByPersonId\": \"\",\r\n\"emergencyPersonId\": \"\",\r\n\"cobrokeOfficePersonId\": \"\",\r\n\"referralId\": \"\",\r\n\"assignedPersonId\": \"\",\r\n\"taxId\": \"\",\r\n\"accountId\": \"\",\r\n\"is1099TypeId\": \"\",\r\n\"divisionId\": \"\",\r\n\"userId\": \"\",\r\n\"agentTeamId\": \"\",\r\n\"referralBrandId\": \"\",\r\n\"referralNetworkId\": \"\",\r\n\"url\": \"\",\r\n\"title\": \"\",\r\n\"balance\": \"\",\r\n\"confirmed\": \"\",\r\n\"useCorporate\": \"\",\r\n\"is1099\": \"\",\r\n\"showOnInternet\": \"\",\r\n\"isFullTime\": \"\",\r\n\"exclude\": \"\",\r\n\"isinterCompany\": 0\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{base_url}}/api/person","description":"<p>This Resource will allow you to create a person record with just the minimal information: first and last name, person type, office and email. It returns back the personId generated</p>\n","urlObject":{"protocol":"https","path":["api","person"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a80d4bec-5e78-4915-9b2b-ef4be1dad275"},{"name":"Edit Person","id":"8af6d181-6d0e-4a95-ba0a-068d59804b9d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{token}}"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\"personId\":93388,\r\n\"personName\":\"Alexis SamPam (Sothebys Florida)\",\r\n\"firstName\":\"Alexis\",\r\n\"lastName\":\"SamPam\",\r\n\"companyName\":\"Sothebys Florida\",\r\n\"personTypeId\":1368,\r\n\"personType\":\"Agent\",\r\n\"personAddress\":null,\r\n\"termId\":173,\r\n\"emailAddress\":\"alexis.smithfrady@premiersir.com\",\r\n\"expenseJobId\":3112,\r\n\"incomeJobId\":3111,\r\n\"officeId\":85,\r\n\"officeGUID\":\"24b7dac7-56b7-4f96-a585-16d5083679d0\",\r\n\"office\":\"Signature - Signature - Plaza\",\r\n\"companyId\":2,\r\n\"companyGUID\":\"38A3AFB2-2B54-4078-9518-25340118A745\",\r\n\"company\":null,\"agentNumber\":null,\r\n\"contractStartDate\":null,\r\n\"startDate\":\"2018-07-09T01:00:00\",\r\n\"terminatedDate\":null,\r\n\"reStartDate\":\"2018-07-09T00:00:00\",\r\n\"planId\":null,\r\n\"nextCommissionPlanId\":null,\r\n\"subplanId\":null,\r\n\"nextCommissionEffectiveDate\":null,\"active\":true,\"leadSourceId\":null,\"salutationId\":null,\"entityTypeId\":null,\"leadGeneratedById\":null,\"entityName\":null,\"sendSurveyFlag\":false,\"callToShow\":false,\"autoDeposit\":true,\"birthDate\":\"1987-07-09T00:00:00\",\"printedName\":\"Alexis Smith Frady\",\"middleName\":null,\"brandStartDate\":null,\"priorOccupationId\":null,\"educationLevelId\":null,\"specialty\":\"R\",\"genderType\":\"F\",\"priorAffiliationId\":null,\"recruitedByPersonId\":null,\"recruitedByPerson\":null,\"emergencyPersonId\":null,\"emergencyPerson\":null,\"coachedByPersonId\":173165,\"coachedByPerson\":\"Albert Livaudais, Jr. (Sothebys Syracuse)\",\"manageByPersonId\":null,\"manageByPerson\":null,\"employeeId\":null,\"customerId\":null,\"atPersonId\":null,\"tfdId\":null,\"anniversaryStartDate\":null,\"anniversaryEndDate\":null,\"cobrokeOfficePersonId\":null,\"cobrokeOfficePerson\":null,\"forteClientId\":null,\"forteAchId\":null,\"forteCcId\":null,\"guid\":\"54be76a4-d103-47c3-b121-288fff4afd58\",\"saGuid\":\"b461ab2c-7936-4567-a226-5ecaf74e4778\",\"atguid\":\"BA17A9A3-5EBD-41E9-8C75-08A41AB7CA09\",\"familiarName\":null,\"mlsId\":\"266511069\",\"url\":null,\"confirmed\":false,\"balance\":null,\"notes\":null,\"referralNotes\":null,\"commissionNotes\":\"\",\"referralPercentage\":null,\"referralId\":null,\"referralBrandId\":null,\"referralNetworkId\":null,\"referral\":null,\"assignedPersonId\":null,\"assignedPerson\":null,\"taxId\":\"81-1012023\",\"accountId\":221,\"useCorporate\":true,\"is1099\":true,\"is1099TypeId\":9494,\"divisionId\":null,\"userId\":null,\"userName\":null,\"title\":null,\"accountNumber\":null,\"dotLoopID\":null,\"eRELOID\":null,\"skySlopeID\":null,\"crestID\":null,\"feedID\":null,\"showOnInternet\":true,\"isFullTime\":true,\"companyStaffGUID\":null,\"agentTeamId\":null,\"exclude\":false,\"priorProduction\":6260150.00,\"priorVolume\":0.00,\"priorSides\":0.00,\"priorNet\":10.00,\"isIntercompany\":false,\"displayName\":null,\"brandName\":null,\"routingNumber\":null,\"bankAccountNumber\":null,\"createDate\":\"2019-04-02T17:54:00\",\"createdBy\":\"ATBIAPP\\\\lucho\",\"modifyDate\":\"2022-10-03T15:59:35.52\",\"modifyBy\":\"ATAngel\",\"deleteDate\":null,\"deletedBy\":null,\"LWID\":null,\"LW_EMPLID\":null,\"corporateTaxId\":null,\"corporationStartDate\":null,\"corporationEndDate\":null,\"notifyPropertyMsg\":false,\"notifyContactMsg\":false,\"notifyPropertyDoc\":false,\"notifyContactDoc\":false,\"billingNotes\":null}","options":{"raw":{"language":"json"}}},"url":"https://{{base_url}}/api/person?id={{personId}}&propIds={{propIds}}&updateOption={{updateOption}}&autoTerminatePositions={{autoTerminatePositions}}","description":"<p>StartFragment</p>\n<p>This resource will allow you to update a person, indicating the id of the record in the system.</p>\n<p>EndFragment</p>\n","urlObject":{"protocol":"https","path":["api","person"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Used to filter by a specific person record ID in Darwin.</p>\n","type":"text/plain"},"key":"id","value":"{{personId}}"},{"description":{"content":"<p>List of properties separated by commas used with the updateOption parameter for updating or not the updated division field in the voucher and invoices records.</p>\n<p>If this parameter is not provided, \"\" will be assumed</p>\n","type":"text/plain"},"key":"propIds","value":"{{propIds}}"},{"description":{"content":"<p>Determines whether or not to update the updated division field in voucher and invoices records from Darwin.</p>\n<p>Possible values are 0, 1, or 2.</p>\n<ul>\n<li>0 means don't update anything</li>\n<li>1 means to update the records with no division assigned </li>\n<li>2 means updating all the records</li>\n</ul>\n<p>If this parameter is not provided, 0 will be assumed</p>\n","type":"text/plain"},"key":"updateOption","value":"{{updateOption}}"},{"description":{"content":"<p>Determines whether or not to update the deactivateDate field of the personPosition table of the updated person.</p>\n<p>Possible values are 0 or 1.</p>\n<ul>\n<li>0 means don't update anything</li>\n<li>1 means to update the deactivateDate field with the updated terminatedDate field</li>\n</ul>\n<p>If this parameter is not provided, 0 will be assumed</p>\n","type":"text/plain"},"key":"autoTerminatePositions","value":"{{autoTerminatePositions}}"}],"variable":[]}},"response":[],"_postman_id":"8af6d181-6d0e-4a95-ba0a-068d59804b9d"},{"name":"Add Person phone","id":"539cc6d1-29f6-421f-afb2-842e8388c5a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\"personId\": 15,\r\n\"phoneTypeId\": 110,\r\n\"phoneNumber\": \"9709207360\",\r\n\"phoneExtension\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{base_url}}/api/person/phone","description":"<p>This resource will allow you to add a phone number to a person. Indicating the personId of the person record, the typeId of the phone, the number and/or the extension</p>\n","urlObject":{"protocol":"https","path":["api","person","phone"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"539cc6d1-29f6-421f-afb2-842e8388c5a2"},{"name":"Add Person license","id":"5e48a56c-c281-46e5-bd9d-55c63b4aea36","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\"personId\": 15,\r\n\"licenseTypeId\": 277,\r\n\"state\":\"CO\",\r\n\"licenseNumber\": \"FA.100070000\",\r\n\"issuedDate\": \"07/15/2016\",\r\n\"expirationDate\": \"07/15/2019\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{base_url}}/api/person/license","description":"<p>This resource will allow you to add a license to a person. Indicating the personId of the person record, the typeId of the License, the state, the issue date and the expiration date</p>\n","urlObject":{"protocol":"https","path":["api","person","license"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5e48a56c-c281-46e5-bd9d-55c63b4aea36"},{"name":"Delete Person phone","id":"904b3c29-7505-49f2-8866-3e2e7115b32b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[]},"isInherited":false},"method":"DELETE","header":[],"url":"https://{{base_url}}/api/person/phone/{{id}}","description":"<p>This resource will allow you to delete a phone number to a person, indicating the id of the record in the system.</p>\n","urlObject":{"protocol":"https","path":["api","person","phone","{{id}}"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"904b3c29-7505-49f2-8866-3e2e7115b32b"},{"name":"Delete Person license","id":"4360d88e-d8d7-4745-a850-9c4056269224","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[]},"isInherited":false},"method":"DELETE","header":[],"url":"https://{{base_url}}/api/person/license/{{id}}","description":"<p>This resource will allow you to delete a license to a person, indicating the id of the record in the system.</p>\n","urlObject":{"protocol":"https","path":["api","person","license","{{id}}"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4360d88e-d8d7-4745-a850-9c4056269224"},{"name":"People balance","event":[{"listen":"prerequest","script":{"id":"914b28d0-bc96-4a97-8600-fd867e1758ca","exec":["pm.environment.set(\"personTypeID\",0);\r","pm.environment.set(\"personName\",\"\");\r","pm.environment.set(\"pageIndex\",\"0\");\r","pm.environment.set(\"pageSize\",\"10\");"],"type":"text/javascript"}}],"id":"7292833a-2b5a-42c1-9f6a-11384c22cbe8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://{{base_url}}/api/person/manage?officeID={{officeId}}&personTypeID={{personTypeID}}&pageIndex={{pageIndex}}&pageSize={{pageSize}}&person={{personName}}","description":"<p>StartFragment</p>\n<p>This Resource will allow you to pull the list of people filtered by different parameters such as person type, office,etc; also it will allow you to get additional information for each person, such as totalDue, etc.</p>\n<p>EndFragment</p>\n","urlObject":{"protocol":"https","path":["api","person","manage"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Darwin internal ID of the person's office.\nUsed to filter by people in a specific office\nBy default it is “0”.\nIf left with “0”, this filter is not applied.</p>\n","type":"text/plain"},"key":"officeID","value":"{{officeId}}"},{"description":{"content":"<p>Darwin ID of the type of person.\nUsed to filter by a specific person type\nBy default it is “0”.\nIf left with “0”, this filter is not applied.</p>\n","type":"text/plain"},"key":"personTypeID","value":"{{personTypeID}}"},{"description":{"content":"<p>Represents the page number that will be retrieved. Starts in 1.\nIf nothing is passed, it will assume page zero.\nIf -1 is passed, it will retrieve all records at once</p>\n","type":"text/plain"},"key":"pageIndex","value":"{{pageIndex}}"},{"description":{"content":"<p>Determines the number of records that will be retrieved on every request. Could be any value from 1 to 100\nDefault value is 100, returns maximum of 100 records</p>\n","type":"text/plain"},"key":"pageSize","value":"{{pageSize}}"},{"description":{"content":"<p>The person name used to filter on.\nIf used, it will filter the results to only people when the person name contains this value.</p>\n","type":"text/plain"},"key":"person","value":"{{personName}}"}],"variable":[]}},"response":[],"_postman_id":"7292833a-2b5a-42c1-9f6a-11384c22cbe8"},{"name":"Person Total","id":"d9b0a01f-2854-43b4-a79a-c2a06a42f7f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://{{base_url}}/api/person/total?personID={{personId}}","description":"<p>This Resource allows you to get detailed information on the totals, are custom formulas that calculate an aggregation based on multiple conditions, for a specific person based on the id parameter.</p>\n","urlObject":{"protocol":"https","path":["api","person","total"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Darwin ID of the person for which data will be retrieved.\nIf not passed, it will not apply this filter.</p>\n","type":"text/plain"},"key":"personID","value":"{{personId}}"}],"variable":[]}},"response":[{"id":"4ee93083-6f56-4a19-8e64-e5a78b528019","name":"Person Total","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{base_url}}/api/person/total?personID={{personId}}","protocol":"https","host":["{{base_url}}"],"path":["api","person","total"],"query":[{"key":"personID","value":"{{personId}}","description":"Darwin ID of the person for which data will be retrieved.\nIf not passed, it will not apply this filter."}]}},"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":"Server","value":"Kestrel"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 19 Apr 2023 15:44:27 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"personTotalId\": 57118,\n        \"personId\": 358017,\n        \"totalId\": 128,\n        \"totalName\": \"Company $ YTD\",\n        \"balance\": 0,\n        \"isUpdated\": false,\n        \"isInCheckTemplate\": false,\n        \"companyId\": 0,\n        \"officeId\": 0,\n        \"planId\": 0,\n        \"isForTerminated\": false,\n        \"planName\": null,\n        \"format\": null,\n        \"createDate\": \"2023-03-10T13:45:40.93\",\n        \"createdBy\": \"saDeploy\",\n        \"modifyDate\": null,\n        \"modifyBy\": null,\n        \"openingBalance\": 0,\n        \"balanceEndDate\": null\n    },\n    {\n        \"personTotalId\": 57119,\n        \"personId\": 358017,\n        \"totalId\": 132,\n        \"totalName\": \"Company $ this year\",\n        \"balance\": 0,\n        \"isUpdated\": false,\n        \"isInCheckTemplate\": false,\n        \"companyId\": 0,\n        \"officeId\": 0,\n        \"planId\": 0,\n        \"isForTerminated\": false,\n        \"planName\": null,\n        \"format\": null,\n        \"createDate\": \"2023-03-10T13:48:18.3\",\n        \"createdBy\": \"saDeploy\",\n        \"modifyDate\": null,\n        \"modifyBy\": null,\n        \"openingBalance\": 0,\n        \"balanceEndDate\": null\n    },\n    {\n        \"personTotalId\": 57120,\n        \"personId\": 358017,\n        \"totalId\": 288,\n        \"totalName\": \"100  test 1 te copy\",\n        \"balance\": 0,\n        \"isUpdated\": false,\n        \"isInCheckTemplate\": false,\n        \"companyId\": 0,\n        \"officeId\": 0,\n        \"planId\": 0,\n        \"isForTerminated\": false,\n        \"planName\": null,\n        \"format\": null,\n        \"createDate\": \"2023-03-14T09:53:36.25\",\n        \"createdBy\": \"saDeploy\",\n        \"modifyDate\": null,\n        \"modifyBy\": null,\n        \"openingBalance\": 0,\n        \"balanceEndDate\": null\n    }\n]"}],"_postman_id":"d9b0a01f-2854-43b4-a79a-c2a06a42f7f9"},{"name":"Person CustomFields","id":"699dbaa4-76db-41da-97bf-cd0ad5d99852","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://{{base_url}}/api/person/custom?personID={{personId}}","description":"<p>This Resource allows you to get detailed information on the custom fields registered for a specific person based on the id parameter.</p>\n<p>EndFragmen</p>\n","urlObject":{"protocol":"https","path":["api","person","custom"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Darwin ID of the person for which data will be retrieved.\nIf not passed, it will not apply this filter.</p>\n","type":"text/plain"},"key":"personID","value":"{{personId}}"}],"variable":[]}},"response":[{"id":"6b05db3e-dd66-46cd-bc05-9c1f39bd46ae","name":"Person CustomFields","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{base_url}}/api/person/custom?personID={{personId}}","protocol":"https","host":["{{base_url}}"],"path":["api","person","custom"],"query":[{"key":"personID","value":"{{personId}}","description":"Darwin ID of the person for which data will be retrieved.\nIf not passed, it will not apply this filter."}]}},"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":"Server","value":"Kestrel"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 19 Apr 2023 15:30:00 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"customFieldId\": 0,\n        \"personId\": 119425,\n        \"fieldId\": 76,\n        \"fieldLabel\": \"Training Test #\",\n        \"fieldValue\": null\n    },\n    {\n        \"customFieldId\": 0,\n        \"personId\": 119425,\n        \"fieldId\": 77,\n        \"fieldLabel\": \"test\",\n        \"fieldValue\": null\n    },\n    {\n        \"customFieldId\": 0,\n        \"personId\": 119425,\n        \"fieldId\": 78,\n        \"fieldLabel\": \"field 3\",\n        \"fieldValue\": null\n    },\n    {\n        \"customFieldId\": 0,\n        \"personId\": 119425,\n        \"fieldId\": 79,\n        \"fieldLabel\": \"field 4\",\n        \"fieldValue\": null\n    },\n    {\n        \"customFieldId\": 0,\n        \"personId\": 119425,\n        \"fieldId\": 80,\n        \"fieldLabel\": \"field 5\",\n        \"fieldValue\": null\n    },\n    {\n        \"customFieldId\": 0,\n        \"personId\": 119425,\n        \"fieldId\": 81,\n        \"fieldLabel\": \"field 6\",\n        \"fieldValue\": null\n    },\n    {\n        \"customFieldId\": 0,\n        \"personId\": 119425,\n        \"fieldId\": 82,\n        \"fieldLabel\": \"field 7\",\n        \"fieldValue\": null\n    },\n    {\n        \"customFieldId\": 0,\n        \"personId\": 119425,\n        \"fieldId\": 83,\n        \"fieldLabel\": \"field 8\",\n        \"fieldValue\": null\n    },\n    {\n        \"customFieldId\": 0,\n        \"personId\": 119425,\n        \"fieldId\": 84,\n        \"fieldLabel\": \"field 9\",\n        \"fieldValue\": null\n    },\n    {\n        \"customFieldId\": 0,\n        \"personId\": 119425,\n        \"fieldId\": 85,\n        \"fieldLabel\": \"field 10\",\n        \"fieldValue\": null\n    }\n]"}],"_postman_id":"699dbaa4-76db-41da-97bf-cd0ad5d99852"}],"id":"22df5e1d-42a9-4ebc-bc3f-0d50377ad8bf","description":"<p>The <code>Person</code> object allows you to work with all types of people: to get list of different types of people and to add new person entities</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"518b931b-891f-46e0-9852-44dcdb523116","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f42b6766-0ab8-402d-8a53-50d0bf2ee565","type":"text/javascript","exec":[""]}}],"_postman_id":"22df5e1d-42a9-4ebc-bc3f-0d50377ad8bf"},{"name":"Property","item":[{"name":"Property Details","id":"aa299141-a06b-4805-aa14-bcc6c36c0bae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://{{base_url}}/api/property/{{propertyId}}","description":"<p>This Resource will allow you to get all the detailed information for a specific property based on the id parameter.</p>\n","urlObject":{"protocol":"https","path":["api","property","{{propertyId}}"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"28c6db1a-bd43-42f9-be6a-6e81691d8733","name":"Property Details","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Basic {{token}}","description":"This is a value generated with 2 components:\n\n“Basic {userName:token}”\n\nThe Token will be issued to the user after a successful authentication (used can get it from the LOGIN endpoint response when this succeeds) \n\nThis 2-value string needs to be encoded to base64\n"}],"url":"https://{{base_url}}/api/property/{{propertyId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 06 Sep 2021 16:48:14 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"propertyId\": 252,\n    \"propertyAddress\": \"11030 GULFSHORE DR, NAPLES, FL 34108-1745\",\n    \"transactionGUID\": \"274E6438-3347-435E-98EB-0DB4C0FDF52F\",\n    \"transactionId\": \"0003000000000014\",\n    \"person_CustomerId\": 26448,\n    \"person_Customer\": null,\n    \"streetNumber\": \"11030\",\n    \"streetDirection\": null,\n    \"streetName\": \"GULFSHORE\",\n    \"streetDesignation\": \"DR\",\n    \"streetSuffix\": null,\n    \"suiteAptNumber\": \"401\",\n    \"buildingFloorNumber\": null,\n    \"city\": \"Naples\",\n    \"state\": \"FL\",\n    \"zip\": \"34108-1745\",\n    \"statusId\": 9141,\n    \"status\": \"Processed\",\n    \"statusCode\": \"CL\",\n    \"statusLocked\": false,\n    \"excludeList\": false,\n    \"excludeSell\": false,\n    \"excludeDuplicate\": false,\n    \"special\": false,\n    \"shortSale\": false,\n    \"forclosure\": false,\n    \"showOnInternet\": true,\n    \"showAddressOnInternet\": false,\n    \"showPriceOnInternet\": false,\n    \"hideListPriceOnWeb\": false,\n    \"condo\": false,\n    \"offset\": false,\n    \"regionalPost\": false,\n    \"condoFee\": 0,\n    \"mlsNumber1\": \"211002521\",\n    \"mlsNumber2\": null,\n    \"qaControl1\": null,\n    \"qaControl2\": \"0003000000000014\",\n    \"brokerReferenceNo\": null,\n    \"escrowNo\": null,\n    \"schemaType\": \"SaleTransaction\",\n    \"listDate\": \"2009-01-22T00:00:00\",\n    \"expiredDate\": \"2012-01-31T00:00:00\",\n    \"withdrawnDate\": null,\n    \"pendingDate\": \"2011-12-08T00:00:00\",\n    \"estimatedClosingDate\": \"2011-12-30T00:00:00\",\n    \"cancelDate\": null,\n    \"cancelReasonId\": null,\n    \"closeDate\": \"2011-12-30T00:00:00\",\n    \"processedDate\": \"2012-01-04T00:00:00\",\n    \"sellerEnglishSurvey\": false,\n    \"sellerDirectMail\": false,\n    \"sellerSendSurveyDelivery\": false,\n    \"sellerSurveyDeliveryMethod\": \"EMAIL\",\n    \"buyerEnglishSurvey\": false,\n    \"buyerDirectMail\": false,\n    \"buyerSendSurveyDelivery\": false,\n    \"buyerSurveyDeliveryMethod\": \"EMAIL\",\n    \"keyNumber\": null,\n    \"shackleCode\": null,\n    \"notes\": \" Magnificent bay views. Private deeded beach access across the street & within walking distance to State Park. Located between the Bay waters & the Gulf of Mexico, you will enjoy all the wonderful boating & beach lifestyle. This spacious, light and bright\",\n    \"showingInstructionsInternal\": \" Call Listing Office,Vacant\",\n    \"directionsInternal\": \" North end of Vanderbilt Beach on gulfshore *Take Immmokalee to Gulfshore turn left, first development on left.\",\n    \"alternateListOfficeId\": null,\n    \"alternateSellOfficeId\": null,\n    \"yearBuilt\": \"1982\",\n    \"lastSoldDate\": null,\n    \"taxYear\": \"2011\",\n    \"taxRollNumber\": null,\n    \"annualTaxes\": \"3947.75\",\n    \"numberOfAcres\": null,\n    \"lotSize\": null,\n    \"lotSizeUnitID\": null,\n    \"squareFeet\": \"1472\",\n    \"squareFeetUnitID\": null,\n    \"levelsCount\": null,\n    \"sequenceNumber\": \"0\",\n    \"transportation\": null,\n    \"neigborhoodName\": \"\",\n    \"propertyLocation\": \"VANDERBILT YACHT & RACQUET CLUB #401\",\n    \"bedrooms\": \"2\",\n    \"escrowHeld\": \"0.00\",\n    \"referralTypeId\": null,\n    \"numOfRooms\": null,\n    \"parkingSpaces\": null,\n    \"referralType\": null,\n    \"typeCode\": \"R\",\n    \"classificationId\": null,\n    \"propertyTypeId\": 1717,\n    \"incomeTypeID\": null,\n    \"propertyStyleId\": null,\n    \"transactionTypeId\": null,\n    \"propertyUseId\": 1771,\n    \"developmentId\": null,\n    \"appraisalDate\": null,\n    \"inspectionDate\": null,\n    \"applicationDate\": null,\n    \"loanRate\": 0,\n    \"loanAmount\": null,\n    \"financingTypeId\": null,\n    \"listingPrice\": 379990,\n    \"sellingPrice\": 350000,\n    \"commissionPrice\": 350000,\n    \"isFlatCommission\": false,\n    \"reactivate\": null,\n    \"listCommRate\": 0.03,\n    \"listCommission\": 10500,\n    \"sellCommRate\": 0,\n    \"sellCommission\": 0,\n    \"totalCommission\": 21000,\n    \"totalCommRate\": 0.06,\n    \"listingGUID\": null,\n    \"dashTransactionGUID\": null,\n    \"payCobroke\": false,\n    \"refListRate\": 0,\n    \"refListCommission\": 0,\n    \"refSellRate\": 0,\n    \"refSellCommission\": 0,\n    \"companyIncome\": 10500,\n    \"balanceDue\": 10500,\n    \"trans1\": 0,\n    \"trans2\": 0,\n    \"reimbursedDeposit\": null,\n    \"additionalincome\": null,\n    \"propId\": 445,\n    \"firstTimeBuyer\": false,\n    \"confirmed\": false,\n    \"trType\": \"OL\",\n    \"rentalFrequency\": null,\n    \"fullBaths\": null,\n    \"halfBathsTotal\": null,\n    \"threeQuarterBathsTotal\": null,\n    \"quarterBathsTotal\": null,\n    \"companyID\": 1,\n    \"companyName\": \"Company 1\",\n    \"ourList\": true,\n    \"ourSell\": false,\n    \"listAgentID\": 52446,\n    \"sellAgentID\": null,\n    \"listAgent\": null,\n    \"sellAgent\": null,\n    \"listOffice\": null,\n    \"sellOffice\": null,\n    \"leadGeneratedByBuyer\": null,\n    \"leadGeneratedBySeller\": \"AG\",\n    \"leadSourceBuyer\": null,\n    \"leadSourceSeller\": \"Non Commissionable Sale ( Excluded )\",\n    \"cobrokeCommRate\": 0.03,\n    \"cobrokeCommission\": 10500,\n    \"subDivision\": null,\n    \"transactionNotes\": null,\n    \"excludeFromSubmission\": false,\n    \"needRecalc\": false,\n    \"expireDateCalculated\": false,\n    \"feedID\": null,\n    \"feedName\": null,\n    \"dotLoopID\": null,\n    \"eRELOID\": null,\n    \"skySlopeID\": null,\n    \"appFileID\": null,\n    \"mlsListingRID\": null,\n    \"submitID\": null,\n    \"submitDate\": null,\n    \"resultType\": null,\n    \"resultDate\": null,\n    \"resultMessage\": null,\n    \"trade_LW\": 0,\n    \"listing_LW\": 0,\n    \"photoCount\": 0,\n    \"addedManuallyPhotoCount\": 0,\n    \"pulledFromMLSPhotoCount\": 0,\n    \"photoLastUpdated\": \"0001-01-01T00:00:00\",\n    \"addedManuallyPhotoLastUpdated\": \"0001-01-01T00:00:00\",\n    \"pulledFromMLSPhotoLastUpdated\": \"0001-01-01T00:00:00\",\n    \"createDate\": \"2011-09-27T11:55:29\",\n    \"createdBy\": \"ATBIAPP\\\\lucho\",\n    \"modifyDate\": \"2019-04-02T13:47:54.55\",\n    \"modifyBy\": null,\n    \"deleteDate\": null,\n    \"deletedBy\": null,\n    \"isMiscIncome\": false,\n    \"isOtherIncome\": false,\n    \"atGUID\": \"860EE0CB-9345-4412-8800-A00198F9B05E\",\n    \"rulesEnabled\": true,\n    \"rulesToValidate\": null,\n    \"agentTeamListId\": null,\n    \"agentTeamSellId\": null,\n    \"agents\": null,\n    \"referrals\": null,\n    \"thirdPartyPayments\": null,\n    \"overrides\": null,\n    \"extraVouchers\": null,\n    \"reimbursements\": null,\n    \"invoice\": null,\n    \"invoiceDetail\": null,\n    \"agentVouchers\": null,\n    \"agentVouchersDetail\": null,\n    \"referralVouchers\": null,\n    \"referralVouchersDetail\": null,\n    \"thirdPartyVouchers\": null,\n    \"thirdPartyVouchersDetail\": null,\n    \"overrideVouchers\": null,\n    \"overrideVouchersDetail\": null,\n    \"reimbursementVouchers\": null,\n    \"reimbursementVouchersDetail\": null,\n    \"extraVouchersMain\": null,\n    \"extraVouchersDetail\": null,\n    \"billDeductInvoice\": null\n}"}],"_postman_id":"aa299141-a06b-4805-aa14-bcc6c36c0bae"},{"name":"Property Search","id":"e54841de-ac23-438e-8e4d-38289c4a9378","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://{{base_url}}/api/property?companyId={{companyId}}&filter={{filter}}&address={{address}}&mls={{mls}}&propId={{propId}}&trType={{trType}}&statusId={{statusId}}&propertyTypeId={{propertyTypeId}}&pageIndex={{pageIndex}}&pageSize={{pageSize}}&custom={{customCase}}&withTrash={{withTrash}}&statusCode={{statusCode}}","description":"<p>This Resource will allow you to pull all basics information from the list of properties filtered by different parameters such as companyId, address, mls, date, statusId, etc.</p>\n","urlObject":{"protocol":"https","path":["api","property"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Darwin internal ID of the company (legal entity) to filter on.</p>\n<p>If not passed, properties from all legal entities will be retrieved.</p>\n<p>If used together with the officeID parameter, it will retrieve all properties within a given office within a given company</p>\n","type":"text/plain"},"key":"companyId","value":"{{companyId}}"},{"description":{"content":"<p>If used, it will filter the results to only properties when the address or mls data contains this value.</p>\n","type":"text/plain"},"key":"filter","value":"{{filter}}"},{"description":{"content":"<p>The address for a property filter on.</p>\n<p>If used, it will filter the results to only properties when the address contains this value.</p>\n","type":"text/plain"},"key":"address","value":"{{address}}"},{"description":{"content":"<p>The mls for a property filter on.</p>\n<p>If used, it will filter the results to only properties when the mls contains this value.</p>\n","type":"text/plain"},"key":"mls","value":"{{mls}}"},{"description":{"content":"<p>Used to filter by a specific propId in properties.</p>\n<p>By default it is “”.</p>\n<p>If left with “”, this filter is not applied.</p>\n","type":"text/plain"},"key":"propId","value":"{{propId}}"},{"description":{"content":"<p>Used to filter by a specific trType in properties.</p>\n<p>By default it is “”.</p>\n<p>If left with “”, this filter is not applied.</p>\n","type":"text/plain"},"key":"trType","value":"{{trType}}"},{"description":{"content":"<p>Used to filter by a specific status record ID in properties. </p>\n<p>By default it is “0”.</p>\n<p>If left with “0”, this filter is not applied.</p>\n","type":"text/plain"},"key":"statusId","value":"{{statusId}}"},{"description":{"content":"<p>Used to filter by a specific property Type record ID in properties.</p>\n<p>By default it is “0”.</p>\n<p>If left with “0”, this filter is not applied.</p>\n","type":"text/plain"},"key":"propertyTypeId","value":"{{propertyTypeId}}"},{"description":{"content":"<p>Represents the page number that will be retrieved. Starts in zero.\nIf nothing is passed, it will assume page zero.\nIf -1 is passed, it will retrieve all records at once.</p>\n","type":"text/plain"},"key":"pageIndex","value":"{{pageIndex}}"},{"description":{"content":"<p>Determines the number of property entries that will be retrieved on every request. Could be any value from 1 to 100</p>\n","type":"text/plain"},"key":"pageSize","value":"{{pageSize}}"},{"description":{"content":"<p>Used to filter by a specific custom record in properties. </p>\n<p>By default it is “all”.</p>\n","type":"text/plain"},"key":"custom","value":"{{customCase}}"},{"description":{"content":"<p>Used to filter deleted properties records from Darwin. Possible values are 1 or 0.</p>\n<ul>\n<li>1 means the results to show all Darwin properties</li>\n<li>0 means the results to show only Darwin properties not deleted.</li>\n</ul>\n","type":"text/plain"},"key":"withTrash","value":"{{withTrash}}"},{"description":{"content":"<p>Used to filter by a specific status code in properties. </p>\n<p>By default it is “”.</p>\n<p>If left with “”, this filter is not applied.</p>\n","type":"text/plain"},"key":"statusCode","value":"{{statusCode}}"}],"variable":[]}},"response":[{"id":"570a2a41-3b6d-4ffc-a7a4-9e4f69a871dc","name":"Property Search","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Basic {{token}}","description":"This is a value generated with 2 components:\n\n“Basic `{userName:token}`”\n\nThe Token will be issued to the user after a successful authentication (used can get it from the LOGIN endpoint response when this succeeds)\n \nThis 2-value string needs to be encoded to base64\n"}],"url":{"raw":"https://{{base_url}}/api/property?companyId={{companyId}}&filter={{filter}}&address={{address}}&mls={{mls}}&propId={{propId}}&trType={{trType}}&statusId={{statusId}}&propertyTypeId={{propertyTypeId}}&pageIndex={{pageIndex}}&pageSize={{pageSize}}&sortedBy={{sortedBy}}&custom={{customCase}}&withTrash={{withTrash}}&statusCode={{statusCode}}","protocol":"https","host":["{{base_url}}"],"path":["api","property"],"query":[{"key":"companyId","value":"{{companyId}}","description":"Darwin internal ID of the company (legal entity) to filter on.\n\nIf not passed, properties from all legal entities will be retrieved.\n\nIf used together with the officeID parameter, it will retrieve all properties within a given office within a given company"},{"key":"filter","value":"{{filter}}","description":"If used, it will filter the results to only properties when the address or mls data contains this value."},{"key":"address","value":"{{address}}","description":"The address for a property filter on.\n\nIf used, it will filter the results to only properties when the address contains this value."},{"key":"mls","value":"{{mls}}","description":"The mls for a property filter on.\n\nIf used, it will filter the results to only properties when the mls contains this value."},{"key":"propId","value":"{{propId}}","description":"Used to filter by a specific propId in properties. By default it is “”.\nIf left with “”, this filter is not applied."},{"key":"trType","value":"{{trType}}","description":"Used to filter by a specific trType in properties. By default it is “”.\nIf left with “”, this filter is not applied."},{"key":"statusId","value":"{{statusId}}","description":"Used to filter by a specific status record ID in properties. By default it is “0”.\n\nIf left with “0”, this filter is not applied."},{"key":"propertyTypeId","value":"{{propertyTypeId}}","description":"Used to filter by a specific property Type record ID in properties. By default it is “0”.\nIf left with “0”, this filter is not applied."},{"key":"pageIndex","value":"{{pageIndex}}","description":"Represents the page number that will be retrieved. Starts in zero.\n\nIf nothing is passed, it will assume page zero.\n\nIf -1 is passed, it will retrieve all records at once"},{"key":"pageSize","value":"{{pageSize}}","description":"Determines the number of properties that will be retrieved on every request. Could be any value from 1 to 100\n\nDefault value is 100, returns maximum of 100 records"},{"key":"sortedBy","value":"{{sortedBy}}","description":"Used to sort by a specific field  in property records. By default it is “propertyAddress”."},{"key":"custom","value":"{{customCase}}","description":"Used to filter by a specific custom record in properties. By default it is “all”."},{"key":"withTrash","value":"{{withTrash}}","description":"Used to filter deleted properties records from Darwin. Possible values are 1 or 0.\n\n* 1 means the results to show all Darwin properties\n* 0 means the results to show only Darwin properties not deleted."},{"key":"statusCode","value":"{{statusCode}}","description":"Used to filter by a specific status code in properties. By default it is “”.\nIf left with “”, this filter is not applied."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 13 Sep 2021 15:49:16 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"propertyId\": 12155,\n        \"propertyAddress\": \"0 Marco Island Rental, Marco Island, FL 34145\",\n        \"transactionGUID\": null,\n        \"transactionId\": null,\n        \"person_CustomerId\": null,\n        \"person_Customer\": null,\n        \"streetNumber\": null,\n        \"streetDirection\": null,\n        \"streetName\": null,\n        \"streetDesignation\": null,\n        \"streetSuffix\": null,\n        \"suiteAptNumber\": null,\n        \"buildingFloorNumber\": null,\n        \"city\": null,\n        \"state\": null,\n        \"zip\": null,\n        \"statusId\": 9141,\n        \"status\": \"Processed\",\n        \"statusCode\": \"CL\",\n        \"statusLocked\": false,\n        \"excludeList\": false,\n        \"excludeSell\": false,\n        \"excludeDuplicate\": false,\n        \"special\": false,\n        \"shortSale\": false,\n        \"forclosure\": false,\n        \"showOnInternet\": false,\n        \"showAddressOnInternet\": false,\n        \"showPriceOnInternet\": false,\n        \"hideListPriceOnWeb\": false,\n        \"condo\": false,\n        \"offset\": false,\n        \"regionalPost\": false,\n        \"condoFee\": null,\n        \"mlsNumber1\": null,\n        \"mlsNumber2\": null,\n        \"qaControl1\": null,\n        \"qaControl2\": null,\n        \"brokerReferenceNo\": null,\n        \"escrowNo\": null,\n        \"schemaType\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"estimatedClosingDate\": null,\n        \"cancelDate\": null,\n        \"cancelReasonId\": null,\n        \"closeDate\": null,\n        \"processedDate\": null,\n        \"sellerEnglishSurvey\": false,\n        \"sellerDirectMail\": false,\n        \"sellerSendSurveyDelivery\": false,\n        \"sellerSurveyDeliveryMethod\": null,\n        \"buyerEnglishSurvey\": false,\n        \"buyerDirectMail\": false,\n        \"buyerSendSurveyDelivery\": false,\n        \"buyerSurveyDeliveryMethod\": null,\n        \"keyNumber\": null,\n        \"shackleCode\": null,\n        \"notes\": null,\n        \"showingInstructionsInternal\": null,\n        \"directionsInternal\": null,\n        \"alternateListOfficeId\": null,\n        \"alternateSellOfficeId\": null,\n        \"yearBuilt\": null,\n        \"lastSoldDate\": null,\n        \"taxYear\": null,\n        \"taxRollNumber\": null,\n        \"annualTaxes\": null,\n        \"numberOfAcres\": null,\n        \"lotSize\": null,\n        \"lotSizeUnitID\": null,\n        \"squareFeet\": null,\n        \"squareFeetUnitID\": null,\n        \"levelsCount\": null,\n        \"sequenceNumber\": null,\n        \"transportation\": null,\n        \"neigborhoodName\": null,\n        \"propertyLocation\": null,\n        \"bedrooms\": null,\n        \"escrowHeld\": null,\n        \"referralTypeId\": null,\n        \"numOfRooms\": null,\n        \"parkingSpaces\": null,\n        \"referralType\": null,\n        \"typeCode\": null,\n        \"classificationId\": null,\n        \"propertyTypeId\": null,\n        \"incomeTypeID\": null,\n        \"propertyStyleId\": null,\n        \"transactionTypeId\": null,\n        \"propertyUseId\": null,\n        \"developmentId\": null,\n        \"appraisalDate\": null,\n        \"inspectionDate\": null,\n        \"applicationDate\": null,\n        \"loanRate\": null,\n        \"loanAmount\": null,\n        \"financingTypeId\": null,\n        \"listingPrice\": 0,\n        \"sellingPrice\": 0,\n        \"commissionPrice\": 0,\n        \"isFlatCommission\": false,\n        \"reactivate\": null,\n        \"listCommRate\": 0,\n        \"listCommission\": 0,\n        \"sellCommRate\": 0,\n        \"sellCommission\": 0,\n        \"totalCommission\": 0,\n        \"totalCommRate\": 0,\n        \"listingGUID\": null,\n        \"dashTransactionGUID\": null,\n        \"payCobroke\": false,\n        \"refListRate\": 0,\n        \"refListCommission\": 0,\n        \"refSellRate\": 0,\n        \"refSellCommission\": 0,\n        \"companyIncome\": null,\n        \"balanceDue\": null,\n        \"trans1\": null,\n        \"trans2\": null,\n        \"reimbursedDeposit\": null,\n        \"additionalincome\": null,\n        \"propId\": 17593,\n        \"firstTimeBuyer\": false,\n        \"confirmed\": false,\n        \"trType\": null,\n        \"rentalFrequency\": null,\n        \"fullBaths\": null,\n        \"halfBathsTotal\": null,\n        \"threeQuarterBathsTotal\": null,\n        \"quarterBathsTotal\": null,\n        \"companyID\": 1,\n        \"companyName\": \"Company 1\",\n        \"ourList\": false,\n        \"ourSell\": false,\n        \"listAgentID\": null,\n        \"sellAgentID\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"leadGeneratedByBuyer\": null,\n        \"leadGeneratedBySeller\": null,\n        \"leadSourceBuyer\": null,\n        \"leadSourceSeller\": null,\n        \"cobrokeCommRate\": 0,\n        \"cobrokeCommission\": 0,\n        \"subDivision\": null,\n        \"transactionNotes\": null,\n        \"excludeFromSubmission\": false,\n        \"needRecalc\": false,\n        \"expireDateCalculated\": false,\n        \"feedID\": null,\n        \"feedName\": null,\n        \"dotLoopID\": null,\n        \"eRELOID\": null,\n        \"skySlopeID\": null,\n        \"appFileID\": null,\n        \"mlsListingRID\": null,\n        \"submitID\": null,\n        \"submitDate\": null,\n        \"resultType\": null,\n        \"resultDate\": null,\n        \"resultMessage\": null,\n        \"trade_LW\": 0,\n        \"listing_LW\": 0,\n        \"photoCount\": 0,\n        \"addedManuallyPhotoCount\": 0,\n        \"pulledFromMLSPhotoCount\": 0,\n        \"photoLastUpdated\": \"0001-01-01T00:00:00\",\n        \"addedManuallyPhotoLastUpdated\": \"0001-01-01T00:00:00\",\n        \"pulledFromMLSPhotoLastUpdated\": \"0001-01-01T00:00:00\",\n        \"createDate\": \"2015-09-01T13:48:41\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": null,\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"isMiscIncome\": false,\n        \"isOtherIncome\": false,\n        \"atGUID\": null,\n        \"rulesEnabled\": false,\n        \"rulesToValidate\": null,\n        \"agentTeamListId\": null,\n        \"agentTeamSellId\": null,\n        \"agents\": null,\n        \"referrals\": null,\n        \"thirdPartyPayments\": null,\n        \"overrides\": null,\n        \"extraVouchers\": null,\n        \"reimbursements\": null,\n        \"invoice\": null,\n        \"invoiceDetail\": null,\n        \"agentVouchers\": null,\n        \"agentVouchersDetail\": null,\n        \"referralVouchers\": null,\n        \"referralVouchersDetail\": null,\n        \"thirdPartyVouchers\": null,\n        \"thirdPartyVouchersDetail\": null,\n        \"overrideVouchers\": null,\n        \"overrideVouchersDetail\": null,\n        \"reimbursementVouchers\": null,\n        \"reimbursementVouchersDetail\": null,\n        \"extraVouchersMain\": null,\n        \"extraVouchersDetail\": null,\n        \"billDeductInvoice\": null\n    },\n    {\n        \"propertyId\": 19490,\n        \"propertyAddress\": \"00 Keewaydin Island, Naples, FL 34101\",\n        \"transactionGUID\": null,\n        \"transactionId\": null,\n        \"person_CustomerId\": null,\n        \"person_Customer\": null,\n        \"streetNumber\": null,\n        \"streetDirection\": null,\n        \"streetName\": null,\n        \"streetDesignation\": null,\n        \"streetSuffix\": null,\n        \"suiteAptNumber\": null,\n        \"buildingFloorNumber\": null,\n        \"city\": null,\n        \"state\": null,\n        \"zip\": null,\n        \"statusId\": 1681,\n        \"status\": \"Cancelled\",\n        \"statusCode\": \"CA\",\n        \"statusLocked\": false,\n        \"excludeList\": false,\n        \"excludeSell\": false,\n        \"excludeDuplicate\": false,\n        \"special\": false,\n        \"shortSale\": false,\n        \"forclosure\": false,\n        \"showOnInternet\": false,\n        \"showAddressOnInternet\": false,\n        \"showPriceOnInternet\": false,\n        \"hideListPriceOnWeb\": false,\n        \"condo\": false,\n        \"offset\": false,\n        \"regionalPost\": false,\n        \"condoFee\": null,\n        \"mlsNumber1\": \"KONS121917IHE\",\n        \"mlsNumber2\": null,\n        \"qaControl1\": null,\n        \"qaControl2\": null,\n        \"brokerReferenceNo\": null,\n        \"escrowNo\": null,\n        \"schemaType\": null,\n        \"listDate\": \"2017-11-30T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"estimatedClosingDate\": null,\n        \"cancelDate\": null,\n        \"cancelReasonId\": null,\n        \"closeDate\": null,\n        \"processedDate\": null,\n        \"sellerEnglishSurvey\": false,\n        \"sellerDirectMail\": false,\n        \"sellerSendSurveyDelivery\": false,\n        \"sellerSurveyDeliveryMethod\": null,\n        \"buyerEnglishSurvey\": false,\n        \"buyerDirectMail\": false,\n        \"buyerSendSurveyDelivery\": false,\n        \"buyerSurveyDeliveryMethod\": null,\n        \"keyNumber\": null,\n        \"shackleCode\": null,\n        \"notes\": null,\n        \"showingInstructionsInternal\": null,\n        \"directionsInternal\": null,\n        \"alternateListOfficeId\": null,\n        \"alternateSellOfficeId\": null,\n        \"yearBuilt\": null,\n        \"lastSoldDate\": null,\n        \"taxYear\": null,\n        \"taxRollNumber\": null,\n        \"annualTaxes\": null,\n        \"numberOfAcres\": null,\n        \"lotSize\": null,\n        \"lotSizeUnitID\": null,\n        \"squareFeet\": null,\n        \"squareFeetUnitID\": null,\n        \"levelsCount\": null,\n        \"sequenceNumber\": null,\n        \"transportation\": null,\n        \"neigborhoodName\": null,\n        \"propertyLocation\": null,\n        \"bedrooms\": null,\n        \"escrowHeld\": null,\n        \"referralTypeId\": null,\n        \"numOfRooms\": null,\n        \"parkingSpaces\": null,\n        \"referralType\": null,\n        \"typeCode\": null,\n        \"classificationId\": null,\n        \"propertyTypeId\": null,\n        \"incomeTypeID\": null,\n        \"propertyStyleId\": null,\n        \"transactionTypeId\": null,\n        \"propertyUseId\": null,\n        \"developmentId\": null,\n        \"appraisalDate\": null,\n        \"inspectionDate\": null,\n        \"applicationDate\": null,\n        \"loanRate\": null,\n        \"loanAmount\": null,\n        \"financingTypeId\": null,\n        \"listingPrice\": 0,\n        \"sellingPrice\": 0,\n        \"commissionPrice\": 0,\n        \"isFlatCommission\": false,\n        \"reactivate\": null,\n        \"listCommRate\": 0,\n        \"listCommission\": 0,\n        \"sellCommRate\": 0,\n        \"sellCommission\": 0,\n        \"totalCommission\": 0,\n        \"totalCommRate\": 0,\n        \"listingGUID\": null,\n        \"dashTransactionGUID\": null,\n        \"payCobroke\": false,\n        \"refListRate\": 0,\n        \"refListCommission\": 0,\n        \"refSellRate\": 0,\n        \"refSellCommission\": 0,\n        \"companyIncome\": null,\n        \"balanceDue\": null,\n        \"trans1\": null,\n        \"trans2\": null,\n        \"reimbursedDeposit\": null,\n        \"additionalincome\": null,\n        \"propId\": 27746,\n        \"firstTimeBuyer\": false,\n        \"confirmed\": false,\n        \"trType\": null,\n        \"rentalFrequency\": null,\n        \"fullBaths\": null,\n        \"halfBathsTotal\": null,\n        \"threeQuarterBathsTotal\": null,\n        \"quarterBathsTotal\": null,\n        \"companyID\": 1,\n        \"companyName\": \"Company 1\",\n        \"ourList\": false,\n        \"ourSell\": false,\n        \"listAgentID\": null,\n        \"sellAgentID\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"leadGeneratedByBuyer\": null,\n        \"leadGeneratedBySeller\": null,\n        \"leadSourceBuyer\": null,\n        \"leadSourceSeller\": null,\n        \"cobrokeCommRate\": 0,\n        \"cobrokeCommission\": 0,\n        \"subDivision\": null,\n        \"transactionNotes\": null,\n        \"excludeFromSubmission\": false,\n        \"needRecalc\": false,\n        \"expireDateCalculated\": false,\n        \"feedID\": null,\n        \"feedName\": null,\n        \"dotLoopID\": null,\n        \"eRELOID\": null,\n        \"skySlopeID\": null,\n        \"appFileID\": null,\n        \"mlsListingRID\": null,\n        \"submitID\": null,\n        \"submitDate\": null,\n        \"resultType\": null,\n        \"resultDate\": null,\n        \"resultMessage\": null,\n        \"trade_LW\": 0,\n        \"listing_LW\": 0,\n        \"photoCount\": 0,\n        \"addedManuallyPhotoCount\": 0,\n        \"pulledFromMLSPhotoCount\": 0,\n        \"photoLastUpdated\": \"0001-01-01T00:00:00\",\n        \"addedManuallyPhotoLastUpdated\": \"0001-01-01T00:00:00\",\n        \"pulledFromMLSPhotoLastUpdated\": \"0001-01-01T00:00:00\",\n        \"createDate\": \"2017-12-20T11:06:37\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": null,\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"isMiscIncome\": false,\n        \"isOtherIncome\": false,\n        \"atGUID\": null,\n        \"rulesEnabled\": false,\n        \"rulesToValidate\": null,\n        \"agentTeamListId\": null,\n        \"agentTeamSellId\": null,\n        \"agents\": null,\n        \"referrals\": null,\n        \"thirdPartyPayments\": null,\n        \"overrides\": null,\n        \"extraVouchers\": null,\n        \"reimbursements\": null,\n        \"invoice\": null,\n        \"invoiceDetail\": null,\n        \"agentVouchers\": null,\n        \"agentVouchersDetail\": null,\n        \"referralVouchers\": null,\n        \"referralVouchersDetail\": null,\n        \"thirdPartyVouchers\": null,\n        \"thirdPartyVouchersDetail\": null,\n        \"overrideVouchers\": null,\n        \"overrideVouchersDetail\": null,\n        \"reimbursementVouchers\": null,\n        \"reimbursementVouchersDetail\": null,\n        \"extraVouchersMain\": null,\n        \"extraVouchersDetail\": null,\n        \"billDeductInvoice\": null\n    },\n    {\n        \"propertyId\": 2104,\n        \"propertyAddress\": \"1 CRESENT ISLAND , ST JAMES CITY, FL 33956\",\n        \"transactionGUID\": null,\n        \"transactionId\": null,\n        \"person_CustomerId\": null,\n        \"person_Customer\": null,\n        \"streetNumber\": null,\n        \"streetDirection\": null,\n        \"streetName\": null,\n        \"streetDesignation\": null,\n        \"streetSuffix\": null,\n        \"suiteAptNumber\": null,\n        \"buildingFloorNumber\": null,\n        \"city\": null,\n        \"state\": null,\n        \"zip\": null,\n        \"statusId\": 9141,\n        \"status\": \"Processed\",\n        \"statusCode\": \"CL\",\n        \"statusLocked\": false,\n        \"excludeList\": false,\n        \"excludeSell\": false,\n        \"excludeDuplicate\": false,\n        \"special\": false,\n        \"shortSale\": false,\n        \"forclosure\": false,\n        \"showOnInternet\": false,\n        \"showAddressOnInternet\": false,\n        \"showPriceOnInternet\": false,\n        \"hideListPriceOnWeb\": false,\n        \"condo\": false,\n        \"offset\": false,\n        \"regionalPost\": false,\n        \"condoFee\": null,\n        \"mlsNumber1\": \"211520564\",\n        \"mlsNumber2\": null,\n        \"qaControl1\": null,\n        \"qaControl2\": null,\n        \"brokerReferenceNo\": null,\n        \"escrowNo\": null,\n        \"schemaType\": null,\n        \"listDate\": \"2011-11-07T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"estimatedClosingDate\": null,\n        \"cancelDate\": null,\n        \"cancelReasonId\": null,\n        \"closeDate\": null,\n        \"processedDate\": null,\n        \"sellerEnglishSurvey\": false,\n        \"sellerDirectMail\": false,\n        \"sellerSendSurveyDelivery\": false,\n        \"sellerSurveyDeliveryMethod\": null,\n        \"buyerEnglishSurvey\": false,\n        \"buyerDirectMail\": false,\n        \"buyerSendSurveyDelivery\": false,\n        \"buyerSurveyDeliveryMethod\": null,\n        \"keyNumber\": null,\n        \"shackleCode\": null,\n        \"notes\": null,\n        \"showingInstructionsInternal\": null,\n        \"directionsInternal\": null,\n        \"alternateListOfficeId\": null,\n        \"alternateSellOfficeId\": null,\n        \"yearBuilt\": null,\n        \"lastSoldDate\": null,\n        \"taxYear\": null,\n        \"taxRollNumber\": null,\n        \"annualTaxes\": null,\n        \"numberOfAcres\": null,\n        \"lotSize\": null,\n        \"lotSizeUnitID\": null,\n        \"squareFeet\": null,\n        \"squareFeetUnitID\": null,\n        \"levelsCount\": null,\n        \"sequenceNumber\": null,\n        \"transportation\": null,\n        \"neigborhoodName\": null,\n        \"propertyLocation\": null,\n        \"bedrooms\": null,\n        \"escrowHeld\": null,\n        \"referralTypeId\": null,\n        \"numOfRooms\": null,\n        \"parkingSpaces\": null,\n        \"referralType\": null,\n        \"typeCode\": null,\n        \"classificationId\": null,\n        \"propertyTypeId\": null,\n        \"incomeTypeID\": null,\n        \"propertyStyleId\": null,\n        \"transactionTypeId\": null,\n        \"propertyUseId\": null,\n        \"developmentId\": null,\n        \"appraisalDate\": null,\n        \"inspectionDate\": null,\n        \"applicationDate\": null,\n        \"loanRate\": null,\n        \"loanAmount\": null,\n        \"financingTypeId\": null,\n        \"listingPrice\": 0,\n        \"sellingPrice\": 0,\n        \"commissionPrice\": 0,\n        \"isFlatCommission\": false,\n        \"reactivate\": null,\n        \"listCommRate\": 0,\n        \"listCommission\": 0,\n        \"sellCommRate\": 0,\n        \"sellCommission\": 0,\n        \"totalCommission\": 0,\n        \"totalCommRate\": 0,\n        \"listingGUID\": null,\n        \"dashTransactionGUID\": null,\n        \"payCobroke\": false,\n        \"refListRate\": 0,\n        \"refListCommission\": 0,\n        \"refSellRate\": 0,\n        \"refSellCommission\": 0,\n        \"companyIncome\": null,\n        \"balanceDue\": null,\n        \"trans1\": null,\n        \"trans2\": null,\n        \"reimbursedDeposit\": null,\n        \"additionalincome\": null,\n        \"propId\": 3578,\n        \"firstTimeBuyer\": false,\n        \"confirmed\": false,\n        \"trType\": null,\n        \"rentalFrequency\": null,\n        \"fullBaths\": null,\n        \"halfBathsTotal\": null,\n        \"threeQuarterBathsTotal\": null,\n        \"quarterBathsTotal\": null,\n        \"companyID\": 1,\n        \"companyName\": \"Company 1\",\n        \"ourList\": false,\n        \"ourSell\": false,\n        \"listAgentID\": null,\n        \"sellAgentID\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"leadGeneratedByBuyer\": null,\n        \"leadGeneratedBySeller\": null,\n        \"leadSourceBuyer\": null,\n        \"leadSourceSeller\": null,\n        \"cobrokeCommRate\": 0,\n        \"cobrokeCommission\": 0,\n        \"subDivision\": null,\n        \"transactionNotes\": null,\n        \"excludeFromSubmission\": false,\n        \"needRecalc\": false,\n        \"expireDateCalculated\": false,\n        \"feedID\": null,\n        \"feedName\": null,\n        \"dotLoopID\": null,\n        \"eRELOID\": null,\n        \"skySlopeID\": null,\n        \"appFileID\": null,\n        \"mlsListingRID\": null,\n        \"submitID\": null,\n        \"submitDate\": null,\n        \"resultType\": null,\n        \"resultDate\": null,\n        \"resultMessage\": null,\n        \"trade_LW\": 0,\n        \"listing_LW\": 0,\n        \"photoCount\": 0,\n        \"addedManuallyPhotoCount\": 0,\n        \"pulledFromMLSPhotoCount\": 0,\n        \"photoLastUpdated\": \"0001-01-01T00:00:00\",\n        \"addedManuallyPhotoLastUpdated\": \"0001-01-01T00:00:00\",\n        \"pulledFromMLSPhotoLastUpdated\": \"0001-01-01T00:00:00\",\n        \"createDate\": \"2012-01-10T22:22:44\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": null,\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"isMiscIncome\": false,\n        \"isOtherIncome\": false,\n        \"atGUID\": null,\n        \"rulesEnabled\": false,\n        \"rulesToValidate\": null,\n        \"agentTeamListId\": null,\n        \"agentTeamSellId\": null,\n        \"agents\": null,\n        \"referrals\": null,\n        \"thirdPartyPayments\": null,\n        \"overrides\": null,\n        \"extraVouchers\": null,\n        \"reimbursements\": null,\n        \"invoice\": null,\n        \"invoiceDetail\": null,\n        \"agentVouchers\": null,\n        \"agentVouchersDetail\": null,\n        \"referralVouchers\": null,\n        \"referralVouchersDetail\": null,\n        \"thirdPartyVouchers\": null,\n        \"thirdPartyVouchersDetail\": null,\n        \"overrideVouchers\": null,\n        \"overrideVouchersDetail\": null,\n        \"reimbursementVouchers\": null,\n        \"reimbursementVouchersDetail\": null,\n        \"extraVouchersMain\": null,\n        \"extraVouchersDetail\": null,\n        \"billDeductInvoice\": null\n    },\n    {\n        \"propertyId\": 7105,\n        \"propertyAddress\": \"1 Key Capri, 708W, Treasure Island, FL 33706\",\n        \"transactionGUID\": null,\n        \"transactionId\": null,\n        \"person_CustomerId\": null,\n        \"person_Customer\": null,\n        \"streetNumber\": null,\n        \"streetDirection\": null,\n        \"streetName\": null,\n        \"streetDesignation\": null,\n        \"streetSuffix\": null,\n        \"suiteAptNumber\": null,\n        \"buildingFloorNumber\": null,\n        \"city\": null,\n        \"state\": null,\n        \"zip\": null,\n        \"statusId\": 9141,\n        \"status\": \"Processed\",\n        \"statusCode\": \"CL\",\n        \"statusLocked\": false,\n        \"excludeList\": false,\n        \"excludeSell\": false,\n        \"excludeDuplicate\": false,\n        \"special\": false,\n        \"shortSale\": false,\n        \"forclosure\": false,\n        \"showOnInternet\": false,\n        \"showAddressOnInternet\": false,\n        \"showPriceOnInternet\": false,\n        \"hideListPriceOnWeb\": false,\n        \"condo\": false,\n        \"offset\": false,\n        \"regionalPost\": false,\n        \"condoFee\": null,\n        \"mlsNumber1\": null,\n        \"mlsNumber2\": null,\n        \"qaControl1\": null,\n        \"qaControl2\": null,\n        \"brokerReferenceNo\": null,\n        \"escrowNo\": null,\n        \"schemaType\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"estimatedClosingDate\": null,\n        \"cancelDate\": null,\n        \"cancelReasonId\": null,\n        \"closeDate\": null,\n        \"processedDate\": null,\n        \"sellerEnglishSurvey\": false,\n        \"sellerDirectMail\": false,\n        \"sellerSendSurveyDelivery\": false,\n        \"sellerSurveyDeliveryMethod\": null,\n        \"buyerEnglishSurvey\": false,\n        \"buyerDirectMail\": false,\n        \"buyerSendSurveyDelivery\": false,\n        \"buyerSurveyDeliveryMethod\": null,\n        \"keyNumber\": null,\n        \"shackleCode\": null,\n        \"notes\": null,\n        \"showingInstructionsInternal\": null,\n        \"directionsInternal\": null,\n        \"alternateListOfficeId\": null,\n        \"alternateSellOfficeId\": null,\n        \"yearBuilt\": null,\n        \"lastSoldDate\": null,\n        \"taxYear\": null,\n        \"taxRollNumber\": null,\n        \"annualTaxes\": null,\n        \"numberOfAcres\": null,\n        \"lotSize\": null,\n        \"lotSizeUnitID\": null,\n        \"squareFeet\": null,\n        \"squareFeetUnitID\": null,\n        \"levelsCount\": null,\n        \"sequenceNumber\": null,\n        \"transportation\": null,\n        \"neigborhoodName\": null,\n        \"propertyLocation\": null,\n        \"bedrooms\": null,\n        \"escrowHeld\": null,\n        \"referralTypeId\": null,\n        \"numOfRooms\": null,\n        \"parkingSpaces\": null,\n        \"referralType\": null,\n        \"typeCode\": null,\n        \"classificationId\": null,\n        \"propertyTypeId\": null,\n        \"incomeTypeID\": null,\n        \"propertyStyleId\": null,\n        \"transactionTypeId\": null,\n        \"propertyUseId\": null,\n        \"developmentId\": null,\n        \"appraisalDate\": null,\n        \"inspectionDate\": null,\n        \"applicationDate\": null,\n        \"loanRate\": null,\n        \"loanAmount\": null,\n        \"financingTypeId\": null,\n        \"listingPrice\": 0,\n        \"sellingPrice\": 0,\n        \"commissionPrice\": 0,\n        \"isFlatCommission\": false,\n        \"reactivate\": null,\n        \"listCommRate\": 0,\n        \"listCommission\": 0,\n        \"sellCommRate\": 0,\n        \"sellCommission\": 0,\n        \"totalCommission\": 0,\n        \"totalCommRate\": 0,\n        \"listingGUID\": null,\n        \"dashTransactionGUID\": null,\n        \"payCobroke\": false,\n        \"refListRate\": 0,\n        \"refListCommission\": 0,\n        \"refSellRate\": 0,\n        \"refSellCommission\": 0,\n        \"companyIncome\": null,\n        \"balanceDue\": null,\n        \"trans1\": null,\n        \"trans2\": null,\n        \"reimbursedDeposit\": null,\n        \"additionalincome\": null,\n        \"propId\": 10522,\n        \"firstTimeBuyer\": false,\n        \"confirmed\": false,\n        \"trType\": null,\n        \"rentalFrequency\": null,\n        \"fullBaths\": null,\n        \"halfBathsTotal\": null,\n        \"threeQuarterBathsTotal\": null,\n        \"quarterBathsTotal\": null,\n        \"companyID\": 1,\n        \"companyName\": \"Company 1\",\n        \"ourList\": false,\n        \"ourSell\": false,\n        \"listAgentID\": null,\n        \"sellAgentID\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"leadGeneratedByBuyer\": null,\n        \"leadGeneratedBySeller\": null,\n        \"leadSourceBuyer\": null,\n        \"leadSourceSeller\": null,\n        \"cobrokeCommRate\": 0,\n        \"cobrokeCommission\": 0,\n        \"subDivision\": null,\n        \"transactionNotes\": null,\n        \"excludeFromSubmission\": false,\n        \"needRecalc\": false,\n        \"expireDateCalculated\": false,\n        \"feedID\": null,\n        \"feedName\": null,\n        \"dotLoopID\": null,\n        \"eRELOID\": null,\n        \"skySlopeID\": null,\n        \"appFileID\": null,\n        \"mlsListingRID\": null,\n        \"submitID\": null,\n        \"submitDate\": null,\n        \"resultType\": null,\n        \"resultDate\": null,\n        \"resultMessage\": null,\n        \"trade_LW\": 0,\n        \"listing_LW\": 0,\n        \"photoCount\": 0,\n        \"addedManuallyPhotoCount\": 0,\n        \"pulledFromMLSPhotoCount\": 0,\n        \"photoLastUpdated\": \"0001-01-01T00:00:00\",\n        \"addedManuallyPhotoLastUpdated\": \"0001-01-01T00:00:00\",\n        \"pulledFromMLSPhotoLastUpdated\": \"0001-01-01T00:00:00\",\n        \"createDate\": \"2013-09-26T10:21:10\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": null,\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"isMiscIncome\": false,\n        \"isOtherIncome\": false,\n        \"atGUID\": null,\n        \"rulesEnabled\": false,\n        \"rulesToValidate\": null,\n        \"agentTeamListId\": null,\n        \"agentTeamSellId\": null,\n        \"agents\": null,\n        \"referrals\": null,\n        \"thirdPartyPayments\": null,\n        \"overrides\": null,\n        \"extraVouchers\": null,\n        \"reimbursements\": null,\n        \"invoice\": null,\n        \"invoiceDetail\": null,\n        \"agentVouchers\": null,\n        \"agentVouchersDetail\": null,\n        \"referralVouchers\": null,\n        \"referralVouchersDetail\": null,\n        \"thirdPartyVouchers\": null,\n        \"thirdPartyVouchersDetail\": null,\n        \"overrideVouchers\": null,\n        \"overrideVouchersDetail\": null,\n        \"reimbursementVouchers\": null,\n        \"reimbursementVouchersDetail\": null,\n        \"extraVouchersMain\": null,\n        \"extraVouchersDetail\": null,\n        \"billDeductInvoice\": null\n    },\n    {\n        \"propertyId\": 6850,\n        \"propertyAddress\": \"100 Collier Blvd N, 205, Marco Island, FL 34145-3714\",\n        \"transactionGUID\": null,\n        \"transactionId\": null,\n        \"person_CustomerId\": null,\n        \"person_Customer\": null,\n        \"streetNumber\": null,\n        \"streetDirection\": null,\n        \"streetName\": null,\n        \"streetDesignation\": null,\n        \"streetSuffix\": null,\n        \"suiteAptNumber\": null,\n        \"buildingFloorNumber\": null,\n        \"city\": null,\n        \"state\": null,\n        \"zip\": null,\n        \"statusId\": 9141,\n        \"status\": \"Processed\",\n        \"statusCode\": \"CL\",\n        \"statusLocked\": false,\n        \"excludeList\": false,\n        \"excludeSell\": false,\n        \"excludeDuplicate\": false,\n        \"special\": false,\n        \"shortSale\": false,\n        \"forclosure\": false,\n        \"showOnInternet\": false,\n        \"showAddressOnInternet\": false,\n        \"showPriceOnInternet\": false,\n        \"hideListPriceOnWeb\": false,\n        \"condo\": false,\n        \"offset\": false,\n        \"regionalPost\": false,\n        \"condoFee\": null,\n        \"mlsNumber1\": \"213024626\",\n        \"mlsNumber2\": null,\n        \"qaControl1\": null,\n        \"qaControl2\": null,\n        \"brokerReferenceNo\": null,\n        \"escrowNo\": null,\n        \"schemaType\": null,\n        \"listDate\": \"2013-08-12T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"estimatedClosingDate\": null,\n        \"cancelDate\": null,\n        \"cancelReasonId\": null,\n        \"closeDate\": null,\n        \"processedDate\": null,\n        \"sellerEnglishSurvey\": false,\n        \"sellerDirectMail\": false,\n        \"sellerSendSurveyDelivery\": false,\n        \"sellerSurveyDeliveryMethod\": null,\n        \"buyerEnglishSurvey\": false,\n        \"buyerDirectMail\": false,\n        \"buyerSendSurveyDelivery\": false,\n        \"buyerSurveyDeliveryMethod\": null,\n        \"keyNumber\": null,\n        \"shackleCode\": null,\n        \"notes\": null,\n        \"showingInstructionsInternal\": null,\n        \"directionsInternal\": null,\n        \"alternateListOfficeId\": null,\n        \"alternateSellOfficeId\": null,\n        \"yearBuilt\": null,\n        \"lastSoldDate\": null,\n        \"taxYear\": null,\n        \"taxRollNumber\": null,\n        \"annualTaxes\": null,\n        \"numberOfAcres\": null,\n        \"lotSize\": null,\n        \"lotSizeUnitID\": null,\n        \"squareFeet\": null,\n        \"squareFeetUnitID\": null,\n        \"levelsCount\": null,\n        \"sequenceNumber\": null,\n        \"transportation\": null,\n        \"neigborhoodName\": null,\n        \"propertyLocation\": null,\n        \"bedrooms\": null,\n        \"escrowHeld\": null,\n        \"referralTypeId\": null,\n        \"numOfRooms\": null,\n        \"parkingSpaces\": null,\n        \"referralType\": null,\n        \"typeCode\": null,\n        \"classificationId\": null,\n        \"propertyTypeId\": null,\n        \"incomeTypeID\": null,\n        \"propertyStyleId\": null,\n        \"transactionTypeId\": null,\n        \"propertyUseId\": null,\n        \"developmentId\": null,\n        \"appraisalDate\": null,\n        \"inspectionDate\": null,\n        \"applicationDate\": null,\n        \"loanRate\": null,\n        \"loanAmount\": null,\n        \"financingTypeId\": null,\n        \"listingPrice\": 0,\n        \"sellingPrice\": 0,\n        \"commissionPrice\": 0,\n        \"isFlatCommission\": false,\n        \"reactivate\": null,\n        \"listCommRate\": 0,\n        \"listCommission\": 0,\n        \"sellCommRate\": 0,\n        \"sellCommission\": 0,\n        \"totalCommission\": 0,\n        \"totalCommRate\": 0,\n        \"listingGUID\": null,\n        \"dashTransactionGUID\": null,\n        \"payCobroke\": false,\n        \"refListRate\": 0,\n        \"refListCommission\": 0,\n        \"refSellRate\": 0,\n        \"refSellCommission\": 0,\n        \"companyIncome\": null,\n        \"balanceDue\": null,\n        \"trans1\": null,\n        \"trans2\": null,\n        \"reimbursedDeposit\": null,\n        \"additionalincome\": null,\n        \"propId\": 10142,\n        \"firstTimeBuyer\": false,\n        \"confirmed\": false,\n        \"trType\": null,\n        \"rentalFrequency\": null,\n        \"fullBaths\": null,\n        \"halfBathsTotal\": null,\n        \"threeQuarterBathsTotal\": null,\n        \"quarterBathsTotal\": null,\n        \"companyID\": 1,\n        \"companyName\": \"Company 1\",\n        \"ourList\": false,\n        \"ourSell\": false,\n        \"listAgentID\": null,\n        \"sellAgentID\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"leadGeneratedByBuyer\": null,\n        \"leadGeneratedBySeller\": null,\n        \"leadSourceBuyer\": null,\n        \"leadSourceSeller\": null,\n        \"cobrokeCommRate\": 0,\n        \"cobrokeCommission\": 0,\n        \"subDivision\": null,\n        \"transactionNotes\": null,\n        \"excludeFromSubmission\": false,\n        \"needRecalc\": false,\n        \"expireDateCalculated\": false,\n        \"feedID\": null,\n        \"feedName\": null,\n        \"dotLoopID\": null,\n        \"eRELOID\": null,\n        \"skySlopeID\": null,\n        \"appFileID\": null,\n        \"mlsListingRID\": null,\n        \"submitID\": null,\n        \"submitDate\": null,\n        \"resultType\": null,\n        \"resultDate\": null,\n        \"resultMessage\": null,\n        \"trade_LW\": 0,\n        \"listing_LW\": 0,\n        \"photoCount\": 0,\n        \"addedManuallyPhotoCount\": 0,\n        \"pulledFromMLSPhotoCount\": 0,\n        \"photoLastUpdated\": \"0001-01-01T00:00:00\",\n        \"addedManuallyPhotoLastUpdated\": \"0001-01-01T00:00:00\",\n        \"pulledFromMLSPhotoLastUpdated\": \"0001-01-01T00:00:00\",\n        \"createDate\": \"2013-08-12T16:45:12\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": null,\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"isMiscIncome\": false,\n        \"isOtherIncome\": false,\n        \"atGUID\": null,\n        \"rulesEnabled\": false,\n        \"rulesToValidate\": null,\n        \"agentTeamListId\": null,\n        \"agentTeamSellId\": null,\n        \"agents\": null,\n        \"referrals\": null,\n        \"thirdPartyPayments\": null,\n        \"overrides\": null,\n        \"extraVouchers\": null,\n        \"reimbursements\": null,\n        \"invoice\": null,\n        \"invoiceDetail\": null,\n        \"agentVouchers\": null,\n        \"agentVouchersDetail\": null,\n        \"referralVouchers\": null,\n        \"referralVouchersDetail\": null,\n        \"thirdPartyVouchers\": null,\n        \"thirdPartyVouchersDetail\": null,\n        \"overrideVouchers\": null,\n        \"overrideVouchersDetail\": null,\n        \"reimbursementVouchers\": null,\n        \"reimbursementVouchersDetail\": null,\n        \"extraVouchersMain\": null,\n        \"extraVouchersDetail\": null,\n        \"billDeductInvoice\": null\n    }\n]"}],"_postman_id":"e54841de-ac23-438e-8e4d-38289c4a9378"},{"name":"Property Advanced Search","event":[{"listen":"test","script":{"id":"49462c8f-7c1e-40a7-9d17-a53d847e393e","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"f7c8e984-4493-47d5-a21e-f1c970650382","exec":["pm.environment.set(\"mls\",\"\");\r","pm.environment.set(\"qaControl1\",\"\");\r","pm.environment.set(\"qaControl2\",\"\");\r","pm.environment.set(\"escrowNo\",\"\");\r","pm.environment.set(\"brokerReferenceNo\",\"\");\r","pm.environment.set(\"fromDate\",\"\");\r","pm.environment.set(\"toDate\",\"\");"],"type":"text/javascript"}}],"id":"1b7311e4-7b8b-4e40-b79a-9aeafd8dc9e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://{{base_url}}/api/property/advance_search?companyId={{companyId}}&address={{address}}&mls={{mls}}&propId={{propId}}&status={{status}}&propertyTypeId={{propertyTypeId}}&fromDate={{fromDate}}&toDate={{toDate}}&qaControl1=&qaControl2={{qaControl2}}&buyer={{buyer}}&seller={{seller}}&brokerReferenceNo={{brokerReferenceNo}}&escrowNo={{escrowNo}}&classificationId={{classificationId}}&pageIndex={{pageIndex}}&pageSize={{pageSize}}&filterBy={{filterBy}}&trType={{trType}}&withTrash={{withTrash}}&agent={{agent}}&officeId={{officeId}}","description":"<p>This Resource will allow you to pull selected information from the list of properties filtered by different parameters such as companyId, address, mls, date, status, etc.</p>\n<p>It is similar to the PropertySearch endpoint but this one allows extra filter parameters to accomodate any special filtering needs</p>\n","urlObject":{"protocol":"https","path":["api","property","advance_search"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>the Id of the company related to the property in Darwin. </p>\n<p>If zero, it will be ignored</p>\n","type":"text/plain"},"key":"companyId","value":"{{companyId}}"},{"description":{"content":"<p>The address for a property filter on.</p>\n<p>If used, it will filter the results to only properties when the address contains this value.</p>\n","type":"text/plain"},"key":"address","value":"{{address}}"},{"description":{"content":"<p>The mls for a property filter on.</p>\n<p>If used, it will filter the results to only properties when the mls contains this value.</p>\n","type":"text/plain"},"key":"mls","value":"{{mls}}"},{"description":{"content":"<p>Used to filter by a specific propId in properties. </p>\n<p>By default it is “”. </p>\n<p>If left with “”, this filter is not applied.</p>\n","type":"text/plain"},"key":"propId","value":"{{propId}}"},{"description":{"content":"<p>Used to filter by status record ID in properties. </p>\n<p>It could be filtered by more than one status value. </p>\n<p>By default it is “”.</p>\n<p>If left with “0”, this filter is not applied.</p>\n","type":"text/plain"},"key":"status","value":"{{status}}"},{"description":{"content":"<p>Used to filter by a specific property Type record ID in properties.</p>\n<p>By default it is “0”. </p>\n<p>If left with “0”, this filter is not applied.</p>\n","type":"text/plain"},"key":"propertyTypeId","value":"{{propertyTypeId}}"},{"description":{"content":"<p>Start date to filter the property data</p>\n","type":"text/plain"},"key":"fromDate","value":"{{fromDate}}"},{"description":{"content":"<p>End date to filter the property data</p>\n","type":"text/plain"},"key":"toDate","value":"{{toDate}}"},{"description":{"content":"<p>If used, it will filter the results to show only Darwin properties when the qa control1 contains this value.</p>\n","type":"text/plain"},"key":"qaControl1","value":""},{"description":{"content":"<p>If used, it will filter the results to show only Darwin properties when the qa control2 contains this value.</p>\n","type":"text/plain"},"key":"qaControl2","value":"{{qaControl2}}"},{"description":{"content":"<p>If used, it will filter the results to show only Darwin properties when the buyer name contains this value.</p>\n","type":"text/plain"},"key":"buyer","value":"{{buyer}}"},{"description":{"content":"<p>If used, it will filter the results to show only Darwin properties when the seller name contains this value.</p>\n","type":"text/plain"},"key":"seller","value":"{{seller}}"},{"description":{"content":"<p>If used, it will filter the results to show only Darwin properties when the broker reference contains this value.</p>\n","type":"text/plain"},"key":"brokerReferenceNo","value":"{{brokerReferenceNo}}"},{"description":{"content":"<p>If used, it will filter the results to show only Darwin properties when the buyer name contains this value.</p>\n","type":"text/plain"},"key":"escrowNo","value":"{{escrowNo}}"},{"description":{"content":"<p>Used to filter by a specific classification ID in properties. </p>\n<p>By default it is “0”.</p>\n<p>If left with “0”, this filter is not applied.</p>\n","type":"text/plain"},"key":"classificationId","value":"{{classificationId}}"},{"description":{"content":"<p>The page number from which to retrieve the properties. Starts in zero.</p>\n","type":"text/plain"},"key":"pageIndex","value":"{{pageIndex}}"},{"description":{"content":"<p>The number of rows that can be pulled on a single call. Max value is 100.</p>\n","type":"text/plain"},"key":"pageSize","value":"{{pageSize}}"},{"description":{"content":"<p>Represents the type of date to use for filtering in a given date range.</p>\n<p>It is used together with fromDate and toDate parameters.</p>\n<p>Possible values:</p>\n<ul>\n<li>\"postdate' means processedDate will be used to filter by date range</li>\n<li>\"closingdate\" means closingDate will be used to filter by date range</li>\n<li>\"\" means listDate will be used to filter by date range</li>\n</ul>\n","type":"text/plain"},"key":"filterBy","value":"{{filterBy}}"},{"description":{"content":"<p>Used to filter by a specific trType in properties. By default it is “”. \nIf left with “”, this filter is not applied.</p>\n","type":"text/plain"},"key":"trType","value":"{{trType}}"},{"description":{"content":"<p>Used to filter deleted properties records from Darwin. Possible values are 1 or 0.</p>\n<ul>\n<li>1 means the results to show all Darwin properties</li>\n<li>0 means the results to show only Darwin properties not deleted.</li>\n</ul>\n","type":"text/plain"},"key":"withTrash","value":"{{withTrash}}"},{"description":{"content":"<p>If used, it will filter the results to show only Darwin properties when the agent name contains this value.</p>\n","type":"text/plain"},"key":"agent","value":"{{agent}}"},{"description":{"content":"<p>Darwin internal ID of the office to filter on (you can find this ID logging into Darwin application).</p>\n<p>If not passed, properties from all offices will be retrieved.</p>\n<p>If an Id is passed, any property whose any of its agents belong to the given office will be retrieved</p>\n<p>If used together with the companyID parameter, it will retrieve all properties within a given office within a given company</p>\n","type":"text/plain"},"key":"officeId","value":"{{officeId}}"}],"variable":[]}},"response":[{"id":"aae988ac-ed48-4e9b-83eb-e6a51042332e","name":"Property Advanced Search","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic {{token}}","type":"text","description":"This is a value generated with 2 components:\n\n“Basic {userName:token}”\n\nThe Token will be issued to the user after a successful authentication (used can get it from the LOGIN endpoint response when this succeeds) \n\nThis 2-value string needs to be encoded to base64\n"}],"url":{"raw":"https://{{base_url}}/api/property/advance_search?companyId={{companyId}}&address={{address}}&propId={{propId}}&statusId={{statusId}}&propertyTypeId={{propertyTypeId}}&buyer={{buyer}}&seller={{seller}}&classificationId={{classificationId}}&pageIndex={{pageIndex}}&pageSize={{pageSize}}&filterBy={{filterBy}}&trType={{trType}}&withTrash={{withTrash}}&agent={{agent}}&officeId={{officeId}}","protocol":"https","host":["{{base_url}}"],"path":["api","property","advance_search"],"query":[{"key":"companyId","value":"{{companyId}}","description":"the Id of the company related to the property in Darwin. If zero, it will be ignored"},{"key":"address","value":"{{address}}"},{"key":"mls","value":"{{mls}}","disabled":true},{"key":"propId","value":"{{propId}}"},{"key":"statusId","value":"{{statusId}}"},{"key":"propertyTypeId","value":"{{propertyTypeId}}"},{"key":"fromDate","value":"{{fromDate}}","disabled":true},{"key":"toDate","value":"{{toDate}}","disabled":true},{"key":"qaControl1","value":"","disabled":true},{"key":"qaControl2","value":"{{qaControl2}}","disabled":true},{"key":"buyer","value":"{{buyer}}"},{"key":"seller","value":"{{seller}}"},{"key":"brokerReferenceNo","value":"{{brokerReferenceNo}}","disabled":true},{"key":"escrowNo","value":"{{escrowNo}}","disabled":true},{"key":"classificationId","value":"{{classificationId}}"},{"key":"pageIndex","value":"{{pageIndex}}","description":"The page number from which to retrieve the properties. Starts in zero"},{"key":"pageSize","value":"{{pageSize}}","description":"The number of rows that can be pulled on a single call. Max value is 100"},{"key":"filterBy","value":"{{filterBy}}"},{"key":"trType","value":"{{trType}}"},{"key":"withTrash","value":"{{withTrash}}"},{"key":"agent","value":"{{agent}}"},{"key":"officeId","value":"{{officeId}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 06 Sep 2021 17:07:31 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"propertyId\": 3355,\n        \"propertyAddress\": \"Pre AT Production: 316 Rookery Court, Marco Island, FL - 3/22/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-03-22T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2685,\n        \"propertyAddress\": \"Pre AT Production: 297 Sunflower Court, Marco Island, FL - 12/23/2010\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2010-12-23T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2419,\n        \"propertyAddress\": \"Pre AT Production: 1761 Granada Drive, MARCO ISLAND, FL - 2/18/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-02-18T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2874,\n        \"propertyAddress\": \"Pre AT Production: 350 S. COLLIER, MARCO ISLAND, FL - 2/7/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-02-07T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 74089,\n        \"propertyAddress\": \"12547 Pine Island Drive, Leesburg, FL, 34788\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"G5038847\",\n        \"listDate\": \"2021-02-18T00:00:00\",\n        \"expiredDate\": \"2021-06-18T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2021-02-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3046,\n        \"propertyAddress\": \"Pre AT Production: 1234 Whiteheart Avenue, Marco Island, Fl - 2/15/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-02-15T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 72967,\n        \"propertyAddress\": \"886 San Marco Rd, Marco Island, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"221005120\",\n        \"listDate\": \"2021-01-21T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2545,\n        \"propertyAddress\": \"Pre AT Production: 760 COLLIER BLVD. N. #306, Marco Island, FL - 1/3/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-01-03T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2691,\n        \"propertyAddress\": \"Pre AT Production: 881 Panama Court, Marco Island, FL - 5/25/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-05-25T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3358,\n        \"propertyAddress\": \"Pre AT Production: 1121 Swallow Ave, Unit 701, Marco Island, FL - 4/29/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-04-29T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2539,\n        \"propertyAddress\": \"Pre AT Production: 685 Embassy Court, Marco Island, FL - 5/2/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-05-02T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3418,\n        \"propertyAddress\": \"Pre AT Production: 4801 ISLAND POND COURT, BONITA SPRINGS, FL - 7/12/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-07-12T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2877,\n        \"propertyAddress\": \"Pre AT Production: 350 COLLIER BLVD, MARCO ISLAND, FL - 4/5/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-04-05T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 74006,\n        \"propertyAddress\": \"51 Tidy Island Boulevard, Bradenton, FL, 34210\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"A4490286\",\n        \"listDate\": \"2021-02-04T00:00:00\",\n        \"expiredDate\": \"2021-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2021-02-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2416,\n        \"propertyAddress\": \"Pre AT Production: 218 Dan River Court, Marco Island, FL - 5/27/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-05-27T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 75340,\n        \"propertyAddress\": \"5704 Avery Island Avenue, Austin, TX, 78727\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"8904958\",\n        \"listDate\": \"2021-04-05T00:00:00\",\n        \"expiredDate\": \"2021-08-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 72664,\n        \"propertyAddress\": \"3100 Island View Drive, Mound, MN, 55364\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"NST5497844\",\n        \"listDate\": \"2020-03-04T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2020-08-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2594,\n        \"propertyAddress\": \"Pre AT Production: 176 South Collier Blvd, Unit 401, Marco Island, FL - 4/18/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-04-18T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3361,\n        \"propertyAddress\": \"Pre AT Production: 872 HEATHWOOD DRIVE SOUTH, MARCO ISLAND, FL - 4/6/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-04-06T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2880,\n        \"propertyAddress\": \"Pre AT Production: 350 South Collier Blvd. #206, Marco Island, FL - 2/10/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-02-10T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2319,\n        \"propertyAddress\": \"Pre AT Production: 24655 CANARY ISLAND CT, BONITA SPRINGS, FL - 2/24/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-02-24T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2677,\n        \"propertyAddress\": \"Pre AT Production: 350 S. Collier Blvd. #907, Marco Island, FL - 4/18/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-04-18T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2551,\n        \"propertyAddress\": \"Pre AT Production: 970 CAPE MARCO DRIVE, MARCO ISLAND, FL - 7/12/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-07-12T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2428,\n        \"propertyAddress\": \"Pre AT Production: 851 WHISKEY CREEK, MARCO ISLAND, FL - 7/15/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-07-15T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 65230,\n        \"propertyAddress\": \"197 N Barfield Dr, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220007629\",\n        \"listDate\": \"2020-01-30T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 29939,\n        \"propertyAddress\": \"Pre AT Production: Sea Island Ln, 7424 - 7/15/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-07-15T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 2422,\n        \"propertyAddress\": \"Pre AT Production: 3146 AVIAMAR CIRCLE, MARCO ISLAND, FL - 8/24/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-08-24T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2591,\n        \"propertyAddress\": \"Pre AT Production: 1101 South Collier Blvd. #109-E, Marco Island, FL - 7/20/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-07-20T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 74287,\n        \"propertyAddress\": \"5029 La Costa Island Court, Punta Gorda, FL, 33950\",\n        \"status\": \"Active\",\n        \"mlsNumber1\": \"C7436444\",\n        \"listDate\": \"2020-12-10T00:00:00\",\n        \"expiredDate\": \"2021-12-10T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3364,\n        \"propertyAddress\": \"Pre AT Production: 780 Collier Boulevard, Marco Island, FL - 6/8/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-06-08T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2548,\n        \"propertyAddress\": \"Pre AT Production: 1890 Honduras Avenue, Marco Island, FL - 5/12/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-05-12T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2697,\n        \"propertyAddress\": \"Pre AT Production: 1974 SAN MARCO ROAD, MARCO ISLAND, FL - 3/18/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-03-18T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3201,\n        \"propertyAddress\": \"Pre AT Production: 4801 ISLAND POND COURT, BONITA SPRINGS, FL - 7/12/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-07-12T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 72902,\n        \"propertyAddress\": \"1598 Heights Ct, Marco Island, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219067947\",\n        \"listDate\": \"2019-10-01T00:00:00\",\n        \"expiredDate\": \"2021-02-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21409,\n        \"propertyAddress\": \"1124 Strawberry Court, ,Marco Island, Florida, 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"218040572WD\",\n        \"listDate\": null,\n        \"expiredDate\": \"2019-06-07T00:00:00\",\n        \"withdrawnDate\": \"2018-06-13T14:13:42\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 65840,\n        \"propertyAddress\": \"180 Seaview Ct, 612, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220067546\",\n        \"listDate\": \"2020-10-20T00:00:00\",\n        \"expiredDate\": \"2021-04-08T14:40:22.703\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2703,\n        \"propertyAddress\": \"Pre AT Production: 1259 TREASURE COURT, MARCO ISLAND, FL - 6/29/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-06-29T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2872,\n        \"propertyAddress\": \"Pre AT Production: 350 S. Collier Blvd. #907, Marco Island, FL - 4/18/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-04-18T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2534,\n        \"propertyAddress\": \"Pre AT Production: 1572 Shores Court, Marco Island, FL - 4/11/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-04-11T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3353,\n        \"propertyAddress\": \"Pre AT Production: 686 Solana Court, Marco Island, FL - 6/9/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-06-09T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2537,\n        \"propertyAddress\": \"Pre AT Production: 931 Collier Court #B-103, Marco Island, FL - 8/12/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-08-12T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 76620,\n        \"propertyAddress\": \"12338 Wedgefield Drive, Grand Island, FL, 32735\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"O5926421\",\n        \"listDate\": \"2021-03-01T00:00:00\",\n        \"expiredDate\": \"2021-08-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2021-03-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 30569,\n        \"propertyAddress\": \"Pre AT Production: Orchid Island Pl, 7102 - 2/7/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-02-07T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 3284,\n        \"propertyAddress\": \"Pre AT Production: 4811 ISLAND POND CT #601, Bonita Springs, FL - 6/29/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-06-29T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2540,\n        \"propertyAddress\": \"Pre AT Production: 1218 Blue Hill Creek Drive, Marco Island, Fl - 2/8/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-02-08T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2549,\n        \"propertyAddress\": \"Pre AT Production: 2000 ROYAL MARCO WAY, MARCO ISLAND, FL - 5/2/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-05-02T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3047,\n        \"propertyAddress\": \"Pre AT Production: 881 Panama Court, Marco Island, FL - 5/25/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-05-25T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 75198,\n        \"propertyAddress\": \"2336 Pecan Island Drive, Leander, TX, 78641\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"8497890\",\n        \"listDate\": \"2021-04-05T00:00:00\",\n        \"expiredDate\": \"2021-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 65165,\n        \"propertyAddress\": \"24660 Canary Island Ct, 202, Bonita Springs, FL, 34134\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219062149\",\n        \"listDate\": \"2019-09-17T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1633,\n        \"propertyAddress\": \"780 S COLLIER Blvd, 911, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2543,\n        \"propertyAddress\": \"Pre AT Production: 160 Snowberry, Marco Island, FL - 6/29/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-06-29T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 74817,\n        \"propertyAddress\": \"8999 Mustang Island Cir, Naples, FL, 34113\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"221023473\",\n        \"listDate\": \"2021-03-30T00:00:00\",\n        \"expiredDate\": \"2021-04-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2875,\n        \"propertyAddress\": \"Pre AT Production: 350 S COLLIER, MARCO ISLAND, FL - 2/7/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-02-07T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3359,\n        \"propertyAddress\": \"Pre AT Production: 444 N. Barfield Drive, Marco Island, FL - 1/10/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-01-10T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 72928,\n        \"propertyAddress\": \"831 Apple Ct, Marco Island, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220039610\",\n        \"listDate\": \"2020-06-25T00:00:00\",\n        \"expiredDate\": \"2021-02-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2546,\n        \"propertyAddress\": \"Pre AT Production: 1001 South Collier Blvd., Marco Island, FL - 6/1/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-06-01T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2320,\n        \"propertyAddress\": \"Pre AT Production: 4811 ISLAND POND CT #601, Bonita Springs, FL - 6/29/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-06-29T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2878,\n        \"propertyAddress\": \"Pre AT Production: 1408 BUTTERFIELD COURT, MARCO ISLAND, FL - 5/9/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-05-09T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3356,\n        \"propertyAddress\": \"Pre AT Production: 300 Copperfield Court, Marco Island, FL - 4/27/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-04-27T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 70438,\n        \"propertyAddress\": \"2117 Pecan Island Drive, Leander, TX, 78641\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"3078471\",\n        \"listDate\": \"2021-01-18T00:00:00\",\n        \"expiredDate\": \"2021-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3362,\n        \"propertyAddress\": \"Pre AT Production: 1253 MARIANA COURT, MARCO ISLAND, FL - 3/22/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-03-22T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3216,\n        \"propertyAddress\": \"Pre AT Production: 1085 BALD EAGLE DRIVE, MARCO ISLAND, FL - 3/21/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-03-21T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 73707,\n        \"propertyAddress\": \"37119 Sandy Lane, Grand Island, FL, 32735\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"O5918517\",\n        \"listDate\": \"2021-01-23T00:00:00\",\n        \"expiredDate\": \"2021-03-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2021-02-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21410,\n        \"propertyAddress\": \"1621 Begonia Court, ,Marco Island, Florida, 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"218039394WD\",\n        \"listDate\": null,\n        \"expiredDate\": \"2019-06-03T00:00:00\",\n        \"withdrawnDate\": \"2018-06-14T15:30:15\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2366,\n        \"propertyAddress\": \"Pre AT Production: 350 S COLLIER BLVD, MARCO ISLAND, FL - 8/10/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-08-10T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 72954,\n        \"propertyAddress\": \"1114 Shenandoah Ct, Marco Island, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"220079650\",\n        \"listDate\": \"2020-12-23T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2535,\n        \"propertyAddress\": \"Pre AT Production: 690 Pelican Court, Marco Island, Fl - 5/26/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-05-26T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 70060,\n        \"propertyAddress\": \"113 Valerie Trail, Kelleys Island, OH, 43438\",\n        \"status\": \"Active\",\n        \"mlsNumber1\": \"4250875\",\n        \"listDate\": \"2021-01-20T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 73807,\n        \"propertyAddress\": \"9980 Gulf Boulevard, 207, Treasure Island, FL, 33706\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"U8110688\",\n        \"listDate\": \"2021-01-18T00:00:00\",\n        \"expiredDate\": \"2021-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 74826,\n        \"propertyAddress\": \"782 Hull Ct, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"221024332\",\n        \"listDate\": \"2021-04-01T00:00:00\",\n        \"expiredDate\": \"2021-04-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 29877,\n        \"propertyAddress\": \"Pre AT Production: Island Circle, 105 - 7/5/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-07-05T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 2552,\n        \"propertyAddress\": \"Pre AT Production: 176 South Collier Blvd., Marco Island, FL - 8/23/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-08-23T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2598,\n        \"propertyAddress\": \"Pre AT Production: 176 S COLLIER BLVD, UNIT 407, MARCO ISLAND, FL - 4/28/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-04-28T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 67816,\n        \"propertyAddress\": \"1280 Stone Ct, Marco Island, FL, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"220070881\",\n        \"listDate\": \"2020-11-05T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 74471,\n        \"propertyAddress\": \"12703 Bay Hill Drive, Grand Island, FL, 32735\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"G5038064\",\n        \"listDate\": \"2021-01-29T00:00:00\",\n        \"expiredDate\": \"2021-06-27T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2021-01-31T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 73143,\n        \"propertyAddress\": \"3937 Crooked Island Drive, Punta Gorda, FL, 33950\",\n        \"status\": \"Active\",\n        \"mlsNumber1\": \"C7421325\",\n        \"listDate\": \"2019-10-15T00:00:00\",\n        \"expiredDate\": \"2021-12-12T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2595,\n        \"propertyAddress\": \"Pre AT Production: 720 SOUTH COLLIER BLVD, MARCO ISLAND, FL - 5/25/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-05-25T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2541,\n        \"propertyAddress\": \"Pre AT Production: 882 Magnolia Ct., Marco Island, FL - 5/20/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-05-20T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2687,\n        \"propertyAddress\": \"Pre AT Production: 1045 Cottonwood Court, Marco Island, Fl - 6/9/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-06-09T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3354,\n        \"propertyAddress\": \"Pre AT Production: 835 West Elkcam Circle #108, Marco Island, Fl - 8/4/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-08-04T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 72923,\n        \"propertyAddress\": \"821 Scott Dr, Marco Island, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"220033438\",\n        \"listDate\": \"2020-05-26T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2873,\n        \"propertyAddress\": \"Pre AT Production: 350 South Collier Blvd., Marco Island, FL - 4/5/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-04-05T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2544,\n        \"propertyAddress\": \"Pre AT Production: 1084 Whiteheart Court, Marco Island, FL - 6/21/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-06-21T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2538,\n        \"propertyAddress\": \"Pre AT Production: 649 Seagrape Drive, Marco Island, FL - 3/10/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-03-10T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2876,\n        \"propertyAddress\": \"Pre AT Production: 720 S COLLIER BLVD, MARCO ISLAND, FL - 2/28/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-02-28T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 65392,\n        \"propertyAddress\": \"160 Palm St, 302, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220040488\",\n        \"listDate\": \"2020-07-01T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 73029,\n        \"propertyAddress\": \"4030 Lea Marie Island Drive, Port Charlotte, FL, 33952\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"C7404124\",\n        \"listDate\": \"2018-08-13T00:00:00\",\n        \"expiredDate\": \"2021-08-27T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 72943,\n        \"propertyAddress\": \"594 Spinnaker Dr, Marco Island, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"220064359\",\n        \"listDate\": \"2020-10-09T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 70344,\n        \"propertyAddress\": \"4596 E Island Pines Drive, Port Clinton, OH, 43452\",\n        \"status\": \"Active\",\n        \"mlsNumber1\": \"4250684\",\n        \"listDate\": \"2021-01-18T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 73836,\n        \"propertyAddress\": \"3927 Crooked Island Drive, Punta Gorda, FL, 33950\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"C7422589\",\n        \"listDate\": \"2019-11-18T00:00:00\",\n        \"expiredDate\": \"2021-04-16T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2879,\n        \"propertyAddress\": \"Pre AT Production: 350 S COLLIER BLVD, #708, MARCO ISLAND, FL - 5/6/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-05-06T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9165,\n        \"propertyAddress\": \"850 SE Barfield Dr, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"213504273\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": \"2014-07-16T00:00:00\",\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3002,\n        \"propertyAddress\": \"Pre AT Production: 4811 ISLAND POND COURT, BONITA SPRINGS, FL - 4/15/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-04-15T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3217,\n        \"propertyAddress\": \"Pre AT Production: 3146 AVIAMAR CIRCLE, MARCO ISLAND, FL - 8/24/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-08-24T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2550,\n        \"propertyAddress\": \"Pre AT Production: 337 ROCKHILL COURT, MARCO ISLAND, FL - 8/15/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-08-15T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2593,\n        \"propertyAddress\": \"Pre AT Production: 890 South Collier Blvd. #1606, Marco Island, FL - 6/23/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-06-23T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 67184,\n        \"propertyAddress\": \"1853 Honduras Ave, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"221004560\",\n        \"listDate\": \"2021-01-19T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 74489,\n        \"propertyAddress\": \"2049 Padre Island Drive, Punta Gorda, FL, 33950\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"C7417393\",\n        \"listDate\": \"2019-06-29T00:00:00\",\n        \"expiredDate\": \"2021-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 73994,\n        \"propertyAddress\": \"14 Tidy Island Boulevard, Bradenton, FL, 34210\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"A4490285\",\n        \"listDate\": \"2021-02-04T00:00:00\",\n        \"expiredDate\": \"2021-08-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2021-02-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3045,\n        \"propertyAddress\": \"Pre AT Production: 1103 S. COLLIER BLVD., MARCO ISLAND, FL - 2/2/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-02-02T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2427,\n        \"propertyAddress\": \"Pre AT Production: 835 W ELKCAM CIRCLE, MARCO ISLAND, FL - 8/25/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-08-25T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 74764,\n        \"propertyAddress\": \"1448 Collingswood Ave, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"221016629\",\n        \"listDate\": \"2021-03-04T00:00:00\",\n        \"expiredDate\": \"2021-04-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3360,\n        \"propertyAddress\": \"Pre AT Production: 761 Nautilus Court, Marco Island, FL - 9/19/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-09-19T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 72929,\n        \"propertyAddress\": \"839 Chestnut Ct, Marco Island, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220039616\",\n        \"listDate\": \"2020-06-25T00:00:00\",\n        \"expiredDate\": \"2021-02-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2364,\n        \"propertyAddress\": \"Pre AT Production: 940 Cape Marco Drive #2102, Marco Island, Fl - 2/18/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-02-18T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2690,\n        \"propertyAddress\": \"Pre AT Production: 920 OLIVE COURT, MARCO ISLAND, FL - 8/3/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-08-03T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 74426,\n        \"propertyAddress\": \"11319 Coconut Island Drive, Riverview, FL, 33569\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"T3279658\",\n        \"listDate\": \"2020-12-08T00:00:00\",\n        \"expiredDate\": \"2021-03-07T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2021-02-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2421,\n        \"propertyAddress\": \"Pre AT Production: 882 ELKCAM CIR, MARCO ISLAND, FL - 1/21/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-01-21T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2590,\n        \"propertyAddress\": \"Pre AT Production: 840 S COLLIER BLVD, MARCO ISLAND, FL - 8/19/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-08-19T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2547,\n        \"propertyAddress\": \"Pre AT Production: 900 Collier Court, Marco Island, FL - 9/6/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-09-06T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3357,\n        \"propertyAddress\": \"Pre AT Production: 1074 Whiteheart Court, Marco Island, FL - 4/29/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-04-29T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3363,\n        \"propertyAddress\": \"Pre AT Production: 531 ELK CIRCLE, MARCO ISLAND, FL - 5/6/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-05-06T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 65218,\n        \"propertyAddress\": \"440 Seaview Ct, 1002, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220004839\",\n        \"listDate\": \"2019-10-31T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2387,\n        \"propertyAddress\": \"Pre AT Production: 3146 AVIAMAR CIRCLE, MARCO ISLAND, FL - 8/24/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-08-24T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2533,\n        \"propertyAddress\": \"Pre AT Production: 1341 Caxambas Court, Marco Island, FL - 9/1/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-09-01T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 29924,\n        \"propertyAddress\": \"Pre AT Production: Sea Island Ln, 7444 - 3/28/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-03-28T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 21408,\n        \"propertyAddress\": \"258 Bass Court, ,Marco Island, Florida, 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"218039824WD\",\n        \"listDate\": null,\n        \"expiredDate\": \"2019-03-31T00:00:00\",\n        \"withdrawnDate\": \"2018-06-12T14:11:59\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2536,\n        \"propertyAddress\": \"Pre AT Production: 5000 Royal Marco Way #637, Marco Island, Fl - 12/15/2010\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2010-12-15T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2599,\n        \"propertyAddress\": \"Pre AT Production: 520 COLLIER BLVD, MARCO ISLAND, FL - 5/6/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-05-06T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 30087,\n        \"propertyAddress\": \"Pre AT Production: Island Cir, 238 - 8/1/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-08-01T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 2553,\n        \"propertyAddress\": \"Pre AT Production: 760 COLLIER BLVD N, MARCO ISLAND, FL - 8/16/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-08-16T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 74770,\n        \"propertyAddress\": \"81 Buttercup Ct, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"221017708\",\n        \"listDate\": \"2021-03-08T00:00:00\",\n        \"expiredDate\": \"2021-04-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 73751,\n        \"propertyAddress\": \"9980 Gulf Boulevard, 220, Treasure Island, FL, 33706\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"U8110999\",\n        \"listDate\": \"2021-01-18T00:00:00\",\n        \"expiredDate\": \"2021-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2021-01-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3283,\n        \"propertyAddress\": \"Pre AT Production: 24655 CANARY ISLAND CT, BONITA SPRINGS, FL - 2/24/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-02-24T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 67734,\n        \"propertyAddress\": \"120 Wild Cherry Ln, Marco Island, FL, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"220053257\",\n        \"listDate\": \"2020-08-24T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 68149,\n        \"propertyAddress\": \"113 Valerie Trail, Kelleys Island, OH, 43438\",\n        \"status\": \"Active\",\n        \"mlsNumber1\": \"4250872\",\n        \"listDate\": \"2021-01-20T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2596,\n        \"propertyAddress\": \"Pre AT Production: 411 S COLLIER BLVD, MARCO ISLAND, FL - 4/1/2011\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": \"2011-04-01T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": null,\n        \"listOffice\": null,\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 487,\n        \"propertyAddress\": \"2271 Island Cove Circle, Naples, FL 34109-0343\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"210002230\",\n        \"listDate\": \"2010-01-15T00:00:00\",\n        \"expiredDate\": \"2012-09-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-03-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-05-01T00:00:00\",\n        \"processedDate\": \"2012-05-15T00:00:00\",\n        \"closingDate\": \"2012-05-01T00:00:00\",\n        \"listAgent\": \"Linda Psamplery\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Bay Village\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 698,\n        \"propertyAddress\": \"2276 ISLAND COVE CIR, NAPLES, FL 34109-0341\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"210009821\",\n        \"listDate\": \"2010-03-15T00:00:00\",\n        \"expiredDate\": \"2012-05-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-02-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-02-29T00:00:00\",\n        \"processedDate\": \"2012-03-05T00:00:00\",\n        \"closingDate\": \"2012-02-29T00:00:00\",\n        \"listAgent\": \"Terri Moelsamplers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Lexington\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 710,\n        \"propertyAddress\": \"2324 ISLAND COVE CIR, NAPLES, FL 34109-0342\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"210012366DD\",\n        \"listDate\": \"2010-04-05T00:00:00\",\n        \"expiredDate\": \"2012-03-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-02-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-03-08T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Sharon Kaltenbsamplen\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Bay Village\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1017,\n        \"propertyAddress\": \"24665 CANARY ISLAND Court, 203, Bonita Springs, FL 34134\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211002675\",\n        \"listDate\": \"2011-01-20T00:00:00\",\n        \"expiredDate\": \"2011-10-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-06-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2011-09-30T00:00:00\",\n        \"processedDate\": \"2011-10-18T00:00:00\",\n        \"closingDate\": \"2011-10-01T00:00:00\",\n        \"listAgent\": \"Teresa Rsampleker\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Boston\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1061,\n        \"propertyAddress\": \"24655 CANARY ISLAND CT, BONITA SPRINGS, FL 34134\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211001403\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-01-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2011-03-24T00:00:00\",\n        \"processedDate\": \"2011-02-24T00:00:00\",\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Cathy Liebersample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Boston\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1083,\n        \"propertyAddress\": \"4811 ISLAND POND CT #601\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211011706\",\n        \"listDate\": \"2011-04-08T00:00:00\",\n        \"expiredDate\": \"2011-10-06T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-05-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2011-07-20T00:00:00\",\n        \"processedDate\": \"2011-06-29T00:00:00\",\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Liebersample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Boston\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1108,\n        \"propertyAddress\": \"4811 ISLAND POND COURT\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"210012560\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-02-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2011-04-25T00:00:00\",\n        \"processedDate\": \"2011-04-15T00:00:00\",\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Bet Dsampleey\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Bay Village\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1149,\n        \"propertyAddress\": \"4801 ISLAND POND COURT\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211001202\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-05-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2011-07-10T00:00:00\",\n        \"processedDate\": \"2011-07-12T00:00:00\",\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Carol Johnssample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Boston\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1162,\n        \"propertyAddress\": \"24671 Canary Island Court, 203, Bonita Springs, FL 34134\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211505053\",\n        \"listDate\": \"2011-07-12T00:00:00\",\n        \"expiredDate\": \"2012-07-11T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-11-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-01-09T00:00:00\",\n        \"processedDate\": \"2012-01-12T00:00:00\",\n        \"closingDate\": \"2012-01-06T00:00:00\",\n        \"listAgent\": \"Roxanne Jsampleke\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Boston\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1188,\n        \"propertyAddress\": \"1051 S BARFIELD DR, MARCO ISLAND, FL 34145-6642\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"208022316\",\n        \"listDate\": \"2004-04-16T00:00:00\",\n        \"expiredDate\": \"2012-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-02-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-03-14T00:00:00\",\n        \"processedDate\": \"2012-03-16T00:00:00\",\n        \"closingDate\": \"2012-03-14T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Laura samplems\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1189,\n        \"propertyAddress\": \"207 GERANIUM CT, MARCO ISLAND, FL 34145-4215\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"206001717\",\n        \"listDate\": \"2006-01-09T00:00:00\",\n        \"expiredDate\": \"2012-05-05T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-01-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-01-23T00:00:00\",\n        \"processedDate\": \"2012-01-27T00:00:00\",\n        \"closingDate\": \"2012-01-23T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1193,\n        \"propertyAddress\": \"980 Cape Marco Drive, 805, Marco Island, FL 34145-6337\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": \"2001-09-17T00:00:00\",\n        \"expiredDate\": \"2012-06-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-05-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-05-18T00:00:00\",\n        \"processedDate\": \"2012-05-21T00:00:00\",\n        \"closingDate\": \"2012-05-18T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1197,\n        \"propertyAddress\": \"720 S Collier Boulevard, 106, Marco Island, FL 34145-6020\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"209003234\",\n        \"listDate\": \"2009-01-21T00:00:00\",\n        \"expiredDate\": \"2013-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-08-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-09-30T00:00:00\",\n        \"processedDate\": \"2013-10-01T00:00:00\",\n        \"closingDate\": \"2013-09-30T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1204,\n        \"propertyAddress\": \"130 N COLLIER Boulevard, 7 H-7, Marco Island, FL 34145-3200\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"209040171\",\n        \"listDate\": \"2009-11-19T00:00:00\",\n        \"expiredDate\": \"2012-05-05T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-01-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-01-26T00:00:00\",\n        \"processedDate\": \"2012-02-02T00:00:00\",\n        \"closingDate\": \"2012-01-26T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1209,\n        \"propertyAddress\": \"3000 Royal Marco Way, 311, Marco Island, FL 34145-1892\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"210002191\",\n        \"listDate\": \"2010-01-11T00:00:00\",\n        \"expiredDate\": \"2013-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-01-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-04-01T00:00:00\",\n        \"processedDate\": \"2013-04-05T00:00:00\",\n        \"closingDate\": \"2013-04-01T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1210,\n        \"propertyAddress\": \"6000 Royal Marco Way, 246, Marco Island, FL 34145-1893\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"210002999\",\n        \"listDate\": \"2010-01-21T00:00:00\",\n        \"expiredDate\": \"2013-03-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-01-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-02-26T00:00:00\",\n        \"processedDate\": \"2013-03-04T00:00:00\",\n        \"closingDate\": \"2013-02-26T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1213,\n        \"propertyAddress\": \"828 E HIDEAWAY Circle, 444 4, Marco Island, FL 34145-1874\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211012224\",\n        \"listDate\": \"2011-04-13T00:00:00\",\n        \"expiredDate\": \"2012-07-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-04-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-05-08T00:00:00\",\n        \"processedDate\": \"2012-05-10T00:00:00\",\n        \"closingDate\": \"2012-05-08T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1215,\n        \"propertyAddress\": \"270 N COLLIER BLVD, 203, MARCO ISLAND, FL 34145-3041\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"210015200\",\n        \"listDate\": \"2010-04-28T00:00:00\",\n        \"expiredDate\": \"2012-10-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-05-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-07-10T00:00:00\",\n        \"processedDate\": \"2012-07-12T00:00:00\",\n        \"closingDate\": \"2012-07-10T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1216,\n        \"propertyAddress\": \"1015 Anglers Cove, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211505776\",\n        \"listDate\": \"2010-07-19T00:00:00\",\n        \"expiredDate\": \"2012-05-11T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-08-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2011-10-19T00:00:00\",\n        \"processedDate\": \"2011-10-20T00:00:00\",\n        \"closingDate\": \"2011-10-19T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1225,\n        \"propertyAddress\": \"160 PEACH CT, MARCO ISLAND, FL 34145-4727\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"210029518\",\n        \"listDate\": \"2010-09-01T00:00:00\",\n        \"expiredDate\": \"2012-05-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1227,\n        \"propertyAddress\": \"780 WHISKEY CREEK DR, MARCO ISLAND, FL 34145-1700\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"210022704\",\n        \"listDate\": \"2010-07-01T00:00:00\",\n        \"expiredDate\": \"2012-05-01T00:00:00\",\n        \"withdrawnDate\": \"2012-05-02T00:00:00\",\n        \"pendingDate\": \"2012-03-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-04-27T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"ML Msamplede\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1240,\n        \"propertyAddress\": \"508 TIGERTAIL CT, MARCO ISLAND, FL 34145-1934\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"210035141\",\n        \"listDate\": \"2010-10-20T00:00:00\",\n        \"expiredDate\": \"2012-10-20T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-12-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-01-12T00:00:00\",\n        \"processedDate\": \"2012-01-17T00:00:00\",\n        \"closingDate\": \"2012-01-12T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1242,\n        \"propertyAddress\": \"720 South Collier Blvd. #103, Marco Island, Fl 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"210035445\",\n        \"listDate\": \"2010-10-25T00:00:00\",\n        \"expiredDate\": \"2011-10-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Dave Flowsamples\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1243,\n        \"propertyAddress\": \"620 Diplomat Court, Marco Island, Fl 34145-2446\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"210035778\",\n        \"listDate\": \"2010-10-27T00:00:00\",\n        \"expiredDate\": \"2012-10-16T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-06-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-08-31T00:00:00\",\n        \"processedDate\": \"2012-09-05T00:00:00\",\n        \"closingDate\": \"2012-08-30T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1247,\n        \"propertyAddress\": \"159 SHORECREST CT, MARCO ISLAND, FL 34145-4140\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"210039408\",\n        \"listDate\": \"2010-11-24T00:00:00\",\n        \"expiredDate\": \"2012-05-18T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-01-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-01-27T00:00:00\",\n        \"processedDate\": \"2012-01-30T00:00:00\",\n        \"closingDate\": \"2012-01-27T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": \"ML Msamplede\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1248,\n        \"propertyAddress\": \"919 CAXAMBAS DR, MARCO ISLAND, FL 34145-5933\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"210038497\",\n        \"listDate\": \"2010-11-17T00:00:00\",\n        \"expiredDate\": \"2012-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-01-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-04-19T00:00:00\",\n        \"processedDate\": \"2012-04-20T00:00:00\",\n        \"closingDate\": \"2012-04-19T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1249,\n        \"propertyAddress\": \"881 Eubanks Court, Marco Island, FL 34145-6613\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"210038200\",\n        \"listDate\": \"2010-11-15T00:00:00\",\n        \"expiredDate\": \"2012-10-29T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-05-29T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-06-28T00:00:00\",\n        \"processedDate\": \"2012-07-05T00:00:00\",\n        \"closingDate\": \"2012-06-28T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1251,\n        \"propertyAddress\": \"374 Red Bay Lane, Marco Island, FL 34145-1870\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213503169\",\n        \"listDate\": \"2013-09-17T00:00:00\",\n        \"expiredDate\": \"2013-11-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-09-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-10-30T00:00:00\",\n        \"processedDate\": \"2013-10-31T00:00:00\",\n        \"closingDate\": \"2013-10-31T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1257,\n        \"propertyAddress\": \"350 S COLLIER Boulevard, 806, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211000711\",\n        \"listDate\": \"2011-01-05T00:00:00\",\n        \"expiredDate\": \"2012-07-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-02-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-03-19T00:00:00\",\n        \"processedDate\": \"2012-03-20T00:00:00\",\n        \"closingDate\": \"2012-03-19T00:00:00\",\n        \"listAgent\": \"Laura samplems\",\n        \"sellAgent\": \"ML Msamplede\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1265,\n        \"propertyAddress\": \"3000 Royal Marco Way, 413, Marco Island, FL 34145-1892\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211002691\",\n        \"listDate\": \"2011-01-19T00:00:00\",\n        \"expiredDate\": \"2012-09-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-05-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-06-22T00:00:00\",\n        \"processedDate\": \"2012-06-26T00:00:00\",\n        \"closingDate\": \"2012-06-22T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1275,\n        \"propertyAddress\": \"6000 ROYAL MARCO WAY, MARCO ISLAND, FL 34145-1893\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211005310\",\n        \"listDate\": \"2010-02-07T00:00:00\",\n        \"expiredDate\": \"2012-03-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-01-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-03-21T00:00:00\",\n        \"processedDate\": \"2012-03-29T00:00:00\",\n        \"closingDate\": \"2012-03-21T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1284,\n        \"propertyAddress\": \"911 Moon Court, Marco Island, FL 34145-3540\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211006526\",\n        \"listDate\": \"2011-02-19T00:00:00\",\n        \"expiredDate\": \"2012-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-06-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-08-20T00:00:00\",\n        \"processedDate\": \"2012-08-22T00:00:00\",\n        \"closingDate\": \"2012-08-20T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1285,\n        \"propertyAddress\": \"755 NAUTILUS CT, MARCO ISLAND, FL 34145-1917\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211007571\",\n        \"listDate\": \"2011-02-28T00:00:00\",\n        \"expiredDate\": \"2012-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-12-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2011-12-19T00:00:00\",\n        \"processedDate\": \"2011-12-21T00:00:00\",\n        \"closingDate\": \"2011-12-19T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1289,\n        \"propertyAddress\": \"720 North Collier Blvd. #303, 303, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211008909\",\n        \"listDate\": \"2011-03-14T00:00:00\",\n        \"expiredDate\": \"2012-05-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-03-28T00:00:00\",\n        \"cancelDate\": \"2011-06-30T00:00:00\",\n        \"estimatedClosingDate\": \"2011-05-27T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1291,\n        \"propertyAddress\": \"1100 S COLLIER BLVD, MARCO ISLAND, FL 34145-6433\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211009133\",\n        \"listDate\": \"2011-03-15T00:00:00\",\n        \"expiredDate\": \"2012-05-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-01-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-03-30T00:00:00\",\n        \"processedDate\": \"2012-04-04T00:00:00\",\n        \"closingDate\": \"2012-03-30T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": \"Darlene sampleddy\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1305,\n        \"propertyAddress\": \"350 S Collier Boulevard, 704, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211012766\",\n        \"listDate\": \"2011-04-18T00:00:00\",\n        \"expiredDate\": \"2014-04-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-05-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-07-03T00:00:00\",\n        \"processedDate\": \"2013-07-05T00:00:00\",\n        \"closingDate\": \"2013-07-02T00:00:00\",\n        \"listAgent\": \"Laura samplems\",\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1306,\n        \"propertyAddress\": \"350 S Collier Boulevard, 908, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211012829\",\n        \"listDate\": \"2011-04-18T00:00:00\",\n        \"expiredDate\": \"2013-06-29T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-04-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-04-15T00:00:00\",\n        \"processedDate\": \"2013-04-16T00:00:00\",\n        \"closingDate\": \"2013-04-15T00:00:00\",\n        \"listAgent\": \"Laura samplems\",\n        \"sellAgent\": \"Darlene sampleddy\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1329,\n        \"propertyAddress\": \"Escrow 562 TIGERTAIL COURT, MARCO ISLAND, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"2110601\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-04-07T00:00:00\",\n        \"cancelDate\": \"2011-10-04T00:00:00\",\n        \"estimatedClosingDate\": \"2011-12-31T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1342,\n        \"propertyAddress\": \"781 W ELKCAM Circle, A-6, MARCO ISLAND, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"210030006\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-08-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2011-10-05T00:00:00\",\n        \"processedDate\": \"2011-10-21T00:00:00\",\n        \"closingDate\": \"2011-10-05T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Dave Flowsamples\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1348,\n        \"propertyAddress\": \"1562 JAMAICA CT, MARCO ISLAND, FL 34145-4043\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211015660\",\n        \"listDate\": \"2011-05-16T00:00:00\",\n        \"expiredDate\": \"2012-05-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-02-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-03-30T00:00:00\",\n        \"processedDate\": \"2012-04-05T00:00:00\",\n        \"closingDate\": \"2012-03-30T00:00:00\",\n        \"listAgent\": \"Rosemarie Tsampleagni\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1349,\n        \"propertyAddress\": \"931 HERON CT, MARCO ISLAND, FL 34145-2311\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211015898\",\n        \"listDate\": \"2011-05-18T00:00:00\",\n        \"expiredDate\": \"2012-05-05T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-02-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-04-20T00:00:00\",\n        \"processedDate\": \"2012-04-23T00:00:00\",\n        \"closingDate\": \"2012-04-20T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1365,\n        \"propertyAddress\": \"891 HURON CT, 301, MARCO ISLAND, FL 34145-6262\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211502908\",\n        \"listDate\": \"2011-06-21T00:00:00\",\n        \"expiredDate\": \"2012-05-09T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-03-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-04-30T00:00:00\",\n        \"processedDate\": \"2012-05-02T00:00:00\",\n        \"closingDate\": \"2012-04-30T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1367,\n        \"propertyAddress\": \"190 N Collier Boulevard, Opal House1, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211503532\",\n        \"listDate\": \"2011-06-28T00:00:00\",\n        \"expiredDate\": \"2011-12-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-09-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2011-11-10T00:00:00\",\n        \"processedDate\": \"2011-10-21T00:00:00\",\n        \"closingDate\": \"2011-10-07T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1370,\n        \"propertyAddress\": \"1079 BLUEHILL CREEK DR, MARCO ISLAND, FL 34145-1704\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"209023643DD\",\n        \"listDate\": \"2009-06-25T00:00:00\",\n        \"expiredDate\": \"2013-04-30T00:00:00\",\n        \"withdrawnDate\": \"2012-04-30T00:00:00\",\n        \"pendingDate\": \"2012-02-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-04-26T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1373,\n        \"propertyAddress\": \"590 South Heathwood Drive, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"210025430DD\",\n        \"listDate\": \"2010-07-27T00:00:00\",\n        \"expiredDate\": \"2012-07-18T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-11-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-04-15T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Laura samplems\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1393,\n        \"propertyAddress\": \"767 PLANTATION CT, MARCO ISLAND, FL 34145-1921\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211509917\",\n        \"listDate\": \"2011-08-25T00:00:00\",\n        \"expiredDate\": \"2012-02-21T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-02-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-02-24T00:00:00\",\n        \"processedDate\": \"2012-02-29T00:00:00\",\n        \"closingDate\": \"2012-02-24T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1400,\n        \"propertyAddress\": \"6000 ROYAL MARCO Way, PH-E, MARCO ISLAND, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"210032987\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-08-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2011-10-21T00:00:00\",\n        \"processedDate\": \"2011-10-18T00:00:00\",\n        \"closingDate\": \"2011-10-01T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Darlene sampleddy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1402,\n        \"propertyAddress\": \"1633 Barbarosa Court, Marco Island, FL 34145-5150\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211512065\",\n        \"listDate\": \"2011-09-14T00:00:00\",\n        \"expiredDate\": \"2013-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-03-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-04-15T00:00:00\",\n        \"processedDate\": \"2013-04-11T00:00:00\",\n        \"closingDate\": \"2013-04-11T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1403,\n        \"propertyAddress\": \"150 JUNE CT, MARCO ISLAND, FL 34145-3533\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211512242\",\n        \"listDate\": \"2011-09-16T00:00:00\",\n        \"expiredDate\": \"2012-09-13T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-01-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-02-08T00:00:00\",\n        \"processedDate\": \"2012-02-15T00:00:00\",\n        \"closingDate\": \"2012-02-08T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1513,\n        \"propertyAddress\": \"601 SEAVIEW CT, 101, MARCO ISLAND, FL 34145-2917\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"211513827\",\n        \"listDate\": \"2011-09-30T00:00:00\",\n        \"expiredDate\": \"2012-05-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1521,\n        \"propertyAddress\": \"689 ROCKPORT CT, MARCO ISLAND, FL 34145-6837\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211514240\",\n        \"listDate\": \"2011-10-03T00:00:00\",\n        \"expiredDate\": \"2012-09-27T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-01-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-01-18T00:00:00\",\n        \"processedDate\": \"2012-01-20T00:00:00\",\n        \"closingDate\": \"2012-01-18T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1526,\n        \"propertyAddress\": \"780 S COLLIER Boulevard, 911, MARCO ISLAND, FL 34145-6023\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211514444\",\n        \"listDate\": \"2011-10-05T00:00:00\",\n        \"expiredDate\": \"2012-09-29T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-10-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2011-12-31T00:00:00\",\n        \"processedDate\": \"2011-12-01T00:00:00\",\n        \"closingDate\": \"2011-11-28T00:00:00\",\n        \"listAgent\": \"Laura samplems\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1533,\n        \"propertyAddress\": \"14826 Tybee Island Dr, Naples, FL 34119\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-09-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2011-10-26T00:00:00\",\n        \"processedDate\": \"2011-10-26T00:00:00\",\n        \"closingDate\": \"2011-10-26T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Gordana samplezich\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Bay Village\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1606,\n        \"propertyAddress\": \"58 N COLLIER BLVD, 208, MARCO ISLAND, FL 34145-3711\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211503756\",\n        \"listDate\": \"2011-10-19T00:00:00\",\n        \"expiredDate\": \"2012-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-12-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-01-06T00:00:00\",\n        \"processedDate\": \"2012-01-13T00:00:00\",\n        \"closingDate\": \"2012-01-06T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1607,\n        \"propertyAddress\": \"1971 SHEFFIELD AVE, MARCO ISLAND, FL 34145-6727\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211506851\",\n        \"listDate\": \"2011-10-17T00:00:00\",\n        \"expiredDate\": \"2012-06-12T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-12-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-04-27T00:00:00\",\n        \"processedDate\": \"2012-05-02T00:00:00\",\n        \"closingDate\": \"2012-04-27T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1608,\n        \"propertyAddress\": \"348 Nassau Court, Marco Island, FL 34145-4013\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"210028147\",\n        \"listDate\": \"2011-10-17T00:00:00\",\n        \"expiredDate\": \"2013-08-10T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-03-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-06-28T00:00:00\",\n        \"processedDate\": \"2013-07-09T00:00:00\",\n        \"closingDate\": \"2013-06-28T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1609,\n        \"propertyAddress\": \"848 Collier Court, 301, Marco Island, FL 34145-6570\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211003204\",\n        \"listDate\": \"2011-10-17T00:00:00\",\n        \"expiredDate\": \"2013-08-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-10-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-11-19T00:00:00\",\n        \"processedDate\": \"2012-11-26T00:00:00\",\n        \"closingDate\": \"2012-11-19T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1614,\n        \"propertyAddress\": \"3803 Sunshine Resort Rentals, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2011-10-21T00:00:00\",\n        \"closingDate\": \"2011-10-10T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1627,\n        \"propertyAddress\": \"601 Seaview Court, 204, Marco Island, FL 34145-2917\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211516522\",\n        \"listDate\": \"2011-10-21T00:00:00\",\n        \"expiredDate\": \"2013-02-28T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-04-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-02-14T00:00:00\",\n        \"processedDate\": \"2013-02-11T00:00:00\",\n        \"closingDate\": \"2013-02-08T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1632,\n        \"propertyAddress\": \"180 Seaview Ct, 1101, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-10-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2011-11-15T00:00:00\",\n        \"processedDate\": \"2011-11-21T00:00:00\",\n        \"closingDate\": \"2011-11-15T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Roya Nousample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Dorchester\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1634,\n        \"propertyAddress\": \"LOT/882 WHISKEY CREEK Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-10-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2011-10-21T00:00:00\",\n        \"processedDate\": \"2011-10-24T00:00:00\",\n        \"closingDate\": \"2011-10-24T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1653,\n        \"propertyAddress\": \"1108 1/2 N Collier 2875 Blvd, Ste A, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2011-10-26T00:00:00\",\n        \"closingDate\": \"2011-10-21T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1667,\n        \"propertyAddress\": \"180 SEAVIEW CT, 1002, MARCO ISLAND, FL 34145-3302\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"211517362DD\",\n        \"listDate\": \"2011-10-26T00:00:00\",\n        \"expiredDate\": \"2012-10-26T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-11-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2011-12-30T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1703,\n        \"propertyAddress\": \"130 N COLLIER Boulevard, E-10, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211515446\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-10-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2011-11-30T00:00:00\",\n        \"processedDate\": \"2011-12-06T00:00:00\",\n        \"closingDate\": \"2011-11-30T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Maureen sample-Joyce\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1705,\n        \"propertyAddress\": \"750 N COLLIER Boulevard, BD D110, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": \"2011-09-01T00:00:00\",\n        \"expiredDate\": \"2011-12-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-09-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2011-11-01T00:00:00\",\n        \"processedDate\": \"2011-11-02T00:00:00\",\n        \"closingDate\": \"2011-11-01T00:00:00\",\n        \"listAgent\": \"Rosemarie Tsampleagni\",\n        \"sellAgent\": \"Richard Msamplequsampledt\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Broad Avenue\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1706,\n        \"propertyAddress\": \"720 N COLLIER Blvd, 301, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-09-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2011-11-01T00:00:00\",\n        \"processedDate\": \"2011-11-02T00:00:00\",\n        \"closingDate\": \"2011-11-01T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Richard Msamplequsampledt\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Broad Avenue\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1723,\n        \"propertyAddress\": \"3861 Sunshine Resort Rentals, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1747,\n        \"propertyAddress\": \"530 S COLLIER BLVD, 601, MARCO ISLAND, FL 34145-5513\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"211518667\",\n        \"listDate\": \"2011-11-08T00:00:00\",\n        \"expiredDate\": \"2012-05-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1748,\n        \"propertyAddress\": \"1021 COLLIER Blvd S, 504, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211502210\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-11-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2011-12-01T00:00:00\",\n        \"processedDate\": \"2011-12-12T00:00:00\",\n        \"closingDate\": \"2011-12-01T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Dave Flowsamples\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1757,\n        \"propertyAddress\": \"4000 ROYAL MARCO WAY, 529, MARCO ISLAND, FL 34145-7808\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211519164\",\n        \"listDate\": \"2011-11-10T00:00:00\",\n        \"expiredDate\": \"2012-10-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-11-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2011-12-16T00:00:00\",\n        \"processedDate\": \"2011-12-19T00:00:00\",\n        \"closingDate\": \"2011-12-16T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1765,\n        \"propertyAddress\": \"861 S COLLIER Blvd, 301, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211506717\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-11-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2011-12-21T00:00:00\",\n        \"processedDate\": \"2011-12-27T00:00:00\",\n        \"closingDate\": \"2011-12-21T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1782,\n        \"propertyAddress\": \"651 SEAVIEW CT, B-105, MARCO ISLAND, FL 34145-2917\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211519811\",\n        \"listDate\": \"2011-11-16T00:00:00\",\n        \"expiredDate\": \"2012-05-11T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-02-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-04-19T00:00:00\",\n        \"processedDate\": \"2012-04-24T00:00:00\",\n        \"closingDate\": \"2012-04-19T00:00:00\",\n        \"listAgent\": \"Alexander Lsamplee\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1784,\n        \"propertyAddress\": \"720 S COLLIER BLVD, 903, MARCO ISLAND, FL 34145-6020\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"211514564DD\",\n        \"listDate\": \"2011-10-06T00:00:00\",\n        \"expiredDate\": \"2012-10-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-11-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2011-12-30T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1788,\n        \"propertyAddress\": \"3000 ROYAL MARCO Way, 321, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211515633\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-11-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2011-12-16T00:00:00\",\n        \"processedDate\": \"2011-12-20T00:00:00\",\n        \"closingDate\": \"2011-12-16T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"ML Msamplede\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1804,\n        \"propertyAddress\": \"4801 ISLAND POND CT, 1004, BONITA SPRINGS, FL 34134\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211520252\",\n        \"listDate\": \"2011-11-18T00:00:00\",\n        \"expiredDate\": \"2012-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-02-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-02-29T00:00:00\",\n        \"processedDate\": \"2012-03-06T00:00:00\",\n        \"closingDate\": \"2012-02-29T00:00:00\",\n        \"listAgent\": \"Carol Johnssample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Boston\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1810,\n        \"propertyAddress\": \"1539 Heights Court, Marco Island, FL 34145-6615\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211520502\",\n        \"listDate\": \"2011-11-21T00:00:00\",\n        \"expiredDate\": \"2013-03-29T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-11-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-03-29T00:00:00\",\n        \"processedDate\": \"2013-03-29T00:00:00\",\n        \"closingDate\": \"2013-03-29T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1817,\n        \"propertyAddress\": \"362 BALD EAGLE DR, MARCO ISLAND, FL 34145-3575\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211004315\",\n        \"listDate\": \"2011-01-28T00:00:00\",\n        \"expiredDate\": \"2012-05-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-01-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-04-10T00:00:00\",\n        \"processedDate\": \"2012-04-13T00:00:00\",\n        \"closingDate\": \"2012-04-10T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1822,\n        \"propertyAddress\": \"28 Tahiti Road, Marco Island, FL 34145-4019\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211520792\",\n        \"listDate\": \"2011-11-22T00:00:00\",\n        \"expiredDate\": \"2012-11-21T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-05-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-06-01T00:00:00\",\n        \"processedDate\": \"2012-06-04T00:00:00\",\n        \"closingDate\": \"2012-06-01T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1825,\n        \"propertyAddress\": \"140 SEAVIEW CT, N-103, MARCO ISLAND, FL 34145-3300\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211520875\",\n        \"listDate\": \"2011-11-21T00:00:00\",\n        \"expiredDate\": \"2012-11-18T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-12-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-02-15T00:00:00\",\n        \"processedDate\": \"2012-02-27T00:00:00\",\n        \"closingDate\": \"2012-02-22T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1845,\n        \"propertyAddress\": \"1108 1/2 N Collier 3162 Blvd, Ste A, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-11-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2011-11-14T00:00:00\",\n        \"processedDate\": \"2011-12-01T00:00:00\",\n        \"closingDate\": \"2011-12-01T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1846,\n        \"propertyAddress\": \"1108 1/2 N Collier 3163 Blvd, Ste A, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-11-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2011-11-07T00:00:00\",\n        \"processedDate\": \"2011-12-01T00:00:00\",\n        \"closingDate\": \"2011-12-01T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1853,\n        \"propertyAddress\": \"350 S Collier Boulevard, 1007, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211521559\",\n        \"listDate\": \"2011-11-30T00:00:00\",\n        \"expiredDate\": \"2012-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-08-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-11-01T00:00:00\",\n        \"processedDate\": \"2012-10-26T00:00:00\",\n        \"closingDate\": \"2012-10-23T00:00:00\",\n        \"listAgent\": \"Laura samplems\",\n        \"sellAgent\": \"Laura samplems\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1854,\n        \"propertyAddress\": \"720 S COLLIER BLVD, 903, MARCO ISLAND, FL 34145-6020\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211514564\",\n        \"listDate\": \"2011-10-06T00:00:00\",\n        \"expiredDate\": \"2012-10-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-01-31T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-03-01T00:00:00\",\n        \"processedDate\": \"2012-03-06T00:00:00\",\n        \"closingDate\": \"2012-03-01T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1855,\n        \"propertyAddress\": \"1411 FORREST Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"210006446\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-11-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2011-12-15T00:00:00\",\n        \"processedDate\": \"2011-12-16T00:00:00\",\n        \"closingDate\": \"2011-12-15T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1877,\n        \"propertyAddress\": \"156 Greenview St, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"211500145DD\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": \"2012-02-17T00:00:00\",\n        \"pendingDate\": \"2011-12-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-12-31T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Dave Flowsamples\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1889,\n        \"propertyAddress\": \"480 S COLLIER BLVD, 1203, MARCO ISLAND, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211522411\",\n        \"listDate\": \"2011-12-08T00:00:00\",\n        \"expiredDate\": \"2012-12-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-03-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-03-23T00:00:00\",\n        \"processedDate\": \"2012-03-27T00:00:00\",\n        \"closingDate\": \"2012-03-23T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1891,\n        \"propertyAddress\": \"950 IVORY CT, MARCO ISLAND, FL 34145-3532\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211522426\",\n        \"listDate\": \"2011-12-02T00:00:00\",\n        \"expiredDate\": \"2012-05-16T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-12-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-01-06T00:00:00\",\n        \"processedDate\": \"2012-01-11T00:00:00\",\n        \"closingDate\": \"2012-01-06T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1893,\n        \"propertyAddress\": \"7560 Bay Island Dr, 141, South Pasadena, FL 33707\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"U7523228\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-10-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2011-12-09T00:00:00\",\n        \"processedDate\": \"2011-12-13T00:00:00\",\n        \"closingDate\": \"2011-12-09T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Robyn Gsamplen\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Concord\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1920,\n        \"propertyAddress\": \"1108 1/2 N Collier 3275 Blvd, Ste A, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2011-12-16T00:00:00\",\n        \"closingDate\": \"2011-12-09T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1921,\n        \"propertyAddress\": \"1108 1/2 N Collier 3277 Blvd, Ste A, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2011-12-16T00:00:00\",\n        \"closingDate\": \"2011-12-09T00:00:00\",\n        \"listAgent\": \"Rosemarie Tsampleagni\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1933,\n        \"propertyAddress\": \"1545 KINGSTON Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2101333\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-12-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-01-26T00:00:00\",\n        \"processedDate\": \"2012-01-30T00:00:00\",\n        \"closingDate\": \"2012-01-26T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1939,\n        \"propertyAddress\": \"790 Elkcam Circle W, 101, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"211523419DD\",\n        \"listDate\": \"2011-12-19T00:00:00\",\n        \"expiredDate\": \"2012-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-05-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-06-15T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Dave Flowsamples\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1942,\n        \"propertyAddress\": \"1048 ADMIRALTY CT, MARCO ISLAND, FL 34145-2703\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211523489\",\n        \"listDate\": \"2011-12-19T00:00:00\",\n        \"expiredDate\": \"2012-06-16T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-03-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-04-27T00:00:00\",\n        \"processedDate\": \"2012-04-30T00:00:00\",\n        \"closingDate\": \"2012-04-27T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1954,\n        \"propertyAddress\": \"14843 Tybee Island, Naples, FL 34119\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-12-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-01-27T00:00:00\",\n        \"processedDate\": \"2012-01-31T00:00:00\",\n        \"closingDate\": \"2012-01-27T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Roxanne Jsampleke\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Boston\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 1974,\n        \"propertyAddress\": \"881 PANAMA Ct, 309, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"21112022\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-11-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2011-12-27T00:00:00\",\n        \"processedDate\": \"2011-12-28T00:00:00\",\n        \"closingDate\": \"2011-12-27T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2015,\n        \"propertyAddress\": \"1362 BAYPORT AVE, MARCO ISLAND, FL 34145-3908\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212000564\",\n        \"listDate\": \"2012-01-04T00:00:00\",\n        \"expiredDate\": \"2012-05-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-03-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-03-20T00:00:00\",\n        \"processedDate\": \"2012-03-21T00:00:00\",\n        \"closingDate\": \"2012-03-20T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2030,\n        \"propertyAddress\": \"990 SCOTT Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211012837\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-01-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-01-31T00:00:00\",\n        \"processedDate\": \"2012-02-02T00:00:00\",\n        \"closingDate\": \"2012-01-31T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2050,\n        \"propertyAddress\": \"320 SEAVIEW Court, 703, MARCO ISLAND, FL 34145-2914\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212001365\",\n        \"listDate\": \"2012-01-06T00:00:00\",\n        \"expiredDate\": \"2012-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-03-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-04-25T00:00:00\",\n        \"processedDate\": \"2012-04-27T00:00:00\",\n        \"closingDate\": \"2012-04-25T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": \"Helga Wsamplezold\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2104,\n        \"propertyAddress\": \"1 CRESENT ISLAND , ST JAMES CITY, FL 33956\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211520564\",\n        \"listDate\": \"2011-11-07T00:00:00\",\n        \"expiredDate\": \"2012-11-07T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2012-06-01T00:00:00\",\n        \"closingDate\": \"2012-06-01T00:00:00\",\n        \"listAgent\": \"Jean Bsampler\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Somerville\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2127,\n        \"propertyAddress\": \"4801 ISLAND POND CT, 605, BONITA SPRINGS, FL 34134\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"212001830W\",\n        \"listDate\": \"2012-01-12T00:00:00\",\n        \"expiredDate\": \"2012-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Carol Johnssample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Boston\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2128,\n        \"propertyAddress\": \"4811 Island Pond Court, 502, Bonita Springs, FL 34134\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212001809\",\n        \"listDate\": \"2012-01-12T00:00:00\",\n        \"expiredDate\": \"2013-09-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-03-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-05-22T00:00:00\",\n        \"processedDate\": \"2013-05-22T00:00:00\",\n        \"closingDate\": \"2013-05-22T00:00:00\",\n        \"listAgent\": \"Carol Johnssample\",\n        \"sellAgent\": \"Carol Johnssample\",\n        \"listOffice\": \"Boston\",\n        \"sellOffice\": \"Boston\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2135,\n        \"propertyAddress\": \"440 SEAVIEW CT, 1811, MARCO ISLAND, FL 34145-2617\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212001889\",\n        \"listDate\": \"2012-01-10T00:00:00\",\n        \"expiredDate\": \"2012-05-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-02-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-04-20T00:00:00\",\n        \"processedDate\": \"2012-04-23T00:00:00\",\n        \"closingDate\": \"2012-04-20T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2155,\n        \"propertyAddress\": \"870 SCOTT DR, MARCO ISLAND, FL 34145-5979\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212002252\",\n        \"listDate\": \"2012-01-13T00:00:00\",\n        \"expiredDate\": \"2013-11-13T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-03-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-04-30T00:00:00\",\n        \"processedDate\": \"2012-05-03T00:00:00\",\n        \"closingDate\": \"2012-04-30T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2156,\n        \"propertyAddress\": \"240 Copperfield Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-01-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-02-28T00:00:00\",\n        \"processedDate\": \"2012-03-01T00:00:00\",\n        \"closingDate\": \"2012-02-28T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Rosemarie Tsampleagni\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2160,\n        \"propertyAddress\": \"180 SEAVIEW CT, MARCO ISLAND, FL 34145-3302\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"211517362DD\",\n        \"listDate\": \"2011-10-26T00:00:00\",\n        \"expiredDate\": \"2012-10-26T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-02-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-06-19T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2176,\n        \"propertyAddress\": \"930 Giralda Court, Marco Island, FL 34145-6826\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212002709\",\n        \"listDate\": \"2012-01-19T00:00:00\",\n        \"expiredDate\": \"2013-01-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-09-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-03-21T00:00:00\",\n        \"processedDate\": \"2013-03-29T00:00:00\",\n        \"closingDate\": \"2013-03-26T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2180,\n        \"propertyAddress\": \"1108 1/2 N Collier 3697 Blvd, Ste A, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2012-01-20T00:00:00\",\n        \"closingDate\": \"2012-01-08T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2181,\n        \"propertyAddress\": \"1108 1/2 N Collier 3698 Blvd, Ste A, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2012-01-20T00:00:00\",\n        \"closingDate\": \"2012-01-08T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2182,\n        \"propertyAddress\": \"1108 1/2 N Collier 3699 Blvd, Ste A, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2012-01-20T00:00:00\",\n        \"closingDate\": \"2012-01-08T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2197,\n        \"propertyAddress\": \"1100 N COLLIER Blvd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2012-01-23T00:00:00\",\n        \"closingDate\": \"2012-01-16T00:00:00\",\n        \"listAgent\": \"Philip Csamplelins\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Broad Avenue\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2204,\n        \"propertyAddress\": \"1802 OLDS CT, MARCO ISLAND, FL 34145-5968\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212003118\",\n        \"listDate\": \"2012-01-23T00:00:00\",\n        \"expiredDate\": \"2013-01-19T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-02-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-05-07T00:00:00\",\n        \"processedDate\": \"2012-05-10T00:00:00\",\n        \"closingDate\": \"2012-05-07T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2209,\n        \"propertyAddress\": \"4811 ISLAND POND Ct, 302, Bonita Springs, FL 34134\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-01-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-03-15T00:00:00\",\n        \"processedDate\": \"2012-03-19T00:00:00\",\n        \"closingDate\": \"2012-03-15T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Peter samplent\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Boston\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2215,\n        \"propertyAddress\": \"350 S Collier Blvd, 1102, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-01-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-02-14T00:00:00\",\n        \"processedDate\": \"2012-02-17T00:00:00\",\n        \"closingDate\": \"2012-02-14T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Laura samplems\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 2224,\n        \"propertyAddress\": \"1269 BlueHill Crk, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-01-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-02-13T00:00:00\",\n        \"processedDate\": \"2012-02-16T00:00:00\",\n        \"closingDate\": \"2012-02-13T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"ML Msamplede\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3518,\n        \"propertyAddress\": \"730 S Collier Blvd, 1207, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-01-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-03-30T00:00:00\",\n        \"processedDate\": \"2012-04-04T00:00:00\",\n        \"closingDate\": \"2012-03-30T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Darlene sampleddy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3533,\n        \"propertyAddress\": \"1361 Cutler Court, Marco Island, FL 34145-5840\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212004181\",\n        \"listDate\": \"2012-01-31T00:00:00\",\n        \"expiredDate\": \"2013-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-03-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-06-26T00:00:00\",\n        \"processedDate\": \"2013-06-12T00:00:00\",\n        \"closingDate\": \"2013-06-10T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3537,\n        \"propertyAddress\": \"320 Seaview Court, 201, Marco Island, FL 34145-2914\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212004222\",\n        \"listDate\": \"2012-01-31T00:00:00\",\n        \"expiredDate\": \"2013-01-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-03-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-05-30T00:00:00\",\n        \"processedDate\": \"2012-05-31T00:00:00\",\n        \"closingDate\": \"2012-05-30T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": \"Helga Wsamplezold\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3546,\n        \"propertyAddress\": \"4801 Island Pond Court, 904, Bonita Springs, FL 34134\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212004395\",\n        \"listDate\": \"2012-02-01T00:00:00\",\n        \"expiredDate\": \"2013-01-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-04-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-06-21T00:00:00\",\n        \"processedDate\": \"2012-07-19T00:00:00\",\n        \"closingDate\": \"2012-06-21T00:00:00\",\n        \"listAgent\": \"Carol Johnssample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Boston\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3567,\n        \"propertyAddress\": \"325 Seabreeze Drive, Marco Island, FL 34145-1828\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212004646\",\n        \"listDate\": \"2012-02-03T00:00:00\",\n        \"expiredDate\": \"2014-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-31T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-25T00:00:00\",\n        \"processedDate\": \"2014-04-29T00:00:00\",\n        \"closingDate\": \"2014-04-25T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Lura Jsamplees\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3571,\n        \"propertyAddress\": \"1527 Galleion Ave, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-02-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-03-16T00:00:00\",\n        \"processedDate\": \"2012-03-19T00:00:00\",\n        \"closingDate\": \"2012-03-16T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Darlene sampleddy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3607,\n        \"propertyAddress\": \"2324 Island Cove Circle, Naples, FL 34109-0342\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"210012366\",\n        \"listDate\": \"2010-04-05T00:00:00\",\n        \"expiredDate\": \"2012-05-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-03-29T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-05-21T00:00:00\",\n        \"processedDate\": \"2012-05-24T00:00:00\",\n        \"closingDate\": \"2012-05-21T00:00:00\",\n        \"listAgent\": \"Sharon Kaltenbsamplen\",\n        \"sellAgent\": \"Cathy Owsample\",\n        \"listOffice\": \"Bay Village\",\n        \"sellOffice\": \"Bay Village\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3628,\n        \"propertyAddress\": \"1108 1/2 N Collier 5220 Blvd, Ste A, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2012-02-14T00:00:00\",\n        \"closingDate\": \"2012-02-07T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3629,\n        \"propertyAddress\": \"1108 1/2 N Collier 5221 Blvd, Ste A, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2012-02-14T00:00:00\",\n        \"closingDate\": \"2012-02-07T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3632,\n        \"propertyAddress\": \"320 Seaview Court, 1811, Marco Island, FL 34145-2914\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212005896\",\n        \"listDate\": \"2012-02-13T00:00:00\",\n        \"expiredDate\": \"2013-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-04-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-05-31T00:00:00\",\n        \"processedDate\": \"2012-06-04T00:00:00\",\n        \"closingDate\": \"2012-05-31T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": \"Helga Wsamplezold\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3635,\n        \"propertyAddress\": \"590 Heathwood Drive S, Marco Island, FL 34145-5080\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"210025430\",\n        \"listDate\": \"2010-07-27T00:00:00\",\n        \"expiredDate\": \"2012-09-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-02-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-12-31T00:00:00\",\n        \"processedDate\": \"2012-09-05T00:00:00\",\n        \"closingDate\": \"2012-08-31T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3693,\n        \"propertyAddress\": \"691 W ELKCAM CIR, 427, MARCO ISLAND, FL 34145-2203\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212007109\",\n        \"listDate\": \"2012-02-23T00:00:00\",\n        \"expiredDate\": \"2012-08-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-02-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-04-02T00:00:00\",\n        \"processedDate\": \"2012-04-05T00:00:00\",\n        \"closingDate\": \"2012-04-02T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3717,\n        \"propertyAddress\": \"861 S Collier Blvd S, 505, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211011857\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-02-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-04-06T00:00:00\",\n        \"processedDate\": \"2012-04-13T00:00:00\",\n        \"closingDate\": \"2012-04-06T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3740,\n        \"propertyAddress\": \"816 Manor Terrace, Marco Island, FL 34145-3442\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212007578\",\n        \"listDate\": \"2012-02-28T00:00:00\",\n        \"expiredDate\": \"2012-09-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-08-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-09-09T00:00:00\",\n        \"processedDate\": \"2012-09-07T00:00:00\",\n        \"closingDate\": \"2012-09-05T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3776,\n        \"propertyAddress\": \"6000 Royal Marco Way, 452, Marco Island, FL 34145-1893\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212008502\",\n        \"listDate\": \"2012-03-05T00:00:00\",\n        \"expiredDate\": \"2013-02-28T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-05-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-06-04T00:00:00\",\n        \"processedDate\": \"2012-06-07T00:00:00\",\n        \"closingDate\": \"2012-06-04T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3781,\n        \"propertyAddress\": \"260 Seaview Court, 302, Marco Island, FL 34145-3108\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212008654\",\n        \"listDate\": \"2012-03-07T00:00:00\",\n        \"expiredDate\": \"2013-09-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-08-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-09-13T00:00:00\",\n        \"processedDate\": \"2013-09-13T00:00:00\",\n        \"closingDate\": \"2013-09-13T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3810,\n        \"propertyAddress\": \"442 Worthington St, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2120389\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-02-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-03-07T00:00:00\",\n        \"processedDate\": \"2012-03-14T00:00:00\",\n        \"closingDate\": \"2012-03-07T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3814,\n        \"propertyAddress\": \"740 N Collier Blvd, 304, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211514551\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-03-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-03-12T00:00:00\",\n        \"processedDate\": \"2012-03-15T00:00:00\",\n        \"closingDate\": \"2012-03-12T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Rosemarie Tsampleagni\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3815,\n        \"propertyAddress\": \"1741 Wavecrest Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212001246\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-03-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-05-24T00:00:00\",\n        \"processedDate\": \"2012-05-29T00:00:00\",\n        \"closingDate\": \"2012-05-24T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3822,\n        \"propertyAddress\": \"930 BEAVER Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212006669\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-03-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-03-23T00:00:00\",\n        \"processedDate\": \"2012-03-27T00:00:00\",\n        \"closingDate\": \"2012-03-23T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Gil Gsamplebke\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Dorchester\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3826,\n        \"propertyAddress\": \"180 Seaview Court, 1002, Marco Island, FL 34145-3302\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211517362\",\n        \"listDate\": \"2011-10-26T00:00:00\",\n        \"expiredDate\": \"2012-10-26T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-03-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-08-10T00:00:00\",\n        \"processedDate\": \"2012-08-15T00:00:00\",\n        \"closingDate\": \"2012-08-10T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3850,\n        \"propertyAddress\": \"2000 Royal Marco Way, 504, Marco Island, FL 34145-1891\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212009924\",\n        \"listDate\": \"2012-03-19T00:00:00\",\n        \"expiredDate\": \"2013-03-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-08-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-08-27T00:00:00\",\n        \"processedDate\": \"2012-08-28T00:00:00\",\n        \"closingDate\": \"2012-08-27T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3857,\n        \"propertyAddress\": \"1504 BISCAYNE WAY, MARCO ISLAND, FL 34145-5206\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212010059\",\n        \"listDate\": \"2012-03-20T00:00:00\",\n        \"expiredDate\": \"2012-09-05T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-04-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-04-27T00:00:00\",\n        \"processedDate\": \"2012-05-02T00:00:00\",\n        \"closingDate\": \"2012-04-27T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3858,\n        \"propertyAddress\": \"5000 Royal Marco Way, 733, Marco Island, FL 34145-1896\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212010073\",\n        \"listDate\": \"2012-03-20T00:00:00\",\n        \"expiredDate\": \"2013-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-01-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-02-28T00:00:00\",\n        \"processedDate\": \"2013-03-01T00:00:00\",\n        \"closingDate\": \"2013-03-01T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3870,\n        \"propertyAddress\": \"1240 Marlin Court, Marco Island, FL 34145-5812\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212010199\",\n        \"listDate\": \"2012-03-21T00:00:00\",\n        \"expiredDate\": \"2012-11-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-10-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-10-31T00:00:00\",\n        \"processedDate\": \"2012-11-01T00:00:00\",\n        \"closingDate\": \"2012-10-30T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3873,\n        \"propertyAddress\": \"320 Seaview Ct, 1103, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211510993\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-03-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-04-19T00:00:00\",\n        \"processedDate\": \"2012-04-24T00:00:00\",\n        \"closingDate\": \"2012-04-19T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Helga Wsamplezold\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3895,\n        \"propertyAddress\": \"1108 1/2 N Collier 5625 Blvd, Ste A, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2012-03-27T00:00:00\",\n        \"closingDate\": \"2012-03-14T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3896,\n        \"propertyAddress\": \"820 Amber Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2120779\",\n        \"listDate\": \"2012-03-27T00:00:00\",\n        \"expiredDate\": \"2012-04-10T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-03-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-04-06T00:00:00\",\n        \"processedDate\": \"2012-04-20T00:00:00\",\n        \"closingDate\": \"2012-04-16T00:00:00\",\n        \"listAgent\": \"Dave Flowsamples\",\n        \"sellAgent\": \"Dave Flowsamples\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3916,\n        \"propertyAddress\": \"1853 Apataki Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212008346\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-03-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-04-23T00:00:00\",\n        \"processedDate\": \"2012-04-24T00:00:00\",\n        \"closingDate\": \"2012-04-23T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3918,\n        \"propertyAddress\": \"280 S Collier Blvd, 902, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2112186\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-03-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-03-28T00:00:00\",\n        \"processedDate\": \"2012-04-04T00:00:00\",\n        \"closingDate\": \"2012-03-28T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3946,\n        \"propertyAddress\": \"1001 Collier Boulevard S, TH2, Marco Island, FL 34145-6479\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212011510\",\n        \"listDate\": \"2012-04-02T00:00:00\",\n        \"expiredDate\": \"2013-03-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-04-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-05-29T00:00:00\",\n        \"processedDate\": \"2012-06-05T00:00:00\",\n        \"closingDate\": \"2012-05-29T00:00:00\",\n        \"listAgent\": \"Mike sample-Joyce\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3985,\n        \"propertyAddress\": \"140 Seaview Court, 602S, Marco Island, FL 34145-3300\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212011842\",\n        \"listDate\": \"2012-04-05T00:00:00\",\n        \"expiredDate\": \"2012-09-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-05-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-06-21T00:00:00\",\n        \"processedDate\": \"2012-06-26T00:00:00\",\n        \"closingDate\": \"2012-06-21T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3986,\n        \"propertyAddress\": \"4801 ISLAND POND CT, 605, BONITA SPRINGS, FL 34134\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"212001830\",\n        \"listDate\": \"2012-01-12T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Carol Johnssample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Boston\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3987,\n        \"propertyAddress\": \"540 Century Drive, Marco Island, FL 34145-2406\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212011878\",\n        \"listDate\": \"2012-04-05T00:00:00\",\n        \"expiredDate\": \"2013-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-02-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-03-22T00:00:00\",\n        \"processedDate\": \"2013-04-02T00:00:00\",\n        \"closingDate\": \"2013-04-02T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3990,\n        \"propertyAddress\": \"780 S Collier Blvd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2012-04-06T00:00:00\",\n        \"closingDate\": \"2012-04-01T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 3994,\n        \"propertyAddress\": \"4801 Island Pond Court, 605, Bonita Springs, FL 34134\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"212012004W\",\n        \"listDate\": \"2012-01-11T00:00:00\",\n        \"expiredDate\": \"2012-12-31T00:00:00\",\n        \"withdrawnDate\": \"2012-12-30T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Carol Johnssample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Boston\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4030,\n        \"propertyAddress\": \"1079 Bald Eagle Drive, 804N, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"210031289\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-04-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-04-23T00:00:00\",\n        \"processedDate\": \"2012-04-25T00:00:00\",\n        \"closingDate\": \"2012-04-23T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Dave Flowsamples\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4043,\n        \"propertyAddress\": \"860 Panama Court, 101, Marco Island, FL 34145-7207\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212013057\",\n        \"listDate\": \"2012-04-16T00:00:00\",\n        \"expiredDate\": \"2013-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-11-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-12-20T00:00:00\",\n        \"processedDate\": \"2013-01-04T00:00:00\",\n        \"closingDate\": \"2012-12-20T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4045,\n        \"propertyAddress\": \"190 Snowberry Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211518716\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-04-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-05-31T00:00:00\",\n        \"processedDate\": \"2012-06-01T00:00:00\",\n        \"closingDate\": \"2012-05-31T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4054,\n        \"propertyAddress\": \"541 Alamede Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2111567\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-04-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-05-02T00:00:00\",\n        \"processedDate\": \"2012-05-04T00:00:00\",\n        \"closingDate\": \"2012-05-02T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4055,\n        \"propertyAddress\": \"1091 Blue Hill Crk, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211517058\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-04-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-05-25T00:00:00\",\n        \"processedDate\": \"2012-06-01T00:00:00\",\n        \"closingDate\": \"2012-05-25T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"ML Msamplede\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4058,\n        \"propertyAddress\": \"676 W Elkcam Circle, 1225, Marco Island, FL 34145-2225\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212013316\",\n        \"listDate\": \"2012-04-18T00:00:00\",\n        \"expiredDate\": \"2012-10-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-09-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-10-05T00:00:00\",\n        \"processedDate\": \"2012-10-10T00:00:00\",\n        \"closingDate\": \"2012-10-05T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": \"ML Msamplede\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4059,\n        \"propertyAddress\": \"1108 1/2 N Collier 5863 Blvd, Ste A, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2012-04-19T00:00:00\",\n        \"closingDate\": \"2012-04-09T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4060,\n        \"propertyAddress\": \"1108 1/2 N Collier 5864 Blvd, Ste A, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2012-04-19T00:00:00\",\n        \"closingDate\": \"2012-04-09T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4073,\n        \"propertyAddress\": \"176 S Collier Blvd, 1101, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211014440\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-04-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-04-30T00:00:00\",\n        \"processedDate\": \"2012-05-01T00:00:00\",\n        \"closingDate\": \"2012-04-30T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Dave Flowsamples\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4082,\n        \"propertyAddress\": \"176 S Collier Boulevard, 803, Marco Island, FL 34145-4371\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212013836\",\n        \"listDate\": \"2012-04-23T00:00:00\",\n        \"expiredDate\": \"2013-04-23T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-03-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-04-01T00:00:00\",\n        \"processedDate\": \"2013-04-02T00:00:00\",\n        \"closingDate\": \"2013-04-01T00:00:00\",\n        \"listAgent\": \"Dave Flowsamples\",\n        \"sellAgent\": \"Angelica samplerews\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4090,\n        \"propertyAddress\": \"908 Panama Court, 506, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212008408\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-04-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-05-03T00:00:00\",\n        \"processedDate\": \"2012-05-04T00:00:00\",\n        \"closingDate\": \"2012-05-03T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4095,\n        \"propertyAddress\": \"87 Collier Boulevard N, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211522723\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-04-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-05-16T00:00:00\",\n        \"processedDate\": \"2012-05-18T00:00:00\",\n        \"closingDate\": \"2012-05-16T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Helga Wsamplezold\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4102,\n        \"propertyAddress\": \"1571 Jamaica Court, Marco Island, FL 34145-4045\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212014186\",\n        \"listDate\": \"2012-04-26T00:00:00\",\n        \"expiredDate\": \"2013-04-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-08-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-10-09T00:00:00\",\n        \"processedDate\": \"2012-09-28T00:00:00\",\n        \"closingDate\": \"2012-09-26T00:00:00\",\n        \"listAgent\": \"Laura samplems\",\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4132,\n        \"propertyAddress\": \"1079 Bluehill Creek Drive, Marco Island, FL 34145-1704\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"209023643\",\n        \"listDate\": \"2009-06-25T00:00:00\",\n        \"expiredDate\": \"2013-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-06-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-06-20T00:00:00\",\n        \"processedDate\": \"2012-06-21T00:00:00\",\n        \"closingDate\": \"2012-06-20T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": \"ML Msamplede\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4153,\n        \"propertyAddress\": \"871 Sea Dune Lane, Marco Island, FL 34145-1841\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212014994\",\n        \"listDate\": \"2012-05-03T00:00:00\",\n        \"expiredDate\": \"2013-05-05T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-06-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-07-05T00:00:00\",\n        \"processedDate\": \"2012-07-06T00:00:00\",\n        \"closingDate\": \"2012-07-05T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4163,\n        \"propertyAddress\": \"1261 Laurel Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212015190\",\n        \"listDate\": \"2007-09-11T00:00:00\",\n        \"expiredDate\": \"2012-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-04-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-09-30T00:00:00\",\n        \"processedDate\": \"2012-09-05T00:00:00\",\n        \"closingDate\": \"2012-08-30T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4173,\n        \"propertyAddress\": \"1085 Bluehill Creek, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2101246\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-05-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-05-25T00:00:00\",\n        \"processedDate\": \"2012-06-01T00:00:00\",\n        \"closingDate\": \"2012-05-25T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"ML Msamplede\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4186,\n        \"propertyAddress\": \"864 Banyan Court, Marco Island, FL 34145-5714\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212015752\",\n        \"listDate\": \"2012-05-09T00:00:00\",\n        \"expiredDate\": \"2012-11-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-08-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-10-02T00:00:00\",\n        \"processedDate\": \"2012-10-04T00:00:00\",\n        \"closingDate\": \"2012-10-01T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4194,\n        \"propertyAddress\": \"970 Cape Marco Drive, 1604, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212015901\",\n        \"listDate\": \"2012-05-10T00:00:00\",\n        \"expiredDate\": \"2013-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-11-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-12-21T00:00:00\",\n        \"processedDate\": \"2012-12-26T00:00:00\",\n        \"closingDate\": \"2012-12-21T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4205,\n        \"propertyAddress\": \"991 Collier Court, 211, Marco Island, FL 34145-6576\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212016091\",\n        \"listDate\": \"2012-05-14T00:00:00\",\n        \"expiredDate\": \"2013-05-09T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-09-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-11-08T00:00:00\",\n        \"processedDate\": \"2012-11-14T00:00:00\",\n        \"closingDate\": \"2012-11-08T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4207,\n        \"propertyAddress\": \"380 Seaview Ct, 1705, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212015921\",\n        \"listDate\": \"2010-03-10T00:00:00\",\n        \"expiredDate\": \"2012-08-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-05-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-08-31T00:00:00\",\n        \"processedDate\": \"2012-08-02T00:00:00\",\n        \"closingDate\": \"2012-07-27T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4210,\n        \"propertyAddress\": \"711 Elkcam Circle W, 124, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212013869\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-05-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-06-04T00:00:00\",\n        \"processedDate\": \"2012-06-08T00:00:00\",\n        \"closingDate\": \"2012-06-04T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4219,\n        \"propertyAddress\": \"440 Seaview Court, 1611, Marco Island, FL 34145-2617\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212016334\",\n        \"listDate\": \"2012-05-15T00:00:00\",\n        \"expiredDate\": \"2013-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-06-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-07-22T00:00:00\",\n        \"processedDate\": \"2013-07-29T00:00:00\",\n        \"closingDate\": \"2013-07-22T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": \"Angelica samplerews\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4232,\n        \"propertyAddress\": \"1271 Ember Court, Marco Island, FL 34145-5803\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212016619\",\n        \"listDate\": \"2012-05-17T00:00:00\",\n        \"expiredDate\": \"2013-09-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-07-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-10-13T00:00:00\",\n        \"processedDate\": \"2013-09-25T00:00:00\",\n        \"closingDate\": \"2013-09-23T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4236,\n        \"propertyAddress\": \"1658 San Marco Road, Marco Island, FL 34145-5163\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212016692\",\n        \"listDate\": \"2012-05-18T00:00:00\",\n        \"expiredDate\": \"2013-05-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-07-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-09-07T00:00:00\",\n        \"processedDate\": \"2012-09-11T00:00:00\",\n        \"closingDate\": \"2012-09-07T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4242,\n        \"propertyAddress\": \"8776 MUSTANG ISLAND Cir, Naples, FL 34113\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212013596\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-05-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-07-10T00:00:00\",\n        \"processedDate\": \"2012-07-11T00:00:00\",\n        \"closingDate\": \"2012-07-10T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Debbi McDsamplemott\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Broad Avenue\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4243,\n        \"propertyAddress\": \"4801 ISLAND POND Court, UNIT 402, Bonita Springs, FL 34134\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211517682\",\n        \"listDate\": \"2011-10-31T00:00:00\",\n        \"expiredDate\": \"2012-11-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-06-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-07-10T00:00:00\",\n        \"processedDate\": \"2012-07-16T00:00:00\",\n        \"closingDate\": \"2012-07-10T00:00:00\",\n        \"listAgent\": \"Mary Catherine Wsamplete\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Dorchester\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4254,\n        \"propertyAddress\": \"980 Huron Ct, 302, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212003459\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-05-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-06-29T00:00:00\",\n        \"processedDate\": \"2012-07-31T00:00:00\",\n        \"closingDate\": \"2012-06-29T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4263,\n        \"propertyAddress\": \"270 N Collier Blvd, 304, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212002667\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-05-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-06-29T00:00:00\",\n        \"processedDate\": \"2012-07-05T00:00:00\",\n        \"closingDate\": \"2012-06-29T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4282,\n        \"propertyAddress\": \"1079 Blue Hill Creek Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2012-05-31T00:00:00\",\n        \"closingDate\": \"2012-05-22T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4294,\n        \"propertyAddress\": \"790 W Elkcam Cir, 101, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211523419\",\n        \"listDate\": \"2011-12-19T00:00:00\",\n        \"expiredDate\": \"2012-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-06-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-08-09T00:00:00\",\n        \"processedDate\": \"2012-08-10T00:00:00\",\n        \"closingDate\": \"2012-08-09T00:00:00\",\n        \"listAgent\": \"Dave Flowsamples\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4298,\n        \"propertyAddress\": \"601 Seaview Ct, 212, Marco Island, FL 34145-2917\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212018288\",\n        \"listDate\": \"2012-06-04T00:00:00\",\n        \"expiredDate\": \"2013-01-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-11-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-01-15T00:00:00\",\n        \"processedDate\": \"2013-02-01T00:00:00\",\n        \"closingDate\": \"2013-01-25T00:00:00\",\n        \"listAgent\": \"Rosemarie Tsampleagni\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4307,\n        \"propertyAddress\": \"970 Cape Marco Dr, 1408, Marco Island, FL 34145-6656\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212018378\",\n        \"listDate\": \"2012-06-04T00:00:00\",\n        \"expiredDate\": \"2012-11-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-07-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-09-14T00:00:00\",\n        \"processedDate\": \"2012-09-11T00:00:00\",\n        \"closingDate\": \"2012-09-06T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4308,\n        \"propertyAddress\": \"20 Copperfield Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212010899\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-06-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-08-01T00:00:00\",\n        \"processedDate\": \"2012-08-06T00:00:00\",\n        \"closingDate\": \"2012-08-01T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4314,\n        \"propertyAddress\": \"1144 Whiteheart Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211506555\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-06-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-06-26T00:00:00\",\n        \"processedDate\": \"2012-06-27T00:00:00\",\n        \"closingDate\": \"2012-06-26T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Darlene sampleddy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4321,\n        \"propertyAddress\": \"562 Tigertail Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212012218\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-06-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-06-22T00:00:00\",\n        \"processedDate\": \"2012-06-28T00:00:00\",\n        \"closingDate\": \"2012-06-22T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4340,\n        \"propertyAddress\": \"350 Seabreeze Dr, Marco Island, FL 34145-1827\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212018810\",\n        \"listDate\": \"2012-06-08T00:00:00\",\n        \"expiredDate\": \"2013-05-14T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-02-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-04-08T00:00:00\",\n        \"processedDate\": \"2013-04-08T00:00:00\",\n        \"closingDate\": \"2013-04-08T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": \"Darlene sampleddy\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4345,\n        \"propertyAddress\": \"848 W Elkcam Cir, 305, Marco Island, FL 34145-2278\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212018776\",\n        \"listDate\": \"2012-06-08T00:00:00\",\n        \"expiredDate\": \"2013-06-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-10-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-11-13T00:00:00\",\n        \"processedDate\": \"2012-11-19T00:00:00\",\n        \"closingDate\": \"2012-11-13T00:00:00\",\n        \"listAgent\": \"Dave Flowsamples\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4371,\n        \"propertyAddress\": \"2340 Island Cove Cir, Naples, FL 34109\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-06-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-07-11T00:00:00\",\n        \"processedDate\": \"2012-07-17T00:00:00\",\n        \"closingDate\": \"2012-07-11T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Janet samplethbun\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Bay Village\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4394,\n        \"propertyAddress\": \"350 S Collier Blvd, 906, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": \"2012-06-18T00:00:00\",\n        \"expiredDate\": \"2013-02-18T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-06-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-07-31T00:00:00\",\n        \"processedDate\": \"2012-07-31T00:00:00\",\n        \"closingDate\": \"2012-07-25T00:00:00\",\n        \"listAgent\": \"Laura samplems\",\n        \"sellAgent\": \"Laura samplems\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4406,\n        \"propertyAddress\": \"688 W Elkcam Cir, 1011, Marco Island, FL 34145-2293\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212007058\",\n        \"listDate\": \"2012-02-23T00:00:00\",\n        \"expiredDate\": \"2012-12-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-08-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-08-21T00:00:00\",\n        \"processedDate\": \"2012-08-22T00:00:00\",\n        \"closingDate\": \"2012-08-21T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4458,\n        \"propertyAddress\": \"360 Cottage Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211015689\",\n        \"listDate\": \"2011-05-17T00:00:00\",\n        \"expiredDate\": \"2015-05-17T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-05-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-06-20T00:00:00\",\n        \"processedDate\": \"2014-06-20T00:00:00\",\n        \"closingDate\": \"2014-06-20T00:00:00\",\n        \"listAgent\": \"Lura Jsamplees\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4492,\n        \"propertyAddress\": \"1079 Bald Eagle Drive N, 203, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2111560\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-07-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-09-29T00:00:00\",\n        \"processedDate\": \"2012-10-01T00:00:00\",\n        \"closingDate\": \"2012-09-28T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4495,\n        \"propertyAddress\": \"1241 Mimosa Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212001113\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-07-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-08-08T00:00:00\",\n        \"processedDate\": \"2012-08-09T00:00:00\",\n        \"closingDate\": \"2012-08-08T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4500,\n        \"propertyAddress\": \"1070 Coillier Blvd, 503, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212020294\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-07-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-11-30T00:00:00\",\n        \"processedDate\": \"2012-10-31T00:00:00\",\n        \"closingDate\": \"2012-10-26T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4501,\n        \"propertyAddress\": \"780 Collier Blvd, 508, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211016176\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-07-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-08-21T00:00:00\",\n        \"processedDate\": \"2012-08-24T00:00:00\",\n        \"closingDate\": \"2012-08-21T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Helga Wsamplezold\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4504,\n        \"propertyAddress\": \"235 Sand Hill St, Marco Island, FL\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212022154\",\n        \"listDate\": \"2012-07-12T00:00:00\",\n        \"expiredDate\": \"2015-07-11T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-01-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-02-28T00:00:00\",\n        \"processedDate\": \"2015-03-04T00:00:00\",\n        \"closingDate\": \"2015-02-27T00:00:00\",\n        \"listAgent\": \"Cynthia Csampleogin\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4508,\n        \"propertyAddress\": \"764 Hernando Dr, Marco Island, FL 34145-1918\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212022210\",\n        \"listDate\": \"2012-07-12T00:00:00\",\n        \"expiredDate\": \"2013-07-11T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-11-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-01-30T00:00:00\",\n        \"processedDate\": \"2013-02-01T00:00:00\",\n        \"closingDate\": \"2013-01-30T00:00:00\",\n        \"listAgent\": \"Cynthia Csampleogin\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4530,\n        \"propertyAddress\": \"1080 S Collier Blvd, Marco Island, FL 34145-6492\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212022416\",\n        \"listDate\": \"2012-07-16T00:00:00\",\n        \"expiredDate\": \"2013-07-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-11-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-12-27T00:00:00\",\n        \"processedDate\": \"2012-12-27T00:00:00\",\n        \"closingDate\": \"2012-12-27T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4544,\n        \"propertyAddress\": \"919 Huron St, 203, Marco Island, FL 34145-7202\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212022867\",\n        \"listDate\": \"2012-07-19T00:00:00\",\n        \"expiredDate\": \"2015-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-01-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-03-11T00:00:00\",\n        \"processedDate\": \"2015-03-11T00:00:00\",\n        \"closingDate\": \"2015-03-11T00:00:00\",\n        \"listAgent\": \"Cynthia Csampleogin\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4573,\n        \"propertyAddress\": \"14476 Jekyll Island Ct, Naples, FL 34119\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-07-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-08-23T00:00:00\",\n        \"processedDate\": \"2012-08-22T00:00:00\",\n        \"closingDate\": \"2012-08-16T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Terri Moelsamplers\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Lexington\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4576,\n        \"propertyAddress\": \"1065 Bald Eagle Dr, Marco Island, FL 34145-2130\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212023717\",\n        \"listDate\": \"2012-07-30T00:00:00\",\n        \"expiredDate\": \"2013-07-19T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-08-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-10-31T00:00:00\",\n        \"processedDate\": \"2012-11-02T00:00:00\",\n        \"closingDate\": \"2012-10-31T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Cynthia Csampleogin\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4597,\n        \"propertyAddress\": \"1549 Kingston Ct, Marco Island, FL 34145-4109\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212024161\",\n        \"listDate\": \"2012-01-13T00:00:00\",\n        \"expiredDate\": \"2013-08-14T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-03-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-03-12T00:00:00\",\n        \"processedDate\": \"2013-03-13T00:00:00\",\n        \"closingDate\": \"2013-03-12T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4601,\n        \"propertyAddress\": \"701 S Kendall Dr, Marco Island, FL 34145-1945\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212024168\",\n        \"listDate\": \"2012-08-02T00:00:00\",\n        \"expiredDate\": \"2013-09-09T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-08-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-02-03T00:00:00\",\n        \"processedDate\": \"2014-02-06T00:00:00\",\n        \"closingDate\": \"2014-01-30T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4647,\n        \"propertyAddress\": \"371 Regatta St, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212024412\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-08-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-08-24T00:00:00\",\n        \"processedDate\": \"2012-08-28T00:00:00\",\n        \"closingDate\": \"2012-08-24T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Dave Flowsamples\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4654,\n        \"propertyAddress\": \"6021 Tidewater Island Cir, Fort Myers, FL 33908-4679\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212025614\",\n        \"listDate\": \"2012-08-01T00:00:00\",\n        \"expiredDate\": \"2013-06-20T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-04-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-06-17T00:00:00\",\n        \"processedDate\": \"2013-06-17T00:00:00\",\n        \"closingDate\": \"2013-06-17T00:00:00\",\n        \"listAgent\": \"Denise Csamplembre\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Somerville\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4664,\n        \"propertyAddress\": \"167 N Collier Blvd, M-9, Marco Island, FL 34145-3205\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212025894\",\n        \"listDate\": \"2012-08-20T00:00:00\",\n        \"expiredDate\": \"2013-07-18T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-05-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-05-30T00:00:00\",\n        \"processedDate\": \"2013-05-30T00:00:00\",\n        \"closingDate\": \"2013-05-30T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4678,\n        \"propertyAddress\": \"1081 Bald Eagle Drive, B-24, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212026363\",\n        \"listDate\": \"2012-08-23T00:00:00\",\n        \"expiredDate\": \"2013-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-03-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-04-13T00:00:00\",\n        \"processedDate\": \"2013-05-07T00:00:00\",\n        \"closingDate\": \"2013-05-07T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4698,\n        \"propertyAddress\": \"568 Goldcoast Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212011287\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-08-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-09-26T00:00:00\",\n        \"processedDate\": \"2012-09-28T00:00:00\",\n        \"closingDate\": \"2012-09-26T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"ML Msamplede\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4719,\n        \"propertyAddress\": \"340 Seabreeze Dr, Marco Island, FL 34145-1827\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212027462\",\n        \"listDate\": \"2012-09-05T00:00:00\",\n        \"expiredDate\": \"2013-08-06T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-11-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-12-17T00:00:00\",\n        \"processedDate\": \"2012-12-18T00:00:00\",\n        \"closingDate\": \"2012-12-17T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4725,\n        \"propertyAddress\": \"58 N Collier Blvd, 403, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2120212246\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-09-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-10-12T00:00:00\",\n        \"processedDate\": \"2012-10-25T00:00:00\",\n        \"closingDate\": \"2012-10-23T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Darlene sampleddy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4731,\n        \"propertyAddress\": \"350 S Collier Blvd, 401, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212027824\",\n        \"listDate\": \"2012-09-10T00:00:00\",\n        \"expiredDate\": \"2013-10-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-06-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-12-25T00:00:00\",\n        \"processedDate\": \"2013-10-04T00:00:00\",\n        \"closingDate\": \"2013-09-27T00:00:00\",\n        \"listAgent\": \"Rosemarie Tsampleagni\",\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4754,\n        \"propertyAddress\": \"320 Seaview Ct, 2002, Marco Island, FL 34145-2914\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212028406\",\n        \"listDate\": \"2012-09-14T00:00:00\",\n        \"expiredDate\": \"2013-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-09-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-01-08T00:00:00\",\n        \"processedDate\": \"2013-01-10T00:00:00\",\n        \"closingDate\": \"2013-01-10T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4756,\n        \"propertyAddress\": \"991 Scott Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212011234\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-09-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-09-25T00:00:00\",\n        \"processedDate\": \"2012-09-28T00:00:00\",\n        \"closingDate\": \"2012-09-25T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4767,\n        \"propertyAddress\": \"1861 Woodbine Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211511758\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-09-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-09-28T00:00:00\",\n        \"processedDate\": \"2012-09-28T00:00:00\",\n        \"closingDate\": \"2012-09-28T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"ML Msamplede\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4768,\n        \"propertyAddress\": \"804 Whiskey Crk, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212016963\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-09-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-09-24T00:00:00\",\n        \"processedDate\": \"2012-09-28T00:00:00\",\n        \"closingDate\": \"2012-09-28T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"ML Msamplede\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4801,\n        \"propertyAddress\": \"185 Bermuda Rd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212028321\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-09-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-11-06T00:00:00\",\n        \"processedDate\": \"2012-11-16T00:00:00\",\n        \"closingDate\": \"2012-11-07T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Laura samplems\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4803,\n        \"propertyAddress\": \"130 N Collier Blvd, H-7, Marco Island, FL 34145-3200\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212029537\",\n        \"listDate\": \"2012-09-24T00:00:00\",\n        \"expiredDate\": \"2013-06-12T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-11-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-12-19T00:00:00\",\n        \"processedDate\": \"2012-12-26T00:00:00\",\n        \"closingDate\": \"2012-12-19T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4808,\n        \"propertyAddress\": \"957 Snowberry Ct, Marco Island, FL 34145-3566\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212029226\",\n        \"listDate\": \"2012-09-26T00:00:00\",\n        \"expiredDate\": \"2013-09-26T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-05-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-06-18T00:00:00\",\n        \"processedDate\": \"2013-06-20T00:00:00\",\n        \"closingDate\": \"2013-06-19T00:00:00\",\n        \"listAgent\": \"Paul Strsampleg\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4811,\n        \"propertyAddress\": \"1861 Olds Ct, Marco Island, FL 34145-5993\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212029666\",\n        \"listDate\": \"2012-09-26T00:00:00\",\n        \"expiredDate\": \"2013-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-03-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-05-06T00:00:00\",\n        \"processedDate\": \"2013-05-08T00:00:00\",\n        \"closingDate\": \"2013-05-08T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4818,\n        \"propertyAddress\": \"900 S Collier Blvd, 302, Marco Island, FL 34145-6331\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212029865\",\n        \"listDate\": \"2012-09-25T00:00:00\",\n        \"expiredDate\": \"2012-11-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-09-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-11-12T00:00:00\",\n        \"processedDate\": \"2012-10-16T00:00:00\",\n        \"closingDate\": \"2012-10-15T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": \"Helga Wsamplezold\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4821,\n        \"propertyAddress\": \"269 Vintage Bay Dr, Marco Island, FL 34145-6934\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212015770\",\n        \"listDate\": \"2012-05-10T00:00:00\",\n        \"expiredDate\": \"2013-06-10T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-12-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-01-26T00:00:00\",\n        \"processedDate\": \"2013-02-04T00:00:00\",\n        \"closingDate\": \"2013-02-04T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4824,\n        \"propertyAddress\": \"428 Marquesas Cir, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"none\",\n        \"listDate\": \"2012-07-01T00:00:00\",\n        \"expiredDate\": \"2012-12-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-08-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-09-21T00:00:00\",\n        \"processedDate\": \"2012-10-01T00:00:00\",\n        \"closingDate\": \"2012-09-21T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4832,\n        \"propertyAddress\": \"1864 Granada Dr, Marco Island, FL 34145-6732\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212030096\",\n        \"listDate\": \"2011-01-11T00:00:00\",\n        \"expiredDate\": \"2013-03-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-02-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-02-13T00:00:00\",\n        \"processedDate\": \"2013-02-22T00:00:00\",\n        \"closingDate\": \"2013-02-22T00:00:00\",\n        \"listAgent\": \"Dave Flowsamples\",\n        \"sellAgent\": \"Dave Flowsamples\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4835,\n        \"propertyAddress\": \"1866 Granada Dr, Marco Island, FL 34145-6732\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212030095\",\n        \"listDate\": \"2011-01-11T00:00:00\",\n        \"expiredDate\": \"2013-03-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-02-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-02-13T00:00:00\",\n        \"processedDate\": \"2013-02-20T00:00:00\",\n        \"closingDate\": \"2013-02-20T00:00:00\",\n        \"listAgent\": \"Dave Flowsamples\",\n        \"sellAgent\": \"Dave Flowsamples\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4844,\n        \"propertyAddress\": \"172 Bermuda Rd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212018417\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-09-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-11-07T00:00:00\",\n        \"processedDate\": \"2012-11-19T00:00:00\",\n        \"closingDate\": \"2012-11-07T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4865,\n        \"propertyAddress\": \"893 Collier Ct, 406, Marco Island, FL 34145-6572\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212030763\",\n        \"listDate\": \"2012-10-05T00:00:00\",\n        \"expiredDate\": \"2013-09-19T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-03-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-04-26T00:00:00\",\n        \"processedDate\": \"2013-04-25T00:00:00\",\n        \"closingDate\": \"2013-04-25T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4898,\n        \"propertyAddress\": \"1025 Bald Eagle Dr, Marco Island, FL 34145-2130\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212031529\",\n        \"listDate\": \"2012-10-11T00:00:00\",\n        \"expiredDate\": \"2013-09-26T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-06-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-08-08T00:00:00\",\n        \"processedDate\": \"2013-08-12T00:00:00\",\n        \"closingDate\": \"2013-08-08T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4921,\n        \"propertyAddress\": \"260 Seaview Ct, 1505, Marco Island, FL 34145-3108\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212031913\",\n        \"listDate\": \"2012-10-15T00:00:00\",\n        \"expiredDate\": \"2013-04-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-01-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-02-15T00:00:00\",\n        \"processedDate\": \"2013-02-15T00:00:00\",\n        \"closingDate\": \"2013-02-15T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4949,\n        \"propertyAddress\": \"858 Hyacinth Ct, Marco Island, FL 34145-6814\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212032205\",\n        \"listDate\": \"2012-10-15T00:00:00\",\n        \"expiredDate\": \"2013-07-12T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-11-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-01-15T00:00:00\",\n        \"processedDate\": \"2013-01-15T00:00:00\",\n        \"closingDate\": \"2013-01-15T00:00:00\",\n        \"listAgent\": \"Paul Strsampleg\",\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4950,\n        \"propertyAddress\": \"350 S Collier Blvd, PH202, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212032519\",\n        \"listDate\": \"2012-10-19T00:00:00\",\n        \"expiredDate\": \"2013-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-03-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-04-15T00:00:00\",\n        \"processedDate\": \"2013-04-15T00:00:00\",\n        \"closingDate\": \"2013-04-15T00:00:00\",\n        \"listAgent\": \"Laura samplems\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4972,\n        \"propertyAddress\": \"176 S Collier Blvd, 103, Marco Island, FL 34145-4371\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212032480\",\n        \"listDate\": \"2012-10-18T00:00:00\",\n        \"expiredDate\": \"2013-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-03-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-06-27T00:00:00\",\n        \"processedDate\": \"2013-06-26T00:00:00\",\n        \"closingDate\": \"2013-06-26T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4974,\n        \"propertyAddress\": \"2000 Royal Marco Way, 504, Marco Island, FL 34145-1891\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212032702\",\n        \"listDate\": \"2012-10-22T00:00:00\",\n        \"expiredDate\": \"2013-04-19T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-02-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-03-20T00:00:00\",\n        \"processedDate\": \"2013-03-20T00:00:00\",\n        \"closingDate\": \"2013-03-20T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4977,\n        \"propertyAddress\": \"357 Morning Glory Ln, Marco Island, FL 34145-1864\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212032910\",\n        \"listDate\": \"2012-10-22T00:00:00\",\n        \"expiredDate\": \"2014-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-04-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-05-01T00:00:00\",\n        \"processedDate\": \"2014-04-30T00:00:00\",\n        \"closingDate\": \"2014-05-01T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4983,\n        \"propertyAddress\": \"891 Partridge Ct, Marco Island, FL 34145-5825\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212033025\",\n        \"listDate\": \"2012-10-23T00:00:00\",\n        \"expiredDate\": \"2013-07-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-01-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-02-05T00:00:00\",\n        \"processedDate\": \"2013-02-05T00:00:00\",\n        \"closingDate\": \"2013-02-05T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4984,\n        \"propertyAddress\": \"921 Heron Ct, Marco Island, FL 34145-2311\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212033113\",\n        \"listDate\": \"2012-10-24T00:00:00\",\n        \"expiredDate\": \"2013-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-04-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-06-07T00:00:00\",\n        \"processedDate\": \"2013-06-07T00:00:00\",\n        \"closingDate\": \"2013-06-07T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 4996,\n        \"propertyAddress\": \"1150 Ludlam Court, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212026181\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-10-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-11-20T00:00:00\",\n        \"processedDate\": \"2012-11-30T00:00:00\",\n        \"closingDate\": \"2012-11-29T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5003,\n        \"propertyAddress\": \"1020 S Collier Blvd, 104, Marco Island, FL 34145-8400\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212023829\",\n        \"listDate\": \"2012-07-31T00:00:00\",\n        \"expiredDate\": \"2013-02-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-11-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-11-15T00:00:00\",\n        \"processedDate\": \"2012-11-15T00:00:00\",\n        \"closingDate\": \"2012-11-09T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5021,\n        \"propertyAddress\": \"381 Cottage Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212024441\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-10-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-12-05T00:00:00\",\n        \"processedDate\": \"2012-12-06T00:00:00\",\n        \"closingDate\": \"2012-12-06T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5025,\n        \"propertyAddress\": \"220 S Collier Blvd, 605, Marco Island, FL 34145-4852\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212033719\",\n        \"listDate\": \"2012-10-29T00:00:00\",\n        \"expiredDate\": \"2014-07-10T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-04-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-06-30T00:00:00\",\n        \"processedDate\": \"2014-06-27T00:00:00\",\n        \"closingDate\": \"2014-06-27T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5026,\n        \"propertyAddress\": \"816 E Hideaway Cir, 233, Marco Island, FL 34145-1878\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212033729\",\n        \"listDate\": \"2012-10-29T00:00:00\",\n        \"expiredDate\": \"2013-10-25T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-03-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-03-28T00:00:00\",\n        \"processedDate\": \"2013-03-29T00:00:00\",\n        \"closingDate\": \"2013-03-29T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5034,\n        \"propertyAddress\": \"840 S Collier Blvd, 802, Marco Island, FL 34145-6154\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212033865\",\n        \"listDate\": \"2012-10-31T00:00:00\",\n        \"expiredDate\": \"2013-10-24T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-11-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-12-20T00:00:00\",\n        \"processedDate\": \"2012-12-21T00:00:00\",\n        \"closingDate\": \"2012-12-21T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5036,\n        \"propertyAddress\": \"798 Caxambas Dr, Marco Island, FL 34145-5985\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212033809\",\n        \"listDate\": \"2012-10-30T00:00:00\",\n        \"expiredDate\": \"2013-10-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-07-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-08-22T00:00:00\",\n        \"processedDate\": \"2013-08-27T00:00:00\",\n        \"closingDate\": \"2013-08-22T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5050,\n        \"propertyAddress\": \"520 S Collier Blvd, 603, Marco Island, FL 34145-5511\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213016747\",\n        \"listDate\": \"2012-11-01T00:00:00\",\n        \"expiredDate\": \"2013-07-05T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-05-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-07-03T00:00:00\",\n        \"processedDate\": \"2013-07-05T00:00:00\",\n        \"closingDate\": \"2013-07-02T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": \"Angelica samplerews\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5051,\n        \"propertyAddress\": \"350 S Collier Blvd, 1404, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212034202\",\n        \"listDate\": \"2012-11-02T00:00:00\",\n        \"expiredDate\": \"2013-09-25T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-04-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-04-22T00:00:00\",\n        \"processedDate\": \"2013-04-26T00:00:00\",\n        \"closingDate\": \"2013-04-22T00:00:00\",\n        \"listAgent\": \"Laura samplems\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5058,\n        \"propertyAddress\": \"850 S Collier Blvd, 1701, Marco Island, FL 34145-6120\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212034438\",\n        \"listDate\": \"2012-11-05T00:00:00\",\n        \"expiredDate\": \"2013-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-12-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-12-20T00:00:00\",\n        \"processedDate\": \"2012-12-20T00:00:00\",\n        \"closingDate\": \"2012-12-20T00:00:00\",\n        \"listAgent\": \"Cynthia Csampleogin\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5079,\n        \"propertyAddress\": \"1289 Orange Ct, Marco Island, FL 34145-2325\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212034782\",\n        \"listDate\": \"2012-11-06T00:00:00\",\n        \"expiredDate\": \"2013-07-23T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-03-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-04-15T00:00:00\",\n        \"processedDate\": \"2013-04-18T00:00:00\",\n        \"closingDate\": \"2013-04-18T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5086,\n        \"propertyAddress\": \"930 Moon Ct, Marco Island, FL 34145-3540\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212034915\",\n        \"listDate\": \"2012-11-05T00:00:00\",\n        \"expiredDate\": \"2013-11-05T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-11-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-01-15T00:00:00\",\n        \"processedDate\": \"2013-01-15T00:00:00\",\n        \"closingDate\": \"2013-01-15T00:00:00\",\n        \"listAgent\": \"Paul Strsampleg\",\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5098,\n        \"propertyAddress\": \"516 Spinnaker Dr, Marco Island, FL 34145-1819\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212035058\",\n        \"listDate\": \"2012-11-09T00:00:00\",\n        \"expiredDate\": \"2013-10-02T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-11-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-12-27T00:00:00\",\n        \"processedDate\": \"2012-12-28T00:00:00\",\n        \"closingDate\": \"2012-12-24T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5101,\n        \"propertyAddress\": \"820 Partridge Ct, Marco Island, FL 34145-5826\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212035134\",\n        \"listDate\": \"2012-11-08T00:00:00\",\n        \"expiredDate\": \"2013-11-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-11-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-12-28T00:00:00\",\n        \"processedDate\": \"2013-01-07T00:00:00\",\n        \"closingDate\": \"2012-12-31T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5102,\n        \"propertyAddress\": \"1167 Bluehill Creek Dr, Marco Island, FL 34145-1704\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212035110\",\n        \"listDate\": \"2012-11-08T00:00:00\",\n        \"expiredDate\": \"2014-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-05-02T00:00:00\",\n        \"processedDate\": \"2014-05-06T00:00:00\",\n        \"closingDate\": \"2014-05-06T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5115,\n        \"propertyAddress\": \"1290 Riverhead Ave, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212031183\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-11-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-12-05T00:00:00\",\n        \"processedDate\": \"2012-12-05T00:00:00\",\n        \"closingDate\": \"2012-12-05T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5116,\n        \"propertyAddress\": \"70 Buttercup Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212028445\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-11-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-12-04T00:00:00\",\n        \"processedDate\": \"2012-12-05T00:00:00\",\n        \"closingDate\": \"2012-12-04T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5123,\n        \"propertyAddress\": \"1861 Woodbine Ct, Marco Island, FL 34145-4737\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212035493\",\n        \"listDate\": \"2012-11-13T00:00:00\",\n        \"expiredDate\": \"2013-11-06T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-03-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-04-01T00:00:00\",\n        \"processedDate\": \"2013-04-04T00:00:00\",\n        \"closingDate\": \"2013-04-04T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5126,\n        \"propertyAddress\": \"568 Goldcoast Ct, Marco Island, FL 34145-3815\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212035501\",\n        \"listDate\": \"2012-11-13T00:00:00\",\n        \"expiredDate\": \"2013-11-06T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-03-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-04-01T00:00:00\",\n        \"processedDate\": \"2013-04-02T00:00:00\",\n        \"closingDate\": \"2013-04-01T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5145,\n        \"propertyAddress\": \"442 Balsam Ct, Marco Island, FL 34145-3804\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212036000\",\n        \"listDate\": \"2012-11-14T00:00:00\",\n        \"expiredDate\": \"2013-10-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-05-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-05-31T00:00:00\",\n        \"processedDate\": \"2013-06-04T00:00:00\",\n        \"closingDate\": \"2013-05-31T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5162,\n        \"propertyAddress\": \"1194 Samoa Ave, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-11-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-01-10T00:00:00\",\n        \"processedDate\": \"2013-02-11T00:00:00\",\n        \"closingDate\": \"2013-02-11T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Angelica samplerews\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5164,\n        \"propertyAddress\": \"730 S Collier Boulevard, 402, Marco Island, FL 34145-6020\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212036386\",\n        \"listDate\": \"2012-11-19T00:00:00\",\n        \"expiredDate\": \"2013-11-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-04-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-04-30T00:00:00\",\n        \"processedDate\": \"2013-05-06T00:00:00\",\n        \"closingDate\": \"2013-05-03T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5169,\n        \"propertyAddress\": \"464 S Parkhouse Ct, Marco Island, FL 34145-1920\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212036471\",\n        \"listDate\": \"2012-11-20T00:00:00\",\n        \"expiredDate\": \"2013-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-02-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-02-11T00:00:00\",\n        \"processedDate\": \"2013-02-12T00:00:00\",\n        \"closingDate\": \"2013-02-12T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5192,\n        \"propertyAddress\": \"140 Seaview Ct, 504S, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-11-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-12-11T00:00:00\",\n        \"processedDate\": \"2012-12-17T00:00:00\",\n        \"closingDate\": \"2012-12-11T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5204,\n        \"propertyAddress\": \"701 Nautilus Ct, Marco Island, FL 34145-1917\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212032871\",\n        \"listDate\": \"2012-10-23T00:00:00\",\n        \"expiredDate\": \"2013-10-17T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-03-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-04-30T00:00:00\",\n        \"processedDate\": \"2013-05-02T00:00:00\",\n        \"closingDate\": \"2013-04-30T00:00:00\",\n        \"listAgent\": \"Cynthia Csampleogin\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5205,\n        \"propertyAddress\": \"900 S Collier Blvd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2012-11-29T00:00:00\",\n        \"closingDate\": \"2012-11-19T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5214,\n        \"propertyAddress\": \"256 Meadowlark Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-11-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-12-21T00:00:00\",\n        \"processedDate\": \"2012-12-26T00:00:00\",\n        \"closingDate\": \"2012-12-26T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"ML Msamplede\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5223,\n        \"propertyAddress\": \"430 Henderson Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212038721\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-12-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-12-27T00:00:00\",\n        \"processedDate\": \"2012-12-28T00:00:00\",\n        \"closingDate\": \"2012-12-27T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cynthia Csampleogin\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5224,\n        \"propertyAddress\": \"22676 Island Pines Way, 247, Fort Myers Beach, FL 33931\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-12-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-12-17T00:00:00\",\n        \"processedDate\": \"2012-12-18T00:00:00\",\n        \"closingDate\": \"2012-12-17T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Augustina Hsampletz\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Somerville\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5226,\n        \"propertyAddress\": \"6000 Royal Marco Way, 651, Marco Island, FL 34145-1893\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212037647\",\n        \"listDate\": \"2012-12-03T00:00:00\",\n        \"expiredDate\": \"2013-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-01-29T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-05-01T00:00:00\",\n        \"processedDate\": \"2013-05-01T00:00:00\",\n        \"closingDate\": \"2013-05-01T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"ML Msamplede\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5233,\n        \"propertyAddress\": \"100 N Collier Blvd, 806, Marco Island, FL 34145-3714\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212034001\",\n        \"listDate\": \"2012-10-31T00:00:00\",\n        \"expiredDate\": \"2013-10-27T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-02-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-04-04T00:00:00\",\n        \"processedDate\": \"2013-04-12T00:00:00\",\n        \"closingDate\": \"2013-04-12T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5264,\n        \"propertyAddress\": \"620 Partridge Ct, Marco Island, FL 34145-5822\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212038195\",\n        \"listDate\": \"2012-12-07T00:00:00\",\n        \"expiredDate\": \"2013-03-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-01-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-03-08T00:00:00\",\n        \"processedDate\": \"2013-03-11T00:00:00\",\n        \"closingDate\": \"2013-03-08T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5273,\n        \"propertyAddress\": \"1860 Granada Dr, Marco Island, FL 34145-6732\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212038257\",\n        \"listDate\": \"2012-12-07T00:00:00\",\n        \"expiredDate\": \"2013-06-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-03-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-05-06T00:00:00\",\n        \"processedDate\": \"2013-05-13T00:00:00\",\n        \"closingDate\": \"2013-05-10T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5308,\n        \"propertyAddress\": \"1284 N Collier Blvd, Marco Island, FL 34145-2510\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212038651\",\n        \"listDate\": \"2012-12-12T00:00:00\",\n        \"expiredDate\": \"2013-06-28T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-03-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-03-19T00:00:00\",\n        \"processedDate\": \"2013-03-22T00:00:00\",\n        \"closingDate\": \"2013-03-19T00:00:00\",\n        \"listAgent\": \"Laura samplems\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5334,\n        \"propertyAddress\": \"1204 Lamplighter Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212026868\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-12-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-12-27T00:00:00\",\n        \"processedDate\": \"2013-01-09T00:00:00\",\n        \"closingDate\": \"2012-12-27T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5344,\n        \"propertyAddress\": \"480 S Collier Blvd, 814, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212033374\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-12-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-12-31T00:00:00\",\n        \"processedDate\": \"2013-01-04T00:00:00\",\n        \"closingDate\": \"2012-12-31T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5360,\n        \"propertyAddress\": \"1083 Old Marco Ln, Marco Island, FL 34145-6812\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212039257\",\n        \"listDate\": \"2012-12-26T00:00:00\",\n        \"expiredDate\": \"2014-06-04T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-04-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-05-08T00:00:00\",\n        \"processedDate\": \"2014-05-12T00:00:00\",\n        \"closingDate\": \"2014-05-08T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5362,\n        \"propertyAddress\": \"134 Marco Villas Drive, Apt 3, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2121952\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-12-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-02-01T00:00:00\",\n        \"processedDate\": \"2013-02-05T00:00:00\",\n        \"closingDate\": \"2013-02-04T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Dave Flowsamples\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5374,\n        \"propertyAddress\": \"789 Hernando Dr, Marco Island, FL 34145-1913\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212040013\",\n        \"listDate\": \"2012-12-28T00:00:00\",\n        \"expiredDate\": \"2013-12-20T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-03-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-05-24T00:00:00\",\n        \"processedDate\": \"2013-05-17T00:00:00\",\n        \"closingDate\": \"2013-05-13T00:00:00\",\n        \"listAgent\": \"Laura samplems\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5375,\n        \"propertyAddress\": \"824 Caribbean Ct, Marco Island, FL 34145-3422\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212039977\",\n        \"listDate\": \"2012-12-28T00:00:00\",\n        \"expiredDate\": \"2013-12-19T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-10-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-12-16T00:00:00\",\n        \"processedDate\": \"2013-12-18T00:00:00\",\n        \"closingDate\": \"2013-12-16T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5399,\n        \"propertyAddress\": \"986 Royal Marco Way, Marco Island, FL 34145-1829\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213000379\",\n        \"listDate\": \"2013-01-03T00:00:00\",\n        \"expiredDate\": \"2013-05-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-01-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-03-21T00:00:00\",\n        \"processedDate\": \"2013-03-21T00:00:00\",\n        \"closingDate\": \"2013-03-21T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5416,\n        \"propertyAddress\": \"1600 Galleon Ct, Marco Island, FL 34145-5166\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213000823\",\n        \"listDate\": \"2013-01-07T00:00:00\",\n        \"expiredDate\": \"2014-01-07T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-05-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-06-13T00:00:00\",\n        \"processedDate\": \"2013-06-13T00:00:00\",\n        \"closingDate\": \"2013-06-13T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5425,\n        \"propertyAddress\": \"14866 Tybee Island Dr, Naples, FL 34119-4826\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213000491\",\n        \"listDate\": \"2013-01-08T00:00:00\",\n        \"expiredDate\": \"2014-01-07T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-02-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-03-14T00:00:00\",\n        \"processedDate\": \"2013-03-26T00:00:00\",\n        \"closingDate\": \"2013-03-14T00:00:00\",\n        \"listAgent\": \"Sherrie Pfeffsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5444,\n        \"propertyAddress\": \"375 Gumbo Limbo Ln, Marco Island, FL 34145-1865\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213001380\",\n        \"listDate\": \"2013-01-09T00:00:00\",\n        \"expiredDate\": \"2014-01-07T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-02-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-02-22T00:00:00\",\n        \"processedDate\": \"2013-02-22T00:00:00\",\n        \"closingDate\": \"2013-02-22T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5448,\n        \"propertyAddress\": \"1402 N Collier Boulevard, SLIP 51, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213001242\",\n        \"listDate\": \"2013-01-08T00:00:00\",\n        \"expiredDate\": \"2013-07-05T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-02-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-03-05T00:00:00\",\n        \"processedDate\": \"2013-03-07T00:00:00\",\n        \"closingDate\": \"2013-02-28T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5469,\n        \"propertyAddress\": \"320 Seaview Ct, 1205, Marco Island, FL 34145-2914\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213001885\",\n        \"listDate\": \"2013-01-14T00:00:00\",\n        \"expiredDate\": \"2014-01-09T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-04-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-04-26T00:00:00\",\n        \"processedDate\": \"2013-05-02T00:00:00\",\n        \"closingDate\": \"2013-04-26T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5479,\n        \"propertyAddress\": \"3000 Royal Marco Way, PH-K, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2120595\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-01-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-03-01T00:00:00\",\n        \"processedDate\": \"2013-03-01T00:00:00\",\n        \"closingDate\": \"2013-03-01T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5498,\n        \"propertyAddress\": \"130 N Collier Blvd, E10, Marco Island, FL 34145-3200\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213001940\",\n        \"listDate\": \"2013-01-17T00:00:00\",\n        \"expiredDate\": \"2014-01-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-04-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-05-14T00:00:00\",\n        \"processedDate\": \"2013-05-14T00:00:00\",\n        \"closingDate\": \"2013-05-14T00:00:00\",\n        \"listAgent\": \"Mike sample-Joyce\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5505,\n        \"propertyAddress\": \"1740 Ludlow Rd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": \"2013-01-13T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-01-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2013-01-18T00:00:00\",\n        \"closingDate\": \"2013-01-14T00:00:00\",\n        \"listAgent\": \"INTERNAL USE - samplentals\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5516,\n        \"propertyAddress\": \"14843 Tybee Island Dr, Naples, FL 34119-4826\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212036267\",\n        \"listDate\": \"2012-11-15T00:00:00\",\n        \"expiredDate\": \"2013-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-01-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-02-20T00:00:00\",\n        \"processedDate\": \"2013-02-21T00:00:00\",\n        \"closingDate\": \"2013-02-15T00:00:00\",\n        \"listAgent\": \"Roxanne Jsampleke\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Boston\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5526,\n        \"propertyAddress\": \"860 Elkhorn Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2121600\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-01-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-01-28T00:00:00\",\n        \"processedDate\": \"2013-01-29T00:00:00\",\n        \"closingDate\": \"2013-01-25T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Dave Flowsamples\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5562,\n        \"propertyAddress\": \"881 Swan Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212016706\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-01-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-02-14T00:00:00\",\n        \"processedDate\": \"2013-02-19T00:00:00\",\n        \"closingDate\": \"2013-02-14T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5567,\n        \"propertyAddress\": \"95 Landmark St, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2102511\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-01-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-03-26T00:00:00\",\n        \"processedDate\": \"2013-03-27T00:00:00\",\n        \"closingDate\": \"2013-03-27T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5594,\n        \"propertyAddress\": \"470 Kendall Dr, Marco Island, FL 34145-2479\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213003971\",\n        \"listDate\": \"2013-01-29T00:00:00\",\n        \"expiredDate\": \"2013-08-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-03-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-04-16T00:00:00\",\n        \"processedDate\": \"2013-04-18T00:00:00\",\n        \"closingDate\": \"2013-04-18T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5607,\n        \"propertyAddress\": \"820 Amber Dr, Marco Island, FL 34145-5706\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213004375\",\n        \"listDate\": \"2013-02-01T00:00:00\",\n        \"expiredDate\": \"2014-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-03-26T00:00:00\",\n        \"processedDate\": \"2014-03-31T00:00:00\",\n        \"closingDate\": \"2014-03-26T00:00:00\",\n        \"listAgent\": \"Dave Flowsamples\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5609,\n        \"propertyAddress\": \"940 Cape Marco Drive, 505, Marco Island, FL 33937\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-01-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-03-13T00:00:00\",\n        \"processedDate\": \"2013-03-19T00:00:00\",\n        \"closingDate\": \"2013-03-15T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Darlene sampleddy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5610,\n        \"propertyAddress\": \"1255 Bluehill Creek Dr, Marco Island, FL 34145-1704\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213004467\",\n        \"listDate\": \"2013-02-01T00:00:00\",\n        \"expiredDate\": \"2014-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-07-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-08-30T00:00:00\",\n        \"processedDate\": \"2013-08-30T00:00:00\",\n        \"closingDate\": \"2013-08-30T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5640,\n        \"propertyAddress\": \"4801 Island Pond Ct, 304, Bonita Springs, FL 34134\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-02-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-04-02T00:00:00\",\n        \"processedDate\": \"2013-04-02T00:00:00\",\n        \"closingDate\": \"2013-04-01T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Ginger Licksampley\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Boston\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5643,\n        \"propertyAddress\": \"815 Caribbean Ct, Marco Island, FL 34145-3400\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213004933\",\n        \"listDate\": \"2013-02-06T00:00:00\",\n        \"expiredDate\": \"2014-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-03-27T00:00:00\",\n        \"processedDate\": \"2014-03-27T00:00:00\",\n        \"closingDate\": \"2014-03-27T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5660,\n        \"propertyAddress\": \"1108 1/2 N Collier 8437 Blvd, Ste A, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2013-02-07T00:00:00\",\n        \"closingDate\": \"2013-02-04T00:00:00\",\n        \"listAgent\": \"Rosemarie Tsampleagni\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5671,\n        \"propertyAddress\": \"888 Whiskey Creek Dr, Marco Island, FL 34145-1700\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213005403\",\n        \"listDate\": \"2013-02-08T00:00:00\",\n        \"expiredDate\": \"2014-02-06T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-02-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-03-19T00:00:00\",\n        \"processedDate\": \"2013-03-20T00:00:00\",\n        \"closingDate\": \"2013-03-19T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5673,\n        \"propertyAddress\": \"641 Spinnaker Dr, Marco Island, FL 34145-1820\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213005416\",\n        \"listDate\": \"2013-02-08T00:00:00\",\n        \"expiredDate\": \"2013-12-06T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-07-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-08-15T00:00:00\",\n        \"processedDate\": \"2013-08-15T00:00:00\",\n        \"closingDate\": \"2013-08-15T00:00:00\",\n        \"listAgent\": \"Cynthia Csampleogin\",\n        \"sellAgent\": \"ML Msamplede\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5683,\n        \"propertyAddress\": \"154 Greenbrier St, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2013-02-11T00:00:00\",\n        \"closingDate\": \"2013-02-05T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5687,\n        \"propertyAddress\": \"816 Dove Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213003589\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-02-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-04-17T00:00:00\",\n        \"processedDate\": \"2013-04-18T00:00:00\",\n        \"closingDate\": \"2013-04-18T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5696,\n        \"propertyAddress\": \"661 S Collier Boulevard, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2013-02-18T00:00:00\",\n        \"closingDate\": \"2013-01-31T00:00:00\",\n        \"listAgent\": \"Arlene Fsamplehsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5699,\n        \"propertyAddress\": \"900 N Collier Blvd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2013-02-12T00:00:00\",\n        \"closingDate\": \"2013-01-31T00:00:00\",\n        \"listAgent\": \"Mary Catherine Wsamplete\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Dorchester\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5700,\n        \"propertyAddress\": \"900 N Collier Blvd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2013-02-12T00:00:00\",\n        \"closingDate\": \"2013-02-01T00:00:00\",\n        \"listAgent\": \"Mary Catherine Wsamplete\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Dorchester\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5734,\n        \"propertyAddress\": \"1575 Twilight Way, Marco Island, FL 34145-5132\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213012490\",\n        \"listDate\": \"2013-04-12T00:00:00\",\n        \"expiredDate\": \"2014-02-10T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-05-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-07-18T00:00:00\",\n        \"processedDate\": \"2013-07-18T00:00:00\",\n        \"closingDate\": \"2013-07-18T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5792,\n        \"propertyAddress\": \"9288 Menaggio Ct, 102, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211508185\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-02-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-04-22T00:00:00\",\n        \"processedDate\": \"2013-04-18T00:00:00\",\n        \"closingDate\": \"2013-04-12T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Mike sample-Joyce\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5797,\n        \"propertyAddress\": \"14841 Fripp Island Ct, Naples, FL 34119\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213006175\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-02-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-04-09T00:00:00\",\n        \"processedDate\": \"2013-04-05T00:00:00\",\n        \"closingDate\": \"2013-04-05T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Gordana samplezich\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Bay Village\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5821,\n        \"propertyAddress\": \"1670 Copeland Dr, Marco Island, FL 34145-6631\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213007029\",\n        \"listDate\": \"2013-02-27T00:00:00\",\n        \"expiredDate\": \"2014-05-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-03T00:00:00\",\n        \"processedDate\": \"2014-04-07T00:00:00\",\n        \"closingDate\": \"2014-04-03T00:00:00\",\n        \"listAgent\": \"Paul Strsampleg\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5826,\n        \"propertyAddress\": \"125 92nd Ave , Treasure Island, FL 33706\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"U7574332\",\n        \"listDate\": \"2013-02-22T00:00:00\",\n        \"expiredDate\": \"2014-02-13T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-03-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-03-22T00:00:00\",\n        \"processedDate\": \"2013-03-28T00:00:00\",\n        \"closingDate\": \"2013-03-22T00:00:00\",\n        \"listAgent\": \"Gayle sampleffsample\",\n        \"sellAgent\": \"Gayle sampleffsample\",\n        \"listOffice\": \"Concord\",\n        \"sellOffice\": \"Concord\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5848,\n        \"propertyAddress\": \"530 S Collier Blvd, 301, Marco Island, FL 34145-5513\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213008096\",\n        \"listDate\": \"2013-03-04T00:00:00\",\n        \"expiredDate\": \"2014-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-03-26T00:00:00\",\n        \"processedDate\": \"2014-03-25T00:00:00\",\n        \"closingDate\": \"2014-03-25T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5855,\n        \"propertyAddress\": \"1108 1/2 N Collier 8722 Blvd, Ste A, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2013-03-05T00:00:00\",\n        \"closingDate\": \"2013-02-25T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5858,\n        \"propertyAddress\": \"900 N Coller Blvd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2013-03-05T00:00:00\",\n        \"closingDate\": \"2013-02-04T00:00:00\",\n        \"listAgent\": \"Arlene Fsamplehsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5870,\n        \"propertyAddress\": \"350 SE Collier Blvd, 201, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211517981\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-03-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-03-14T00:00:00\",\n        \"processedDate\": \"2013-03-14T00:00:00\",\n        \"closingDate\": \"2013-03-14T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5880,\n        \"propertyAddress\": \"900 S Collier Blvd, Unit 410, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2013-03-07T00:00:00\",\n        \"closingDate\": \"2013-02-11T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5884,\n        \"propertyAddress\": \"741 S Barfield Dr, Marco Island, FL 34145-5948\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213008480\",\n        \"listDate\": \"2013-03-07T00:00:00\",\n        \"expiredDate\": \"2014-01-14T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-04-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-06-28T00:00:00\",\n        \"processedDate\": \"2013-06-28T00:00:00\",\n        \"closingDate\": \"2013-06-28T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5891,\n        \"propertyAddress\": \"847 N Collier 8769 Blvd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2013-03-08T00:00:00\",\n        \"closingDate\": \"2013-02-18T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5897,\n        \"propertyAddress\": \"881 Panama Ct, 309, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213008577\",\n        \"listDate\": \"2013-03-08T00:00:00\",\n        \"expiredDate\": \"2014-03-04T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-01-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-02-10T00:00:00\",\n        \"processedDate\": \"2014-02-10T00:00:00\",\n        \"closingDate\": \"2014-02-10T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5902,\n        \"propertyAddress\": \"417 Hammond Oak Ln, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2013-03-11T00:00:00\",\n        \"closingDate\": \"2013-03-01T00:00:00\",\n        \"listAgent\": \"Richard Msamplequsampledt\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Broad Avenue\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5908,\n        \"propertyAddress\": \"10910 Oak Island Rd, 202, Bonita Springs, FL 34135\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-02-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-05-30T00:00:00\",\n        \"processedDate\": \"2013-06-05T00:00:00\",\n        \"closingDate\": \"2013-05-31T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Roxanne Jsampleke\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Boston\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5934,\n        \"propertyAddress\": \"730 Elkcam Cir, 203, Marco Island, FL 34145-2241\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213009151\",\n        \"listDate\": \"2013-03-13T00:00:00\",\n        \"expiredDate\": \"2013-12-05T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-09-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-10-09T00:00:00\",\n        \"processedDate\": \"2013-10-09T00:00:00\",\n        \"closingDate\": \"2013-10-09T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5943,\n        \"propertyAddress\": \"335 Henderson Court, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212040239\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-03-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-04-30T00:00:00\",\n        \"processedDate\": \"2013-05-02T00:00:00\",\n        \"closingDate\": \"2013-04-30T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"ML Msamplede\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5953,\n        \"propertyAddress\": \"897 Collier Ct, 202, Marco Island, FL 34145-6567\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213009415\",\n        \"listDate\": \"2013-03-15T00:00:00\",\n        \"expiredDate\": \"2014-02-28T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-03-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-04-12T00:00:00\",\n        \"processedDate\": \"2013-04-11T00:00:00\",\n        \"closingDate\": \"2013-04-11T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5954,\n        \"propertyAddress\": \"198 S Beach Dr, Marco Island, FL 34145-1831\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213009451\",\n        \"listDate\": \"2013-03-15T00:00:00\",\n        \"expiredDate\": \"2013-08-09T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-04-29T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-07-29T00:00:00\",\n        \"processedDate\": \"2013-08-01T00:00:00\",\n        \"closingDate\": \"2013-07-31T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5968,\n        \"propertyAddress\": \"320 Seaview Ct, 1705, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212032426\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-03-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-04-02T00:00:00\",\n        \"processedDate\": \"2013-04-05T00:00:00\",\n        \"closingDate\": \"2013-04-02T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Helga Wsamplezold\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5981,\n        \"propertyAddress\": \"4801 island Pond Ct, 605, Bonita Springs, FL 34134\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212034539\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-03-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-04-08T00:00:00\",\n        \"processedDate\": \"2013-04-08T00:00:00\",\n        \"closingDate\": \"2013-04-08T00:00:00\",\n        \"listAgent\": \"Carol Johnssample\",\n        \"sellAgent\": \"Carol Johnssample\",\n        \"listOffice\": \"Boston\",\n        \"sellOffice\": \"Boston\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5984,\n        \"propertyAddress\": \"1108 1/2 N Collier 8910 Blvd, Ste A, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2013-03-20T00:00:00\",\n        \"closingDate\": \"2013-03-13T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5989,\n        \"propertyAddress\": \"1708 Piedmont Ct, Marco Island, FL 34145-3824\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213009927\",\n        \"listDate\": \"2013-03-19T00:00:00\",\n        \"expiredDate\": \"2013-10-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-04-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-07-19T00:00:00\",\n        \"processedDate\": \"2013-07-19T00:00:00\",\n        \"closingDate\": \"2013-07-19T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 5996,\n        \"propertyAddress\": \"847 N Collier 8924 Blvd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2013-03-21T00:00:00\",\n        \"closingDate\": \"2013-03-13T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6010,\n        \"propertyAddress\": \"2000 Royal Marco Way, 603, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213006245\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-03-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-07-26T00:00:00\",\n        \"processedDate\": \"2013-07-29T00:00:00\",\n        \"closingDate\": \"2013-07-26T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6020,\n        \"propertyAddress\": \"1756 Granada Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"210039063\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-03-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-05-13T00:00:00\",\n        \"processedDate\": \"2013-05-14T00:00:00\",\n        \"closingDate\": \"2013-05-14T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Lura Jsamplees\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6021,\n        \"propertyAddress\": \"401 Marquesas Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2130726\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-03-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-04-15T00:00:00\",\n        \"processedDate\": \"2013-04-16T00:00:00\",\n        \"closingDate\": \"2013-04-16T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"ML Msamplede\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6044,\n        \"propertyAddress\": \"222 Barfield Drive N, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2130775\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-03-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-04-09T00:00:00\",\n        \"processedDate\": \"2013-04-05T00:00:00\",\n        \"closingDate\": \"2013-04-05T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6049,\n        \"propertyAddress\": \"36 Algonquin Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213002335\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-05-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-05-21T00:00:00\",\n        \"processedDate\": \"2013-05-21T00:00:00\",\n        \"closingDate\": \"2013-05-21T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6051,\n        \"propertyAddress\": \"6000 Royal Marco Pt, 450, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-03-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-04-19T00:00:00\",\n        \"processedDate\": \"2013-04-22T00:00:00\",\n        \"closingDate\": \"2013-04-19T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6059,\n        \"propertyAddress\": \"350 S Collier Boulevard, #703, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-03-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-05-31T00:00:00\",\n        \"processedDate\": \"2013-05-23T00:00:00\",\n        \"closingDate\": \"2013-05-21T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Laura samplems\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6085,\n        \"propertyAddress\": \"180 Waterside Cir, 201, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2130702\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-03-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-04-10T00:00:00\",\n        \"processedDate\": \"2013-04-11T00:00:00\",\n        \"closingDate\": \"2013-04-10T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6094,\n        \"propertyAddress\": \"4801 Island Pond Ct, 1001, Bonita Springs, FL 34134\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213011348\",\n        \"listDate\": \"2013-04-02T00:00:00\",\n        \"expiredDate\": \"2014-04-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-05-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-06-11T00:00:00\",\n        \"processedDate\": \"2013-06-11T00:00:00\",\n        \"closingDate\": \"2013-06-11T00:00:00\",\n        \"listAgent\": \"Carol Johnssample\",\n        \"sellAgent\": \"Gary Jasampleda\",\n        \"listOffice\": \"Boston\",\n        \"sellOffice\": \"Boston\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6119,\n        \"propertyAddress\": \"850 S Collier Blvd, Marco Island, FL 34145-6120\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213011532\",\n        \"listDate\": \"2013-04-04T00:00:00\",\n        \"expiredDate\": \"2014-03-26T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-10-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-12-02T00:00:00\",\n        \"processedDate\": \"2013-12-09T00:00:00\",\n        \"closingDate\": \"2013-12-06T00:00:00\",\n        \"listAgent\": \"Cynthia Csampleogin\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6126,\n        \"propertyAddress\": \"791 Elkcam Cir, B6, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2111956\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-03-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-04-24T00:00:00\",\n        \"processedDate\": \"2013-05-02T00:00:00\",\n        \"closingDate\": \"2013-04-29T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6127,\n        \"propertyAddress\": \"564 Spinnaker Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212021099\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-03-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-04-19T00:00:00\",\n        \"processedDate\": \"2013-04-10T00:00:00\",\n        \"closingDate\": \"2013-04-10T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Helga Wsamplezold\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6128,\n        \"propertyAddress\": \"890 S Collier Blvd, 1105, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212036696\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-04-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-05-13T00:00:00\",\n        \"processedDate\": \"2013-05-17T00:00:00\",\n        \"closingDate\": \"2013-05-13T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Darlene sampleddy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6129,\n        \"propertyAddress\": \"49 Greenbrier St, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2130856\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-04-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-05-06T00:00:00\",\n        \"processedDate\": \"2013-05-08T00:00:00\",\n        \"closingDate\": \"2013-05-06T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6162,\n        \"propertyAddress\": \"185 Bermuda Rd, Marco Island, FL 34145-3962\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213012218\",\n        \"listDate\": \"2013-04-09T00:00:00\",\n        \"expiredDate\": \"2014-04-03T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-07-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-10-31T00:00:00\",\n        \"processedDate\": \"2013-10-23T00:00:00\",\n        \"closingDate\": \"2013-10-23T00:00:00\",\n        \"listAgent\": \"Laura samplems\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6171,\n        \"propertyAddress\": \"1423 Jamaica Rd, Marco Island, FL 34145-3955\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213012460\",\n        \"listDate\": \"2013-04-08T00:00:00\",\n        \"expiredDate\": \"2014-04-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-05-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-06-27T00:00:00\",\n        \"processedDate\": \"2013-07-01T00:00:00\",\n        \"closingDate\": \"2013-06-27T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6180,\n        \"propertyAddress\": \"791 W Elkcam Cir, B1, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2122627\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-04-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-05-08T00:00:00\",\n        \"processedDate\": \"2013-05-08T00:00:00\",\n        \"closingDate\": \"2013-05-08T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Dave Flowsamples\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6183,\n        \"propertyAddress\": \"919 San Marco Rd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212027633\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-04-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-04-17T00:00:00\",\n        \"processedDate\": \"2013-04-19T00:00:00\",\n        \"closingDate\": \"2013-04-18T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6197,\n        \"propertyAddress\": \"145 Landmark St, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2130899\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-04-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-06-17T00:00:00\",\n        \"processedDate\": \"2013-06-20T00:00:00\",\n        \"closingDate\": \"2013-06-18T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6200,\n        \"propertyAddress\": \"237 N Collier 9217 Blvd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2013-04-17T00:00:00\",\n        \"closingDate\": \"2013-04-01T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6201,\n        \"propertyAddress\": \"1108 1/2 N Collier 9218 Blvd, Ste A, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2013-04-17T00:00:00\",\n        \"closingDate\": \"2013-04-08T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6212,\n        \"propertyAddress\": \"5000 Royal Marco Way Unit 432, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213012878\",\n        \"listDate\": \"2013-04-15T00:00:00\",\n        \"expiredDate\": \"2014-06-02T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-01-29T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-02-24T00:00:00\",\n        \"processedDate\": \"2014-02-24T00:00:00\",\n        \"closingDate\": \"2014-02-24T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6214,\n        \"propertyAddress\": \"1181 Ember Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2130422\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-04-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-04-16T00:00:00\",\n        \"processedDate\": \"2013-04-19T00:00:00\",\n        \"closingDate\": \"2013-04-19T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6215,\n        \"propertyAddress\": \"380 Seaview Ct, 1609, Marco Island, FL 34145-2915\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213012742\",\n        \"listDate\": \"2013-04-18T00:00:00\",\n        \"expiredDate\": \"2014-04-03T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-06-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-08-10T00:00:00\",\n        \"processedDate\": \"2013-08-09T00:00:00\",\n        \"closingDate\": \"2013-08-09T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6223,\n        \"propertyAddress\": \"237 N Collier 9253 Blvd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2013-04-19T00:00:00\",\n        \"closingDate\": \"2013-04-15T00:00:00\",\n        \"listAgent\": \"Sherrie Pfeffsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6228,\n        \"propertyAddress\": \"320 Seaview Ct, 707, Marco Island, FL 34145-2914\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213013302\",\n        \"listDate\": \"2013-04-19T00:00:00\",\n        \"expiredDate\": \"2014-01-19T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-10-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-12-14T00:00:00\",\n        \"processedDate\": \"2013-11-21T00:00:00\",\n        \"closingDate\": \"2013-11-19T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6269,\n        \"propertyAddress\": \"711 W Elkcam Cir, 116, Marco Island, FL 34145-2201\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213013888\",\n        \"listDate\": \"2013-04-25T00:00:00\",\n        \"expiredDate\": \"2013-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-04-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-05-22T00:00:00\",\n        \"processedDate\": \"2013-05-24T00:00:00\",\n        \"closingDate\": \"2013-05-22T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6276,\n        \"propertyAddress\": \"900 N Collier Blvd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2013-04-26T00:00:00\",\n        \"closingDate\": \"2013-04-22T00:00:00\",\n        \"listAgent\": \"Arlene Fsamplehsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6304,\n        \"propertyAddress\": \"581 Spinnaker, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2013-05-01T00:00:00\",\n        \"closingDate\": \"2013-04-12T00:00:00\",\n        \"listAgent\": \"Cynthia Csampleogin\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6306,\n        \"propertyAddress\": \"396 Bald Eagle Drive, Marco Island, FL 34145-3575\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213014239\",\n        \"listDate\": \"2013-04-30T00:00:00\",\n        \"expiredDate\": \"2013-10-29T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-07-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-08-23T00:00:00\",\n        \"processedDate\": \"2013-08-23T00:00:00\",\n        \"closingDate\": \"2013-08-23T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6323,\n        \"propertyAddress\": \"188 S Barfield Dr, Marco Island, FL 34145-5142\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213014689\",\n        \"listDate\": \"2013-05-03T00:00:00\",\n        \"expiredDate\": \"2014-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-12-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-03-04T00:00:00\",\n        \"processedDate\": \"2014-03-10T00:00:00\",\n        \"closingDate\": \"2014-02-25T00:00:00\",\n        \"listAgent\": \"Gwen Tolssample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6324,\n        \"propertyAddress\": \"198 S Barfield Dr, Marco Island, FL 34145-5142\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213014835\",\n        \"listDate\": \"2013-05-03T00:00:00\",\n        \"expiredDate\": \"2014-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-12-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-03-04T00:00:00\",\n        \"processedDate\": \"2014-03-10T00:00:00\",\n        \"closingDate\": \"2014-02-25T00:00:00\",\n        \"listAgent\": \"Gwen Tolssample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6334,\n        \"propertyAddress\": \"930 Cape Marco Dr, 505, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-04-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-07-03T00:00:00\",\n        \"processedDate\": \"2013-07-03T00:00:00\",\n        \"closingDate\": \"2013-07-03T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Darlene sampleddy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6354,\n        \"propertyAddress\": \"206 Rockhill Ct, Marco Island, FL 34145-3830\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213012859\",\n        \"listDate\": \"2013-04-15T00:00:00\",\n        \"expiredDate\": \"2014-04-05T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-07-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-08-15T00:00:00\",\n        \"processedDate\": \"2013-08-16T00:00:00\",\n        \"closingDate\": \"2013-08-16T00:00:00\",\n        \"listAgent\": \"Paul Strsampleg\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6391,\n        \"propertyAddress\": \"70 Buttercup PYMT 2 Court, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"New Construction\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-05-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-12-31T00:00:00\",\n        \"processedDate\": \"2013-10-09T00:00:00\",\n        \"closingDate\": \"2013-10-04T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6392,\n        \"propertyAddress\": \"1568 Jamaica Ct, Marco Island, FL 34145-4043\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213015923\",\n        \"listDate\": \"2013-05-15T00:00:00\",\n        \"expiredDate\": \"2014-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-05-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-07-08T00:00:00\",\n        \"processedDate\": \"2013-07-12T00:00:00\",\n        \"closingDate\": \"2013-07-08T00:00:00\",\n        \"listAgent\": \"Rosemarie Tsampleagni\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6398,\n        \"propertyAddress\": \"730 S Collier Boulevard, 101, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2121513\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-05-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-05-27T00:00:00\",\n        \"processedDate\": \"2013-05-29T00:00:00\",\n        \"closingDate\": \"2013-05-29T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Laura samplems\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6401,\n        \"propertyAddress\": \"567 SEAVIEW Ct, E3, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-05-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-06-28T00:00:00\",\n        \"processedDate\": \"2013-07-01T00:00:00\",\n        \"closingDate\": \"2013-06-28T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jesse Msampleeno\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Fairfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6402,\n        \"propertyAddress\": \"801 S Collier Boulevard, #N503, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2130810\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-05-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-05-27T00:00:00\",\n        \"processedDate\": \"2013-05-28T00:00:00\",\n        \"closingDate\": \"2013-05-28T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Laura samplems\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6404,\n        \"propertyAddress\": \"70 Buttercup PYMT 1 Court, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2013-05-17T00:00:00\",\n        \"closingDate\": \"2013-05-13T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6413,\n        \"propertyAddress\": \"291 S Collier Blvd, 208, Marco Island, FL 34145-4858\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213016223\",\n        \"listDate\": \"2013-05-17T00:00:00\",\n        \"expiredDate\": \"2014-04-23T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-06-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-07-25T00:00:00\",\n        \"processedDate\": \"2013-07-29T00:00:00\",\n        \"closingDate\": \"2013-07-25T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6441,\n        \"propertyAddress\": \"2255 Island Cove Cir, Naples, FL 34109\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212018460\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-05-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-06-26T00:00:00\",\n        \"processedDate\": \"2013-06-27T00:00:00\",\n        \"closingDate\": \"2013-06-27T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Dave samplenner\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Bay Village\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6447,\n        \"propertyAddress\": \"235 Seaview Ct, C-5, Marco Island, FL 34145-3107\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213016697\",\n        \"listDate\": \"2013-05-23T00:00:00\",\n        \"expiredDate\": \"2014-05-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-05-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-06-12T00:00:00\",\n        \"processedDate\": \"2013-06-20T00:00:00\",\n        \"closingDate\": \"2013-06-12T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6453,\n        \"propertyAddress\": \"186 Beachcomber St, Marco Island, FL 34145-4410\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213017108\",\n        \"listDate\": \"2013-05-28T00:00:00\",\n        \"expiredDate\": \"2014-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-06-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-07-22T00:00:00\",\n        \"processedDate\": \"2013-08-02T00:00:00\",\n        \"closingDate\": \"2013-08-02T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6469,\n        \"propertyAddress\": \"270 N Collier Blvd, 307, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2120473\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-05-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-07-20T00:00:00\",\n        \"processedDate\": \"2013-08-02T00:00:00\",\n        \"closingDate\": \"2013-08-01T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6488,\n        \"propertyAddress\": \"1045 Caxambas Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213015448\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-06-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-07-31T00:00:00\",\n        \"processedDate\": \"2013-08-01T00:00:00\",\n        \"closingDate\": \"2013-08-01T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6519,\n        \"propertyAddress\": \"900 Collier Ct, 303, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213010838\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-06-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-07-03T00:00:00\",\n        \"processedDate\": \"2013-07-03T00:00:00\",\n        \"closingDate\": \"2013-07-03T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6525,\n        \"propertyAddress\": \"970 Cape Marco Dr, 401, Marco Island, FL 34145-6612\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213018404\",\n        \"listDate\": \"2013-06-10T00:00:00\",\n        \"expiredDate\": \"2014-06-07T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-01-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-02-26T00:00:00\",\n        \"processedDate\": \"2014-02-27T00:00:00\",\n        \"closingDate\": \"2014-02-26T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6537,\n        \"propertyAddress\": \"2000 Royal Marco Way, 404, Marco Island, FL 34145-1891\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213017866\",\n        \"listDate\": \"2013-06-12T00:00:00\",\n        \"expiredDate\": \"2014-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-01-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-03-31T00:00:00\",\n        \"processedDate\": \"2014-04-03T00:00:00\",\n        \"closingDate\": \"2014-03-31T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6556,\n        \"propertyAddress\": \"811 Scott Dr, Marco Island, FL 34145-5980\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213018805\",\n        \"listDate\": \"2013-06-14T00:00:00\",\n        \"expiredDate\": \"2014-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-06-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-07-10T00:00:00\",\n        \"processedDate\": \"2013-07-12T00:00:00\",\n        \"closingDate\": \"2013-07-10T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6565,\n        \"propertyAddress\": \"13 Gulfport Court, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213001837\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-06-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-07-11T00:00:00\",\n        \"processedDate\": \"2013-07-11T00:00:00\",\n        \"closingDate\": \"2013-07-11T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6572,\n        \"propertyAddress\": \"24675 Canary Island Ct, 103, Bonita Springs, FL 34134\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213012974\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-06-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-07-09T00:00:00\",\n        \"processedDate\": \"2013-07-09T00:00:00\",\n        \"closingDate\": \"2013-07-09T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6579,\n        \"propertyAddress\": \"444 N Barfield Dr, Marco Island, FL 34145-4038\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213019202\",\n        \"listDate\": \"2013-06-18T00:00:00\",\n        \"expiredDate\": \"2014-06-06T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-11-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-12-30T00:00:00\",\n        \"processedDate\": \"2013-12-18T00:00:00\",\n        \"closingDate\": \"2013-12-17T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6587,\n        \"propertyAddress\": \"716 Seagrape Drive, Marco Island, FL 34145-5732\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213012266\",\n        \"listDate\": \"2013-04-15T00:00:00\",\n        \"expiredDate\": \"2014-04-04T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-06-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-07-29T00:00:00\",\n        \"processedDate\": \"2013-08-01T00:00:00\",\n        \"closingDate\": \"2013-08-01T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": \"ML Msamplede\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6599,\n        \"propertyAddress\": \"1150 Bluehill Creek Dr, Marco Island, FL 34145-1702\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213019503\",\n        \"listDate\": \"2013-06-21T00:00:00\",\n        \"expiredDate\": \"2014-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-06-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-07-30T00:00:00\",\n        \"processedDate\": \"2014-08-01T00:00:00\",\n        \"closingDate\": \"2014-07-30T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6605,\n        \"propertyAddress\": \"1156 Bluehill Creek Dr, Marco Island, FL 34145-1702\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213019686\",\n        \"listDate\": \"2013-06-24T00:00:00\",\n        \"expiredDate\": \"2014-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-08T00:00:00\",\n        \"processedDate\": \"2014-04-08T00:00:00\",\n        \"closingDate\": \"2014-04-08T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6630,\n        \"propertyAddress\": \"1284 N Collier Blvd, Marco Island, FL 34145-2510\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213020113\",\n        \"listDate\": \"2013-06-28T00:00:00\",\n        \"expiredDate\": \"2014-09-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-06-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-08-15T00:00:00\",\n        \"processedDate\": \"2014-08-14T00:00:00\",\n        \"closingDate\": \"2014-08-14T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6634,\n        \"propertyAddress\": \"1041 Swallow Ave, 202, Marco Island, FL 34145-7209\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213020402\",\n        \"listDate\": \"2013-07-01T00:00:00\",\n        \"expiredDate\": \"2014-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-04T00:00:00\",\n        \"processedDate\": \"2014-04-07T00:00:00\",\n        \"closingDate\": \"2014-04-04T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6635,\n        \"propertyAddress\": \"1108 1/2 N Collier 9847 Blvd, Ste A, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2013-07-01T00:00:00\",\n        \"closingDate\": \"2013-06-14T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6661,\n        \"propertyAddress\": \"255 Waterside Cir, 201, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-07-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-09-30T00:00:00\",\n        \"processedDate\": \"2013-09-24T00:00:00\",\n        \"closingDate\": \"2013-09-24T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jesse Msampleeno\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Fairfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6693,\n        \"propertyAddress\": \"1026 Bald Eagle Dr , Marco Island, FL 34145-6800\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213021647\",\n        \"listDate\": \"2013-07-12T00:00:00\",\n        \"expiredDate\": \"2013-10-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-07-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-08-06T00:00:00\",\n        \"processedDate\": \"2013-08-06T00:00:00\",\n        \"closingDate\": \"2013-08-06T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6694,\n        \"propertyAddress\": \"850 Collier Blvd, 1901, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2120185\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-07-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-09-04T00:00:00\",\n        \"processedDate\": \"2013-09-04T00:00:00\",\n        \"closingDate\": \"2013-08-29T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Angelica samplerews\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6711,\n        \"propertyAddress\": \"1204 Lamplighter Ct , Marco Island, FL 34145-4534\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213021952\",\n        \"listDate\": \"2013-07-16T00:00:00\",\n        \"expiredDate\": \"2014-07-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-05-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-06-23T00:00:00\",\n        \"processedDate\": \"2014-06-27T00:00:00\",\n        \"closingDate\": \"2014-06-27T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6719,\n        \"propertyAddress\": \"821 Barfield Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2100530\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-07-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-07-25T00:00:00\",\n        \"processedDate\": \"2013-08-01T00:00:00\",\n        \"closingDate\": \"2013-07-31T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Laura samplems\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6721,\n        \"propertyAddress\": \"910 Beaver Ct , Marco Island, FL 34145-3503\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213021908\",\n        \"listDate\": \"2013-07-18T00:00:00\",\n        \"expiredDate\": \"2014-07-11T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-07-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-08-21T00:00:00\",\n        \"processedDate\": \"2013-08-27T00:00:00\",\n        \"closingDate\": \"2013-08-21T00:00:00\",\n        \"listAgent\": \"Paul Strsampleg\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6726,\n        \"propertyAddress\": \"1161 N Collier Blvd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2131126\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-07-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-08-28T00:00:00\",\n        \"processedDate\": \"2013-08-30T00:00:00\",\n        \"closingDate\": \"2013-08-28T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Angelica samplerews\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6733,\n        \"propertyAddress\": \"428 Marquesas PYMT 1 Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2013-07-19T00:00:00\",\n        \"closingDate\": \"2013-07-17T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6734,\n        \"propertyAddress\": \"237 N Collier 9987 Blvd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-07-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-07-19T00:00:00\",\n        \"processedDate\": \"2013-07-19T00:00:00\",\n        \"closingDate\": \"2013-07-19T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6747,\n        \"propertyAddress\": \"335 Henderson PYMT 2 Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"new construction\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-07-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-09-30T00:00:00\",\n        \"processedDate\": \"2014-09-03T00:00:00\",\n        \"closingDate\": \"2014-08-28T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"ML Msamplede\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6754,\n        \"propertyAddress\": \"260 Seaview Ct , 605, Marco Island, FL 34145-3108\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213022859\",\n        \"listDate\": \"2013-07-24T00:00:00\",\n        \"expiredDate\": \"2013-12-04T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-08-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-09-17T00:00:00\",\n        \"processedDate\": \"2013-09-17T00:00:00\",\n        \"closingDate\": \"2013-09-17T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6768,\n        \"propertyAddress\": \"1108 1/2 N Collier 10033 Blvd, Ste A, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-07-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-07-18T00:00:00\",\n        \"processedDate\": \"2013-07-29T00:00:00\",\n        \"closingDate\": \"2013-07-18T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6770,\n        \"propertyAddress\": \"1108 1/2 N Collier 10035 Blvd, Ste A, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-07-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-07-29T00:00:00\",\n        \"processedDate\": \"2013-07-29T00:00:00\",\n        \"closingDate\": \"2013-07-29T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6778,\n        \"propertyAddress\": \"1261 Stone Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2131533\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-07-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-09-24T00:00:00\",\n        \"processedDate\": \"2013-09-24T00:00:00\",\n        \"closingDate\": \"2013-09-24T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6787,\n        \"propertyAddress\": \"847 N Collier 10055 Blvd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2013-07-30T00:00:00\",\n        \"closingDate\": \"2013-07-30T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6789,\n        \"propertyAddress\": \"847 N Collier 10058 Blvd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2013-07-30T00:00:00\",\n        \"closingDate\": \"2013-07-30T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6790,\n        \"propertyAddress\": \"847 N Collier 10059 Blvd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2013-07-30T00:00:00\",\n        \"closingDate\": \"2013-07-30T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6791,\n        \"propertyAddress\": \"847 N Collier 10060 Blvd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2013-07-30T00:00:00\",\n        \"closingDate\": \"2013-07-30T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6792,\n        \"propertyAddress\": \"87 N Collier Blvd, B8, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2122148\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-07-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-08-16T00:00:00\",\n        \"processedDate\": \"2013-08-16T00:00:00\",\n        \"closingDate\": \"2013-08-16T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Lura Jsamplees\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6805,\n        \"propertyAddress\": \"800 Seagrape Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213017341\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-08-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-09-16T00:00:00\",\n        \"processedDate\": \"2013-09-20T00:00:00\",\n        \"closingDate\": \"2013-09-16T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6807,\n        \"propertyAddress\": \"300 Collier Blvd S, 702, Marco Island, FL 34145-4905\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213023824\",\n        \"listDate\": \"2012-08-01T00:00:00\",\n        \"expiredDate\": \"2014-08-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-03-28T00:00:00\",\n        \"processedDate\": \"2014-04-02T00:00:00\",\n        \"closingDate\": \"2014-03-28T00:00:00\",\n        \"listAgent\": \"Angelica samplerews\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6813,\n        \"propertyAddress\": \"5000 Royal Marco Way, 836, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211516179\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-08-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-10-01T00:00:00\",\n        \"processedDate\": \"2013-10-01T00:00:00\",\n        \"closingDate\": \"2013-10-01T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Lura Jsamplees\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6829,\n        \"propertyAddress\": \"1215 Edington Pl , E-1, Marco Island, FL 34145-2015\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213023862\",\n        \"listDate\": \"2013-08-07T00:00:00\",\n        \"expiredDate\": \"2014-07-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-12-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-12-20T00:00:00\",\n        \"processedDate\": \"2013-12-23T00:00:00\",\n        \"closingDate\": \"2013-12-20T00:00:00\",\n        \"listAgent\": \"Robin Taylsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6849,\n        \"propertyAddress\": \"1461 Caxambas Ct , Marco Island, FL 34145-6603\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213024618\",\n        \"listDate\": \"2013-08-12T00:00:00\",\n        \"expiredDate\": \"2014-07-23T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-11-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-12-09T00:00:00\",\n        \"processedDate\": \"2013-12-10T00:00:00\",\n        \"closingDate\": \"2013-12-10T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6850,\n        \"propertyAddress\": \"100 Collier Blvd N, 205, Marco Island, FL 34145-3714\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213024626\",\n        \"listDate\": \"2013-08-12T00:00:00\",\n        \"expiredDate\": \"2014-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-14T00:00:00\",\n        \"processedDate\": \"2014-04-14T00:00:00\",\n        \"closingDate\": \"2014-04-14T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6856,\n        \"propertyAddress\": \"242 Angler Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213018186\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-08-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-12-25T00:00:00\",\n        \"processedDate\": \"2013-11-25T00:00:00\",\n        \"closingDate\": \"2013-11-19T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cynthia Csampleogin\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6869,\n        \"propertyAddress\": \"174 SE Collier Blvd, PHE, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212037029\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-08-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-09-07T00:00:00\",\n        \"processedDate\": \"2013-09-06T00:00:00\",\n        \"closingDate\": \"2013-09-06T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6875,\n        \"propertyAddress\": \"8315 Whisper Trace, 103, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"300.00\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2013-08-14T00:00:00\",\n        \"closingDate\": \"2013-08-14T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6876,\n        \"propertyAddress\": \"2308 Island Cove Cir, Naples, FL 34109\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-08-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-10-15T00:00:00\",\n        \"processedDate\": \"2013-10-16T00:00:00\",\n        \"closingDate\": \"2013-10-15T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Terri Moelsamplers\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Lexington\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6879,\n        \"propertyAddress\": \"10365 Paradise Boulevard, Treasure Island, FL 33706\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"U7587540\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-08-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-09-05T00:00:00\",\n        \"processedDate\": \"2013-09-05T00:00:00\",\n        \"closingDate\": \"2013-09-05T00:00:00\",\n        \"listAgent\": \"Connie Redsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Concord\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6889,\n        \"propertyAddress\": \"111 Gulfport Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213022684\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-08-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-08-31T00:00:00\",\n        \"processedDate\": \"2013-09-03T00:00:00\",\n        \"closingDate\": \"2013-08-30T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Helga Wsamplezold\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6902,\n        \"propertyAddress\": \"1130 Swallow Ave , B106, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213500218\",\n        \"listDate\": \"2013-08-20T00:00:00\",\n        \"expiredDate\": \"2014-08-12T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-09-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-10-25T00:00:00\",\n        \"processedDate\": \"2013-10-25T00:00:00\",\n        \"closingDate\": \"2013-10-25T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6903,\n        \"propertyAddress\": \"859 Wintergreen Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213500268\",\n        \"listDate\": \"2013-08-20T00:00:00\",\n        \"expiredDate\": \"2015-12-02T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-06-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-10-15T00:00:00\",\n        \"processedDate\": \"2015-10-15T00:00:00\",\n        \"closingDate\": \"2015-10-09T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6906,\n        \"propertyAddress\": \"58 N Collier Blvd , 1910, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213500406\",\n        \"listDate\": \"2013-08-20T00:00:00\",\n        \"expiredDate\": \"2015-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-08-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-09-30T00:00:00\",\n        \"processedDate\": \"2014-10-01T00:00:00\",\n        \"closingDate\": \"2014-09-30T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6928,\n        \"propertyAddress\": \"1610 Winterberry Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213500873\",\n        \"listDate\": \"2013-08-26T00:00:00\",\n        \"expiredDate\": \"2013-09-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-08-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-09-30T00:00:00\",\n        \"processedDate\": \"2013-09-30T00:00:00\",\n        \"closingDate\": \"2013-09-30T00:00:00\",\n        \"listAgent\": \"Paul Strsampleg\",\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6938,\n        \"propertyAddress\": \"760 N Collier Blvd, Unit 2-403 and 3-204, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2013-08-28T00:00:00\",\n        \"closingDate\": \"2013-08-28T00:00:00\",\n        \"listAgent\": \"Julia Stephsamples\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6948,\n        \"propertyAddress\": \"1770 Devon Court, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213003123\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-08-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-09-25T00:00:00\",\n        \"processedDate\": \"2013-09-25T00:00:00\",\n        \"closingDate\": \"2013-09-25T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Helga Wsamplezold\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6956,\n        \"propertyAddress\": \"1101 San Marco Rd , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213501320\",\n        \"listDate\": \"2013-08-29T00:00:00\",\n        \"expiredDate\": \"2014-08-06T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-11-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-12-12T00:00:00\",\n        \"processedDate\": \"2013-12-23T00:00:00\",\n        \"closingDate\": \"2013-12-20T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6963,\n        \"propertyAddress\": \"237 N Collier Blvd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2013-08-30T00:00:00\",\n        \"closingDate\": \"2013-08-30T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6972,\n        \"propertyAddress\": \"1678 Mcilvaine Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211502887\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-08-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-12-12T00:00:00\",\n        \"processedDate\": \"2013-12-12T00:00:00\",\n        \"closingDate\": \"2013-12-12T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6982,\n        \"propertyAddress\": \"14 Marco Villas Dr, 3, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"none\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-09-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-10-25T00:00:00\",\n        \"processedDate\": \"2013-10-31T00:00:00\",\n        \"closingDate\": \"2013-10-25T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Lura Jsamplees\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6992,\n        \"propertyAddress\": \"300 Royal Marco Way, #21, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-09-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-09-04T00:00:00\",\n        \"processedDate\": \"2013-09-05T00:00:00\",\n        \"closingDate\": \"2013-09-04T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 6999,\n        \"propertyAddress\": \"140 Seaview Ct, 1704, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2131761\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-09-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-09-10T00:00:00\",\n        \"processedDate\": \"2013-09-17T00:00:00\",\n        \"closingDate\": \"2013-09-17T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Dave Flowsamples\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7000,\n        \"propertyAddress\": \"671 S Barfield Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2131746\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-09-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-09-25T00:00:00\",\n        \"processedDate\": \"2013-10-08T00:00:00\",\n        \"closingDate\": \"2013-09-30T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7010,\n        \"propertyAddress\": \"123 Landmark St , Marco Island, FL 34145-4422\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212039821\",\n        \"listDate\": \"2012-12-27T00:00:00\",\n        \"expiredDate\": \"2014-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-05-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-07-02T00:00:00\",\n        \"processedDate\": \"2014-07-02T00:00:00\",\n        \"closingDate\": \"2014-07-02T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7029,\n        \"propertyAddress\": \"1370 Bayport Ave, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213505233\",\n        \"listDate\": \"2013-10-07T00:00:00\",\n        \"expiredDate\": \"2014-09-09T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-10-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-10-18T00:00:00\",\n        \"processedDate\": \"2013-10-17T00:00:00\",\n        \"closingDate\": \"2013-10-17T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7045,\n        \"propertyAddress\": \"317 N Collier Blvd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-09-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-09-13T00:00:00\",\n        \"processedDate\": \"2013-09-13T00:00:00\",\n        \"closingDate\": \"2013-09-13T00:00:00\",\n        \"listAgent\": \"Janis Pottsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7052,\n        \"propertyAddress\": \"428 Marquesas PYMT 2 Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-09-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-09-16T00:00:00\",\n        \"processedDate\": \"2013-09-16T00:00:00\",\n        \"closingDate\": \"2013-09-16T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7063,\n        \"propertyAddress\": \"324 Bald Eagle Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213019745\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-09-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-10-03T00:00:00\",\n        \"processedDate\": \"2013-10-03T00:00:00\",\n        \"closingDate\": \"2013-10-03T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7064,\n        \"propertyAddress\": \"4801 Island Pond Ct , 302, Bonita Springs, FL 34134\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213024606\",\n        \"listDate\": \"2013-08-12T00:00:00\",\n        \"expiredDate\": \"2014-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-09-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-10-24T00:00:00\",\n        \"processedDate\": \"2013-10-24T00:00:00\",\n        \"closingDate\": \"2013-10-24T00:00:00\",\n        \"listAgent\": \"Gary Jasampleda\",\n        \"sellAgent\": \"Fern Rsampleacca\",\n        \"listOffice\": \"Boston\",\n        \"sellOffice\": \"Boston\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7104,\n        \"propertyAddress\": \"210 Sand Hill St , Marco Island, FL 34145-4617\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213504043\",\n        \"listDate\": \"2013-09-24T00:00:00\",\n        \"expiredDate\": \"2014-09-24T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-25T00:00:00\",\n        \"processedDate\": \"2014-05-01T00:00:00\",\n        \"closingDate\": \"2014-04-30T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7105,\n        \"propertyAddress\": \"1 Key Capri, 708W, Treasure Island, FL 33706\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-09-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-09-27T00:00:00\",\n        \"processedDate\": \"2013-09-27T00:00:00\",\n        \"closingDate\": \"2013-09-27T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Connie Redsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Concord\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7147,\n        \"propertyAddress\": \"2000 Royal Marco Way , 302, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213504846\",\n        \"listDate\": \"2013-10-02T00:00:00\",\n        \"expiredDate\": \"2014-09-19T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-01-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-03-14T00:00:00\",\n        \"processedDate\": \"2014-05-08T00:00:00\",\n        \"closingDate\": \"2014-03-14T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7152,\n        \"propertyAddress\": \"190 Waterside Cir, 102, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2130825\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-09-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-11-08T00:00:00\",\n        \"processedDate\": \"2013-11-12T00:00:00\",\n        \"closingDate\": \"2013-11-12T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Darlene sampleddy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7154,\n        \"propertyAddress\": \"58 Collier Blvd, 1206, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2102906\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-09-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-11-07T00:00:00\",\n        \"processedDate\": \"2013-11-14T00:00:00\",\n        \"closingDate\": \"2013-11-07T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Angelica samplerews\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7156,\n        \"propertyAddress\": \"760 N Collier Blvd, 208, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213502011\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-10-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-10-25T00:00:00\",\n        \"processedDate\": \"2013-10-25T00:00:00\",\n        \"closingDate\": \"2013-10-25T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Gwen Tolssample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7165,\n        \"propertyAddress\": \"1108 1/2 N Collier 10623 Blvd, Ste A, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-10-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2013-10-07T00:00:00\",\n        \"closingDate\": \"2013-10-07T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7168,\n        \"propertyAddress\": \"2000 Royal Marco Way , 310, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213505289\",\n        \"listDate\": \"2013-10-07T00:00:00\",\n        \"expiredDate\": \"2015-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-03-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-05-14T00:00:00\",\n        \"processedDate\": \"2015-05-14T00:00:00\",\n        \"closingDate\": \"2015-05-14T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7199,\n        \"propertyAddress\": \"960 Cape Marco Dr , 1701, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213504741\",\n        \"listDate\": \"2013-10-10T00:00:00\",\n        \"expiredDate\": \"2014-09-28T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-11-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-12-16T00:00:00\",\n        \"processedDate\": \"2013-12-16T00:00:00\",\n        \"closingDate\": \"2013-12-16T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7212,\n        \"propertyAddress\": \"848 Collier Ct , 401, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213505996\",\n        \"listDate\": \"2013-10-14T00:00:00\",\n        \"expiredDate\": \"2014-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-12-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-01-21T00:00:00\",\n        \"processedDate\": \"2014-01-21T00:00:00\",\n        \"closingDate\": \"2014-01-21T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7227,\n        \"propertyAddress\": \"6000 Royal Marco Way , 255, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213506067\",\n        \"listDate\": \"2013-10-15T00:00:00\",\n        \"expiredDate\": \"2014-08-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-12-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-12-30T00:00:00\",\n        \"processedDate\": \"2014-01-03T00:00:00\",\n        \"closingDate\": \"2013-12-30T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7228,\n        \"propertyAddress\": \"845 Collier Ct, 204, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213504088\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-10-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-11-20T00:00:00\",\n        \"processedDate\": \"2013-12-02T00:00:00\",\n        \"closingDate\": \"2013-11-25T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Dave Flowsamples\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7239,\n        \"propertyAddress\": \"930 Heron Ct , Marco Island, FL 34145-2317\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213506569\",\n        \"listDate\": \"2013-10-18T00:00:00\",\n        \"expiredDate\": \"2014-06-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-03-26T00:00:00\",\n        \"processedDate\": \"2014-03-21T00:00:00\",\n        \"closingDate\": \"2014-03-21T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7252,\n        \"propertyAddress\": \"900 Collier Ct , 106, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213506771\",\n        \"listDate\": \"2013-10-21T00:00:00\",\n        \"expiredDate\": \"2014-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-05-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-05-29T00:00:00\",\n        \"processedDate\": \"2014-05-29T00:00:00\",\n        \"closingDate\": \"2014-05-29T00:00:00\",\n        \"listAgent\": \"Sue Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7254,\n        \"propertyAddress\": \"220 Collier Blvd S, 306, Marco Island, FL 34145-4852\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213506545\",\n        \"listDate\": \"2013-10-18T00:00:00\",\n        \"expiredDate\": \"2014-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-05-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-06-16T00:00:00\",\n        \"processedDate\": \"2014-06-16T00:00:00\",\n        \"closingDate\": \"2014-06-16T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7264,\n        \"propertyAddress\": \"270 Copperfield Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213506426\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-10-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-12-10T00:00:00\",\n        \"processedDate\": \"2013-12-10T00:00:00\",\n        \"closingDate\": \"2013-12-10T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7270,\n        \"propertyAddress\": \"970 Cape Marco Dr , 507, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213507083\",\n        \"listDate\": \"2013-10-23T00:00:00\",\n        \"expiredDate\": \"2015-12-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-05-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-06-19T00:00:00\",\n        \"processedDate\": \"2015-06-19T00:00:00\",\n        \"closingDate\": \"2015-06-19T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7277,\n        \"propertyAddress\": \"900 N Collier 10791 Blvd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-10-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2013-10-25T00:00:00\",\n        \"closingDate\": \"2013-10-25T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7313,\n        \"propertyAddress\": \"1113 Whiteheart Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213507801\",\n        \"listDate\": \"2013-10-30T00:00:00\",\n        \"expiredDate\": \"2014-10-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-04-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-05-29T00:00:00\",\n        \"processedDate\": \"2014-06-02T00:00:00\",\n        \"closingDate\": \"2014-05-29T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7322,\n        \"propertyAddress\": \"1258 Winterberry Dr , Marco Island, FL 34145-5434\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213507916\",\n        \"listDate\": \"2013-10-30T00:00:00\",\n        \"expiredDate\": \"2014-04-25T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-11-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-11-19T00:00:00\",\n        \"processedDate\": \"2013-11-25T00:00:00\",\n        \"closingDate\": \"2013-11-21T00:00:00\",\n        \"listAgent\": \"Dave Flowsamples\",\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7345,\n        \"propertyAddress\": \"970 Cape Marco Dr , 1903, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213508265\",\n        \"listDate\": \"2013-11-05T00:00:00\",\n        \"expiredDate\": \"2014-10-28T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-09-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-09-26T00:00:00\",\n        \"processedDate\": \"2014-09-26T00:00:00\",\n        \"closingDate\": \"2014-09-26T00:00:00\",\n        \"listAgent\": \"Cullen Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7346,\n        \"propertyAddress\": \"960 Cape Marco Dr , PH3, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213508436\",\n        \"listDate\": \"2013-11-05T00:00:00\",\n        \"expiredDate\": \"2014-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-11-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-12-20T00:00:00\",\n        \"processedDate\": \"2013-12-20T00:00:00\",\n        \"closingDate\": \"2013-12-20T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7351,\n        \"propertyAddress\": \"420 Edgewater Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213508456\",\n        \"listDate\": \"2013-11-05T00:00:00\",\n        \"expiredDate\": \"2014-10-28T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-11-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-01-30T00:00:00\",\n        \"processedDate\": \"2014-01-31T00:00:00\",\n        \"closingDate\": \"2014-01-30T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7359,\n        \"propertyAddress\": \"382 Morning Glory Lane , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213508462\",\n        \"listDate\": \"2013-11-06T00:00:00\",\n        \"expiredDate\": \"2014-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-11-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-12-04T00:00:00\",\n        \"processedDate\": \"2013-12-05T00:00:00\",\n        \"closingDate\": \"2013-12-04T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7367,\n        \"propertyAddress\": \"720 N Collier Blvd, 201, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213504888\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-11-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-12-16T00:00:00\",\n        \"processedDate\": \"2013-12-16T00:00:00\",\n        \"closingDate\": \"2013-12-16T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Helga Wsamplezold\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7368,\n        \"propertyAddress\": \"316 Lamplighter Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213505953\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-11-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-12-11T00:00:00\",\n        \"processedDate\": \"2013-12-13T00:00:00\",\n        \"closingDate\": \"2013-12-13T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cullen Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7370,\n        \"propertyAddress\": \"635 Rockport Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"NON- MLS\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-11-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-11-18T00:00:00\",\n        \"processedDate\": \"2013-11-20T00:00:00\",\n        \"closingDate\": \"2013-11-18T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Laura samplems\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7374,\n        \"propertyAddress\": \"870 S Collier Boulevard , 101, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213508216\",\n        \"listDate\": \"2013-11-06T00:00:00\",\n        \"expiredDate\": \"2014-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-03-24T00:00:00\",\n        \"processedDate\": \"2014-03-27T00:00:00\",\n        \"closingDate\": \"2014-03-24T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": \"Angelica samplerews\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7386,\n        \"propertyAddress\": \"1108 1/2 N Collier 10941 Blvd, Ste A, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-11-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-11-08T00:00:00\",\n        \"processedDate\": \"2013-11-08T00:00:00\",\n        \"closingDate\": \"2013-11-08T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7392,\n        \"propertyAddress\": \"4801 Island Pond Ct , 405, Bonita Springs, FL 34134\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213508973\",\n        \"listDate\": \"2013-11-08T00:00:00\",\n        \"expiredDate\": \"2014-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-04-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-06-16T00:00:00\",\n        \"processedDate\": \"2014-06-16T00:00:00\",\n        \"closingDate\": \"2014-06-16T00:00:00\",\n        \"listAgent\": \"Ginger Licksampley\",\n        \"sellAgent\": \"Ginger Licksampley\",\n        \"listOffice\": \"Boston\",\n        \"sellOffice\": \"Boston\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7393,\n        \"propertyAddress\": \"860 Sea Dune Ln , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213508869\",\n        \"listDate\": \"2013-11-07T00:00:00\",\n        \"expiredDate\": \"2014-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-12-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-02-18T00:00:00\",\n        \"processedDate\": \"2014-02-19T00:00:00\",\n        \"closingDate\": \"2014-02-19T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7432,\n        \"propertyAddress\": \"1020 S Collier Blvd , 307, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213509453\",\n        \"listDate\": \"2013-11-13T00:00:00\",\n        \"expiredDate\": \"2014-11-11T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-01-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-03-05T00:00:00\",\n        \"processedDate\": \"2014-03-07T00:00:00\",\n        \"closingDate\": \"2014-03-07T00:00:00\",\n        \"listAgent\": \"Cullen Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7434,\n        \"propertyAddress\": \"680 Inlet Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"Non-MLS\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-11-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-12-06T00:00:00\",\n        \"processedDate\": \"2013-12-10T00:00:00\",\n        \"closingDate\": \"2013-12-10T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7435,\n        \"propertyAddress\": \"336 Waterleaf Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213007707\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-11-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-01-14T00:00:00\",\n        \"processedDate\": \"2014-01-14T00:00:00\",\n        \"closingDate\": \"2014-01-14T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7450,\n        \"propertyAddress\": \"1549 Heights Ct , Marco Island, FL 34145-6615\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213509751\",\n        \"listDate\": \"2013-11-15T00:00:00\",\n        \"expiredDate\": \"2015-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-11-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-01-15T00:00:00\",\n        \"processedDate\": \"2015-01-16T00:00:00\",\n        \"closingDate\": \"2015-01-16T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7452,\n        \"propertyAddress\": \"140 Seaview Ct , N606, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213509716\",\n        \"listDate\": \"2013-11-15T00:00:00\",\n        \"expiredDate\": \"2014-11-06T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-11-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-12-27T00:00:00\",\n        \"processedDate\": \"2013-12-30T00:00:00\",\n        \"closingDate\": \"2013-12-30T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7453,\n        \"propertyAddress\": \"816 W Elkcam Cir , 205, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213509505\",\n        \"listDate\": \"2013-11-15T00:00:00\",\n        \"expiredDate\": \"2015-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-01-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-02-12T00:00:00\",\n        \"processedDate\": \"2015-02-11T00:00:00\",\n        \"closingDate\": \"2015-02-10T00:00:00\",\n        \"listAgent\": \"Sherrie Pfeffsample\",\n        \"sellAgent\": \"Sherrie Pfeffsample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7458,\n        \"propertyAddress\": \"740 N Collier Blvd, 403, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213507121\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-11-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-11-20T00:00:00\",\n        \"processedDate\": \"2013-11-21T00:00:00\",\n        \"closingDate\": \"2013-11-20T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cullen Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7467,\n        \"propertyAddress\": \"847 North Collier 11062 Boulevard, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-10-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-11-19T00:00:00\",\n        \"processedDate\": \"2013-11-19T00:00:00\",\n        \"closingDate\": \"2013-11-19T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7483,\n        \"propertyAddress\": \"50 Forest Rd, Staten Island, NY 10304\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-11-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-11-21T00:00:00\",\n        \"processedDate\": \"2013-11-21T00:00:00\",\n        \"closingDate\": \"2013-11-21T00:00:00\",\n        \"listAgent\": \"Mark Lesamplee\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Boston\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7489,\n        \"propertyAddress\": \"530 Club Marco Cir , 101, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213510146\",\n        \"listDate\": \"2013-11-19T00:00:00\",\n        \"expiredDate\": \"2014-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-11-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-01-06T00:00:00\",\n        \"processedDate\": \"2014-01-06T00:00:00\",\n        \"closingDate\": \"2014-01-06T00:00:00\",\n        \"listAgent\": \"Gwen Tolssample\",\n        \"sellAgent\": \"Gwen Tolssample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7504,\n        \"propertyAddress\": \"140 Seaview Ct , 1205, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213510551\",\n        \"listDate\": \"2013-11-25T00:00:00\",\n        \"expiredDate\": \"2014-05-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-01-31T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-04T00:00:00\",\n        \"processedDate\": \"2014-04-07T00:00:00\",\n        \"closingDate\": \"2014-04-04T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7510,\n        \"propertyAddress\": \"1408 Butterfield Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-10-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-11-22T00:00:00\",\n        \"processedDate\": \"2013-11-26T00:00:00\",\n        \"closingDate\": \"2013-11-22T00:00:00\",\n        \"listAgent\": \"Laura samplems\",\n        \"sellAgent\": \"Laura samplems\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7526,\n        \"propertyAddress\": \"115 Landmark St , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213511009\",\n        \"listDate\": \"2013-11-27T00:00:00\",\n        \"expiredDate\": \"2014-11-21T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-04-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-05-12T00:00:00\",\n        \"processedDate\": \"2014-05-13T00:00:00\",\n        \"closingDate\": \"2014-05-12T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7534,\n        \"propertyAddress\": \"781 Elkcam Cir, A3, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2131750\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-11-29T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-12-20T00:00:00\",\n        \"processedDate\": \"2013-12-23T00:00:00\",\n        \"closingDate\": \"2013-12-23T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Dave Flowsamples\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7537,\n        \"propertyAddress\": \"1069 Bald Eagle Dr, 303, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213021940\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-11-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-12-30T00:00:00\",\n        \"processedDate\": \"2013-12-18T00:00:00\",\n        \"closingDate\": \"2013-12-18T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cynthia Csampleogin\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7555,\n        \"propertyAddress\": \"27 Greenbrier St, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2131838\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-12-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-01-29T00:00:00\",\n        \"processedDate\": \"2014-02-10T00:00:00\",\n        \"closingDate\": \"2014-02-05T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7559,\n        \"propertyAddress\": \"730 S Collier Blvd , 1403, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213511736\",\n        \"listDate\": \"2013-12-05T00:00:00\",\n        \"expiredDate\": \"2014-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-03-20T00:00:00\",\n        \"processedDate\": \"2014-03-25T00:00:00\",\n        \"closingDate\": \"2014-03-20T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": \"Denny samplertsock\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7561,\n        \"propertyAddress\": \"850 Copeland Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213007410\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-11-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-12-16T00:00:00\",\n        \"processedDate\": \"2013-12-19T00:00:00\",\n        \"closingDate\": \"2013-12-19T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Sue Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7594,\n        \"propertyAddress\": \"990 Caxambas Dr , Marco Island, FL 34145-5908\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213511012\",\n        \"listDate\": \"2013-11-27T00:00:00\",\n        \"expiredDate\": \"2014-11-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-03-27T00:00:00\",\n        \"processedDate\": \"2014-03-28T00:00:00\",\n        \"closingDate\": \"2014-03-28T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7621,\n        \"propertyAddress\": \"280 S Collier Boulevard, 1606, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2102462\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-12-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-12-23T00:00:00\",\n        \"processedDate\": \"2013-12-19T00:00:00\",\n        \"closingDate\": \"2013-12-16T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7636,\n        \"propertyAddress\": \"237 N Collier 11314 Blvd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2013-12-17T00:00:00\",\n        \"closingDate\": \"2013-12-17T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7641,\n        \"propertyAddress\": \"PO BOX 429, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-12-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2013-12-18T00:00:00\",\n        \"closingDate\": \"2013-12-18T00:00:00\",\n        \"listAgent\": \"Robin Taylsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7644,\n        \"propertyAddress\": \"1108 1/2 N Collier 11328 Blvd, Ste A, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-12-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-12-19T00:00:00\",\n        \"processedDate\": \"2013-12-19T00:00:00\",\n        \"closingDate\": \"2013-12-19T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7659,\n        \"propertyAddress\": \"1085 Bald Eagle Dr , 504, Marco Island, FL 34145-2143\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213022973\",\n        \"listDate\": \"2013-07-25T00:00:00\",\n        \"expiredDate\": \"2014-10-12T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-05-15T00:00:00\",\n        \"processedDate\": \"2014-05-15T00:00:00\",\n        \"closingDate\": \"2014-05-15T00:00:00\",\n        \"listAgent\": \"Lura Jsamplees\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7670,\n        \"propertyAddress\": \"220 Sandhill St, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213503764\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-12-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-01-06T00:00:00\",\n        \"processedDate\": \"2014-01-07T00:00:00\",\n        \"closingDate\": \"2014-01-07T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Darlene sampleddy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7680,\n        \"propertyAddress\": \"1733 Piedmont Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213513607\",\n        \"listDate\": \"2013-12-27T00:00:00\",\n        \"expiredDate\": \"2014-12-13T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-01-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-02-25T00:00:00\",\n        \"processedDate\": \"2014-02-26T00:00:00\",\n        \"closingDate\": \"2014-02-25T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7695,\n        \"propertyAddress\": \"241 Stillwater Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213513591\",\n        \"listDate\": \"2013-12-27T00:00:00\",\n        \"expiredDate\": \"2014-12-18T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-01-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-03-12T00:00:00\",\n        \"processedDate\": \"2014-02-19T00:00:00\",\n        \"closingDate\": \"2014-02-19T00:00:00\",\n        \"listAgent\": \"Laura samplems\",\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7710,\n        \"propertyAddress\": \"240 N Collier Blvd, E2, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2131833\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-12-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-12-30T00:00:00\",\n        \"processedDate\": \"2014-01-03T00:00:00\",\n        \"closingDate\": \"2013-12-30T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cynthia Csampleogin\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7711,\n        \"propertyAddress\": \"960 Cape Marco Dr, 1906, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2130795\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-01-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-01-20T00:00:00\",\n        \"processedDate\": \"2014-02-28T00:00:00\",\n        \"closingDate\": \"2014-02-28T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7717,\n        \"propertyAddress\": \"1036 E Inlet Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2132267\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-01-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-01-08T00:00:00\",\n        \"processedDate\": \"2014-01-08T00:00:00\",\n        \"closingDate\": \"2014-01-08T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Sue Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7733,\n        \"propertyAddress\": \"411 S Collier Blvd, 202, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2131609\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-01-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-02-28T00:00:00\",\n        \"processedDate\": \"2014-03-03T00:00:00\",\n        \"closingDate\": \"2014-02-28T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cynthia Csampleogin\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7735,\n        \"propertyAddress\": \"350 Collier Blvd S, 302, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214000736\",\n        \"listDate\": \"2014-01-08T00:00:00\",\n        \"expiredDate\": \"2015-01-02T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-01-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-02-18T00:00:00\",\n        \"processedDate\": \"2014-02-18T00:00:00\",\n        \"closingDate\": \"2014-02-18T00:00:00\",\n        \"listAgent\": \"Laura samplems\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7736,\n        \"propertyAddress\": \"220 Seaview Ct, 315, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2131203\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-01-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-01-15T00:00:00\",\n        \"processedDate\": \"2014-01-16T00:00:00\",\n        \"closingDate\": \"2014-01-16T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Dave Flowsamples\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7740,\n        \"propertyAddress\": \"900 N Collier 11481 Blvd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-01-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2014-01-09T00:00:00\",\n        \"closingDate\": \"2014-01-09T00:00:00\",\n        \"listAgent\": \"Victoria Clarke-Paytsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Fairfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7748,\n        \"propertyAddress\": \"237 N Collier Blvd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-12-31T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2014-01-09T00:00:00\",\n        \"closingDate\": \"2014-01-09T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7773,\n        \"propertyAddress\": \"1100 S Collier Blvd, 1124, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2111037\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-01-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-02-25T00:00:00\",\n        \"processedDate\": \"2014-02-25T00:00:00\",\n        \"closingDate\": \"2014-02-25T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cynthia Csampleogin\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7774,\n        \"propertyAddress\": \"888 Whiskey Crk, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2131303\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-01-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-02-10T00:00:00\",\n        \"processedDate\": \"2014-02-10T00:00:00\",\n        \"closingDate\": \"2014-02-10T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7792,\n        \"propertyAddress\": \"1148 Lamplighter Ct , Marco Island, FL 34145-4532\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214002119\",\n        \"listDate\": \"2014-01-14T00:00:00\",\n        \"expiredDate\": \"2014-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-07-05T00:00:00\",\n        \"processedDate\": \"2014-07-08T00:00:00\",\n        \"closingDate\": \"2014-07-08T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7816,\n        \"propertyAddress\": \"1450 Biscayne Way , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214002510\",\n        \"listDate\": \"2013-01-17T00:00:00\",\n        \"expiredDate\": \"2015-01-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-05-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-06-13T00:00:00\",\n        \"processedDate\": \"2014-06-04T00:00:00\",\n        \"closingDate\": \"2014-06-03T00:00:00\",\n        \"listAgent\": \"Cynthia Csampleogin\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7823,\n        \"propertyAddress\": \"1021 S Collier Blvd , 504, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214002190\",\n        \"listDate\": \"2014-01-20T00:00:00\",\n        \"expiredDate\": \"2014-07-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-01-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-15T00:00:00\",\n        \"processedDate\": \"2014-04-10T00:00:00\",\n        \"closingDate\": \"2014-04-07T00:00:00\",\n        \"listAgent\": \"Dave Flowsamples\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7826,\n        \"propertyAddress\": \"990 Cape Marco Dr , 101, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214001814\",\n        \"listDate\": \"2014-01-14T00:00:00\",\n        \"expiredDate\": \"2014-09-14T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-03-10T00:00:00\",\n        \"processedDate\": \"2014-03-13T00:00:00\",\n        \"closingDate\": \"2014-03-10T00:00:00\",\n        \"listAgent\": \"Robin Taylsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7828,\n        \"propertyAddress\": \"320 Seaview Ct , 1101, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214002285\",\n        \"listDate\": \"2014-01-20T00:00:00\",\n        \"expiredDate\": \"2014-07-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-24T00:00:00\",\n        \"processedDate\": \"2014-04-25T00:00:00\",\n        \"closingDate\": \"2014-04-24T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": \"Helga Wsamplezold\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7862,\n        \"propertyAddress\": \"260 Seaview Ct , 1908, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214004467\",\n        \"listDate\": \"2014-01-23T00:00:00\",\n        \"expiredDate\": \"2015-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-05-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-07-07T00:00:00\",\n        \"processedDate\": \"2014-07-08T00:00:00\",\n        \"closingDate\": \"2014-07-08T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7868,\n        \"propertyAddress\": \"871 Collier Court , B2, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214004732\",\n        \"listDate\": \"2014-01-24T00:00:00\",\n        \"expiredDate\": \"2014-07-21T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-04-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-06-09T00:00:00\",\n        \"processedDate\": \"2014-06-10T00:00:00\",\n        \"closingDate\": \"2014-06-10T00:00:00\",\n        \"listAgent\": \"Sue Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7880,\n        \"propertyAddress\": \"14794 Fripp Island Ct, Naples, FL 34119\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-01-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-03-27T00:00:00\",\n        \"processedDate\": \"2014-03-27T00:00:00\",\n        \"closingDate\": \"2014-03-27T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jon Vollmsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Fairfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7884,\n        \"propertyAddress\": \"133 Vintage Bay Dr , A-2, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214004033\",\n        \"listDate\": \"2013-01-28T00:00:00\",\n        \"expiredDate\": \"2014-12-19T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-06-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-07-15T00:00:00\",\n        \"processedDate\": \"2014-07-16T00:00:00\",\n        \"closingDate\": \"2014-07-16T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7885,\n        \"propertyAddress\": \"860 W Panama Court , 105, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214005693\",\n        \"listDate\": \"2014-01-28T00:00:00\",\n        \"expiredDate\": \"2014-11-29T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-05-05T00:00:00\",\n        \"processedDate\": \"2014-05-05T00:00:00\",\n        \"closingDate\": \"2014-05-05T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7888,\n        \"propertyAddress\": \"140 Seaview Ct , 206, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214003769\",\n        \"listDate\": \"2014-01-29T00:00:00\",\n        \"expiredDate\": \"2014-12-19T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-01-29T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-05-22T00:00:00\",\n        \"processedDate\": \"2014-05-22T00:00:00\",\n        \"closingDate\": \"2014-05-22T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7893,\n        \"propertyAddress\": \"1119 San Marco Rd , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214004000\",\n        \"listDate\": \"2014-01-29T00:00:00\",\n        \"expiredDate\": \"2014-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-15T00:00:00\",\n        \"processedDate\": \"2014-04-15T00:00:00\",\n        \"closingDate\": \"2014-04-15T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7894,\n        \"propertyAddress\": \"1558 San Marco Rd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2132440\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-01-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-02-26T00:00:00\",\n        \"processedDate\": \"2014-02-25T00:00:00\",\n        \"closingDate\": \"2014-02-25T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Laura samplems\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7895,\n        \"propertyAddress\": \"601 Seaview Ct, C-103, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214005785\",\n        \"listDate\": \"2014-01-29T00:00:00\",\n        \"expiredDate\": \"2014-11-29T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-03-28T00:00:00\",\n        \"processedDate\": \"2014-03-31T00:00:00\",\n        \"closingDate\": \"2014-03-28T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7911,\n        \"propertyAddress\": \"1108 1/2 N Collier 11721 Blvd, Ste A, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-01-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-01-31T00:00:00\",\n        \"processedDate\": \"2014-01-31T00:00:00\",\n        \"closingDate\": \"2014-01-31T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7939,\n        \"propertyAddress\": \"865 Swan Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214006162\",\n        \"listDate\": \"2014-02-03T00:00:00\",\n        \"expiredDate\": \"2014-11-03T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-06-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-07-31T00:00:00\",\n        \"processedDate\": \"2014-07-31T00:00:00\",\n        \"closingDate\": \"2014-07-31T00:00:00\",\n        \"listAgent\": \"Robin Taylsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7956,\n        \"propertyAddress\": \"170 Society Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"Non-MLS\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-01-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-01T00:00:00\",\n        \"processedDate\": \"2014-04-15T00:00:00\",\n        \"closingDate\": \"2014-04-01T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7957,\n        \"propertyAddress\": \"681 Elkcam Cir, 313, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214005687\",\n        \"listDate\": \"2014-02-01T00:00:00\",\n        \"expiredDate\": \"2014-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-02-21T00:00:00\",\n        \"processedDate\": \"2014-02-21T00:00:00\",\n        \"closingDate\": \"2014-02-20T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7964,\n        \"propertyAddress\": \"58 Madagascar Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213018954\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-01-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-03-27T00:00:00\",\n        \"processedDate\": \"2014-03-27T00:00:00\",\n        \"closingDate\": \"2014-03-27T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7966,\n        \"propertyAddress\": \"2000 Royal Marco Way, 303, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"21350938\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-01-31T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-15T00:00:00\",\n        \"processedDate\": \"2014-04-21T00:00:00\",\n        \"closingDate\": \"2014-04-21T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7973,\n        \"propertyAddress\": \"260 Seaview Ct , 309, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214007974\",\n        \"listDate\": \"2014-02-05T00:00:00\",\n        \"expiredDate\": \"2014-07-25T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-04-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-29T00:00:00\",\n        \"processedDate\": \"2014-04-29T00:00:00\",\n        \"closingDate\": \"2014-04-29T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7976,\n        \"propertyAddress\": \"724 Plantation Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214008105\",\n        \"listDate\": \"2014-01-30T00:00:00\",\n        \"expiredDate\": \"2014-07-28T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-02-12T00:00:00\",\n        \"processedDate\": \"2014-02-19T00:00:00\",\n        \"closingDate\": \"2014-02-12T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7977,\n        \"propertyAddress\": \"58 N Collier Blvd, 402, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2140177\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-02-27T00:00:00\",\n        \"processedDate\": \"2014-02-27T00:00:00\",\n        \"closingDate\": \"2014-02-27T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cynthia Csampleogin\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7985,\n        \"propertyAddress\": \"1401 Belvedere Ave , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214005663\",\n        \"listDate\": \"2014-02-05T00:00:00\",\n        \"expiredDate\": \"2014-08-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-03-28T00:00:00\",\n        \"processedDate\": \"2014-03-31T00:00:00\",\n        \"closingDate\": \"2014-03-28T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7986,\n        \"propertyAddress\": \"316 Waterleaf Ct , Marco Island, FL 34145-3560\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214005791\",\n        \"listDate\": \"2014-02-06T00:00:00\",\n        \"expiredDate\": \"2014-07-28T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-01-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-03-14T00:00:00\",\n        \"processedDate\": \"2014-04-04T00:00:00\",\n        \"closingDate\": \"2014-03-14T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7987,\n        \"propertyAddress\": \"109 Copperfield Ct , Marco Island, FL 34145-3517\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214005685\",\n        \"listDate\": \"2014-02-06T00:00:00\",\n        \"expiredDate\": \"2014-08-28T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-05-06T00:00:00\",\n        \"processedDate\": \"2014-05-06T00:00:00\",\n        \"closingDate\": \"2014-05-06T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7989,\n        \"propertyAddress\": \"100 Collier Boulevard N, 705, Marco Island, FL 34145-3714\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214005675\",\n        \"listDate\": \"2014-02-06T00:00:00\",\n        \"expiredDate\": \"2014-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-07-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-09-09T00:00:00\",\n        \"processedDate\": \"2014-09-09T00:00:00\",\n        \"closingDate\": \"2014-09-09T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7995,\n        \"propertyAddress\": \"960 Cape Marco Dr , 404, Marco Island, FL 34145-6345\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214005670\",\n        \"listDate\": \"2014-02-07T00:00:00\",\n        \"expiredDate\": \"2015-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-09-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-10-17T00:00:00\",\n        \"processedDate\": \"2014-10-21T00:00:00\",\n        \"closingDate\": \"2014-10-17T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7996,\n        \"propertyAddress\": \"1293 Martinique Ct , Marco Island, FL 34145-2321\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214005692\",\n        \"listDate\": \"2014-02-07T00:00:00\",\n        \"expiredDate\": \"2014-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-21T00:00:00\",\n        \"processedDate\": \"2014-04-22T00:00:00\",\n        \"closingDate\": \"2014-04-22T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 7997,\n        \"propertyAddress\": \"970 Cape Marco Dr , 2003, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214005672\",\n        \"listDate\": \"2014-02-07T00:00:00\",\n        \"expiredDate\": \"2014-08-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-22T00:00:00\",\n        \"processedDate\": \"2014-04-24T00:00:00\",\n        \"closingDate\": \"2014-04-22T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8014,\n        \"propertyAddress\": \"487 Pepperwood Ct , Marco Island, FL 34145-3821\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214005694\",\n        \"listDate\": \"2014-02-10T00:00:00\",\n        \"expiredDate\": \"2015-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-01-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-03-17T00:00:00\",\n        \"processedDate\": \"2015-03-18T00:00:00\",\n        \"closingDate\": \"2015-03-18T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8015,\n        \"propertyAddress\": \"980 Cape Marco Dr , 505, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214008458\",\n        \"listDate\": \"2014-01-31T00:00:00\",\n        \"expiredDate\": \"2014-09-27T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-05-15T00:00:00\",\n        \"processedDate\": \"2014-05-15T00:00:00\",\n        \"closingDate\": \"2014-05-15T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Darlene sampleddy\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8019,\n        \"propertyAddress\": \"1431 Caxambas Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214008138\",\n        \"listDate\": \"2014-02-10T00:00:00\",\n        \"expiredDate\": \"2014-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-11T00:00:00\",\n        \"processedDate\": \"2014-05-08T00:00:00\",\n        \"closingDate\": \"2014-04-11T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8024,\n        \"propertyAddress\": \"1040 Fieldstone Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214008735\",\n        \"listDate\": \"2014-02-11T00:00:00\",\n        \"expiredDate\": \"2014-07-04T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-06-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-06-11T00:00:00\",\n        \"processedDate\": \"2014-06-12T00:00:00\",\n        \"closingDate\": \"2014-06-12T00:00:00\",\n        \"listAgent\": \"Paul Strsampleg\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8030,\n        \"propertyAddress\": \"1040 Dill Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212031034\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-02-10T00:00:00\",\n        \"processedDate\": \"2014-02-13T00:00:00\",\n        \"closingDate\": \"2014-02-11T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Darlene sampleddy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8053,\n        \"propertyAddress\": \"380 Seaview Ct , 905, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214005703\",\n        \"listDate\": \"2014-02-13T00:00:00\",\n        \"expiredDate\": \"2014-08-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-08-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-09-16T00:00:00\",\n        \"processedDate\": \"2014-09-18T00:00:00\",\n        \"closingDate\": \"2014-09-17T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Helga Wsamplezold\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8057,\n        \"propertyAddress\": \"1730 Macao Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214010140\",\n        \"listDate\": \"2014-02-13T00:00:00\",\n        \"expiredDate\": \"2015-02-13T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-04T00:00:00\",\n        \"processedDate\": \"2014-04-04T00:00:00\",\n        \"closingDate\": \"2014-04-04T00:00:00\",\n        \"listAgent\": \"Robin Taylsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8059,\n        \"propertyAddress\": \"830 Inlet Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214009228\",\n        \"listDate\": \"2014-02-11T00:00:00\",\n        \"expiredDate\": \"2015-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-01-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-02-11T00:00:00\",\n        \"processedDate\": \"2015-02-16T00:00:00\",\n        \"closingDate\": \"2015-02-11T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8061,\n        \"propertyAddress\": \"270 Collier Blvd N, 201, Marco Island, FL 34145-3041\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214005682\",\n        \"listDate\": \"2014-02-13T00:00:00\",\n        \"expiredDate\": \"2014-10-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-22T00:00:00\",\n        \"processedDate\": \"2014-04-24T00:00:00\",\n        \"closingDate\": \"2014-04-22T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8066,\n        \"propertyAddress\": \"900 N Collier 11941 Blvd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-02-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-02-14T00:00:00\",\n        \"processedDate\": \"2014-02-14T00:00:00\",\n        \"closingDate\": \"2014-02-14T00:00:00\",\n        \"listAgent\": \"Stacy Bsampleh\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8069,\n        \"propertyAddress\": \"1069 Bald Eagle Dr, 301, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213015479\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-03-14T00:00:00\",\n        \"processedDate\": \"2014-04-04T00:00:00\",\n        \"closingDate\": \"2014-04-04T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Dave Flowsamples\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8072,\n        \"propertyAddress\": \"1228 Lamplighter Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213017624\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-05-05T00:00:00\",\n        \"processedDate\": \"2014-05-05T00:00:00\",\n        \"closingDate\": \"2014-05-05T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"ML Msamplede\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8073,\n        \"propertyAddress\": \"337 Vintage Bay Dr, 11, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214007240\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-10T00:00:00\",\n        \"processedDate\": \"2014-04-11T00:00:00\",\n        \"closingDate\": \"2014-04-10T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Gwen Tolssample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8075,\n        \"propertyAddress\": \"199 Majorca Cir , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214008782\",\n        \"listDate\": \"2014-02-13T00:00:00\",\n        \"expiredDate\": \"2014-08-07T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-15T00:00:00\",\n        \"processedDate\": \"2014-04-15T00:00:00\",\n        \"closingDate\": \"2014-04-15T00:00:00\",\n        \"listAgent\": \"Rosemarie Tsampleagni\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8080,\n        \"propertyAddress\": \"354 Sand Hill St , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214010435\",\n        \"listDate\": \"2014-02-14T00:00:00\",\n        \"expiredDate\": \"2015-08-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-06-29T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-07-08T00:00:00\",\n        \"processedDate\": \"2015-07-10T00:00:00\",\n        \"closingDate\": \"2015-07-08T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Sue Ssampleughnessy\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8114,\n        \"propertyAddress\": \"320 Seaview Ct , 408, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214008151\",\n        \"listDate\": \"2014-02-05T00:00:00\",\n        \"expiredDate\": \"2014-07-05T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-15T00:00:00\",\n        \"processedDate\": \"2014-04-21T00:00:00\",\n        \"closingDate\": \"2014-04-15T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8115,\n        \"propertyAddress\": \"795 Amber Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214011489\",\n        \"listDate\": \"2014-02-19T00:00:00\",\n        \"expiredDate\": \"2014-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-10-06T00:00:00\",\n        \"processedDate\": \"2014-10-08T00:00:00\",\n        \"closingDate\": \"2014-10-06T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8119,\n        \"propertyAddress\": \"1100 S Collier Blvd , 1721, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2140114462\",\n        \"listDate\": \"2014-02-19T00:00:00\",\n        \"expiredDate\": \"2014-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-28T00:00:00\",\n        \"processedDate\": \"2014-04-28T00:00:00\",\n        \"closingDate\": \"2014-04-28T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8120,\n        \"propertyAddress\": \"235 Seaview Court , B9, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214010252\",\n        \"listDate\": \"2014-02-18T00:00:00\",\n        \"expiredDate\": \"2014-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-09-30T00:00:00\",\n        \"processedDate\": \"2014-08-22T00:00:00\",\n        \"closingDate\": \"2014-08-22T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8123,\n        \"propertyAddress\": \"427 Spinnaker Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214001629\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-03-31T00:00:00\",\n        \"processedDate\": \"2014-04-07T00:00:00\",\n        \"closingDate\": \"2014-04-04T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Helga Wsamplezold\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8125,\n        \"propertyAddress\": \"739 Hull Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2131582\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-09T00:00:00\",\n        \"processedDate\": \"2014-03-31T00:00:00\",\n        \"closingDate\": \"2014-03-28T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cullen Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8128,\n        \"propertyAddress\": \"428 Nassau Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213510562\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-03T00:00:00\",\n        \"processedDate\": \"2014-04-02T00:00:00\",\n        \"closingDate\": \"2014-03-31T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Angelica samplerews\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8129,\n        \"propertyAddress\": \"961 E. Swallow Avenue , 103, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214005686\",\n        \"listDate\": \"2014-02-19T00:00:00\",\n        \"expiredDate\": \"2014-05-10T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-03-27T00:00:00\",\n        \"processedDate\": \"2014-04-07T00:00:00\",\n        \"closingDate\": \"2014-03-27T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8141,\n        \"propertyAddress\": \"138 Leeward Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214011152\",\n        \"listDate\": \"2014-02-16T00:00:00\",\n        \"expiredDate\": \"2014-08-16T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-03-31T00:00:00\",\n        \"processedDate\": \"2014-03-31T00:00:00\",\n        \"closingDate\": \"2014-03-27T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8145,\n        \"propertyAddress\": \"990 Cape Marco Dr, 801, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213511202\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-15T00:00:00\",\n        \"processedDate\": \"2014-04-16T00:00:00\",\n        \"closingDate\": \"2014-04-16T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Robin Taylsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8146,\n        \"propertyAddress\": \"850 S Barfield Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213504273\",\n        \"listDate\": \"2013-09-27T00:00:00\",\n        \"expiredDate\": \"2014-09-24T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-07-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-08-12T00:00:00\",\n        \"processedDate\": \"2014-08-18T00:00:00\",\n        \"closingDate\": \"2014-08-12T00:00:00\",\n        \"listAgent\": \"Paul Strsampleg\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8158,\n        \"propertyAddress\": \"235 Waterside Circle , 101, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213511113\",\n        \"listDate\": \"2013-12-03T00:00:00\",\n        \"expiredDate\": \"2014-11-21T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-08T00:00:00\",\n        \"processedDate\": \"2014-04-10T00:00:00\",\n        \"closingDate\": \"2014-04-08T00:00:00\",\n        \"listAgent\": \"Cynthia Csampleogin\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8167,\n        \"propertyAddress\": \"PO Box 429 12080, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-02-25T00:00:00\",\n        \"processedDate\": \"2014-02-25T00:00:00\",\n        \"closingDate\": \"2014-02-25T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8169,\n        \"propertyAddress\": \"PO Box 429 12082, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-02-25T00:00:00\",\n        \"processedDate\": \"2014-02-25T00:00:00\",\n        \"closingDate\": \"2014-02-25T00:00:00\",\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8174,\n        \"propertyAddress\": \"2207 San Marco Rd , 104, Marco Island, FL 34145-6904\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214005701\",\n        \"listDate\": \"2014-02-25T00:00:00\",\n        \"expiredDate\": \"2014-10-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-09-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-10-31T00:00:00\",\n        \"processedDate\": \"2014-11-03T00:00:00\",\n        \"closingDate\": \"2014-10-31T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8176,\n        \"propertyAddress\": \"3532 Islandwalk Cir , Naples, FL 34119\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214011280\",\n        \"listDate\": \"2014-02-18T00:00:00\",\n        \"expiredDate\": \"2014-11-17T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-15T00:00:00\",\n        \"processedDate\": \"2014-06-10T00:00:00\",\n        \"closingDate\": \"2014-04-16T00:00:00\",\n        \"listAgent\": \"Denise Ssamples\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Fairfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8179,\n        \"propertyAddress\": \"300 S Collier Blvd , 2104, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214012654\",\n        \"listDate\": \"2014-01-28T00:00:00\",\n        \"expiredDate\": \"2014-07-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-15T00:00:00\",\n        \"processedDate\": \"2014-04-16T00:00:00\",\n        \"closingDate\": \"2014-04-11T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8191,\n        \"propertyAddress\": \"1857 San Marco Rd, PH1, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-03-21T00:00:00\",\n        \"processedDate\": \"2014-03-21T00:00:00\",\n        \"closingDate\": \"2014-03-21T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8194,\n        \"propertyAddress\": \"485 Pepperwood Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": \"2014-02-20T00:00:00\",\n        \"expiredDate\": \"2014-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-01T00:00:00\",\n        \"processedDate\": \"2014-04-03T00:00:00\",\n        \"closingDate\": \"2014-04-01T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8196,\n        \"propertyAddress\": \"670 Hernando Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214005691\",\n        \"listDate\": \"2014-02-25T00:00:00\",\n        \"expiredDate\": \"2014-08-18T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-03-19T00:00:00\",\n        \"processedDate\": \"2014-03-19T00:00:00\",\n        \"closingDate\": \"2014-03-19T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8198,\n        \"propertyAddress\": \"1077 Hartley Avenue , 603, Marco Island, FL 34145-2701\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214005690\",\n        \"listDate\": \"2014-02-25T00:00:00\",\n        \"expiredDate\": \"2014-08-28T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-07-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-09-30T00:00:00\",\n        \"processedDate\": \"2014-09-30T00:00:00\",\n        \"closingDate\": \"2014-09-30T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8202,\n        \"propertyAddress\": \"1241 Blue Hill Creek Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214011818\",\n        \"listDate\": \"2014-02-20T00:00:00\",\n        \"expiredDate\": \"2016-02-14T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-02-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-03-10T00:00:00\",\n        \"processedDate\": \"2015-03-13T00:00:00\",\n        \"closingDate\": \"2015-03-10T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8203,\n        \"propertyAddress\": \"440 Cottage Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-02-13T00:00:00\",\n        \"processedDate\": \"2014-02-27T00:00:00\",\n        \"closingDate\": \"2014-02-13T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8210,\n        \"propertyAddress\": \"531 Elk Cir , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214013087\",\n        \"listDate\": \"2014-02-27T00:00:00\",\n        \"expiredDate\": \"2015-02-25T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-06-10T00:00:00\",\n        \"processedDate\": \"2014-06-12T00:00:00\",\n        \"closingDate\": \"2014-06-10T00:00:00\",\n        \"listAgent\": \"Paul Strsampleg\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8212,\n        \"propertyAddress\": \"188 Columbus Way , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214011621\",\n        \"listDate\": \"2014-02-10T00:00:00\",\n        \"expiredDate\": \"2015-02-10T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-24T00:00:00\",\n        \"processedDate\": \"2014-04-24T00:00:00\",\n        \"closingDate\": \"2014-04-24T00:00:00\",\n        \"listAgent\": \"Lura Jsamplees\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8219,\n        \"propertyAddress\": \"900 S Collier Blvd , 508, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214005683\",\n        \"listDate\": \"2014-02-27T00:00:00\",\n        \"expiredDate\": \"2014-07-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-17T00:00:00\",\n        \"processedDate\": \"2014-04-18T00:00:00\",\n        \"closingDate\": \"2014-04-17T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8222,\n        \"propertyAddress\": \"374 Red Bay Ln , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214012514\",\n        \"listDate\": \"2014-02-24T00:00:00\",\n        \"expiredDate\": \"2015-08-19T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-02-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-03-13T00:00:00\",\n        \"processedDate\": \"2015-03-16T00:00:00\",\n        \"closingDate\": \"2015-03-16T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8224,\n        \"propertyAddress\": \"1781 Barbados Ave , Marco Island, FL 34145-3867\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213022036\",\n        \"listDate\": \"2013-08-01T00:00:00\",\n        \"expiredDate\": \"2015-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-06-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-07-22T00:00:00\",\n        \"processedDate\": \"2014-07-23T00:00:00\",\n        \"closingDate\": \"2014-07-22T00:00:00\",\n        \"listAgent\": \"Gwen Tolssample\",\n        \"sellAgent\": \"Krystal Bernsamplerdt\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8225,\n        \"propertyAddress\": \"2000 Royal Marco Way , 305, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214012965\",\n        \"listDate\": \"2014-02-28T00:00:00\",\n        \"expiredDate\": \"2015-02-20T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-30T00:00:00\",\n        \"processedDate\": \"2014-06-05T00:00:00\",\n        \"closingDate\": \"2014-04-30T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8240,\n        \"propertyAddress\": \"4811 Island Pond Ct, Unit 702, Bonita Springs, FL 34135\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213510131\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-10T00:00:00\",\n        \"processedDate\": \"2014-04-14T00:00:00\",\n        \"closingDate\": \"2014-04-10T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Harriet samplernar\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Boston\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8248,\n        \"propertyAddress\": \"880 Huron Ct, 105, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2131344\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-03-25T00:00:00\",\n        \"processedDate\": \"2014-03-26T00:00:00\",\n        \"closingDate\": \"2014-03-26T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8252,\n        \"propertyAddress\": \"1085 Bald Eagle Dr, C510, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2140024\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-03-04T00:00:00\",\n        \"processedDate\": \"2014-03-04T00:00:00\",\n        \"closingDate\": \"2014-03-04T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8261,\n        \"propertyAddress\": \"500 Shalimar St, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214008815\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-17T00:00:00\",\n        \"processedDate\": \"2014-04-18T00:00:00\",\n        \"closingDate\": \"2014-04-17T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8262,\n        \"propertyAddress\": \"3664 Treasure Cove Cir, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-07-20T00:00:00\",\n        \"processedDate\": \"2014-07-18T00:00:00\",\n        \"closingDate\": \"2014-07-17T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8269,\n        \"propertyAddress\": \"1510 Collingswood Ave, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214010330\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-15T00:00:00\",\n        \"processedDate\": \"2014-04-15T00:00:00\",\n        \"closingDate\": \"2014-04-15T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Vince Cosamplece\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8271,\n        \"propertyAddress\": \"44 Madagascar Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214014583\",\n        \"listDate\": \"2014-03-05T00:00:00\",\n        \"expiredDate\": \"2014-11-25T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-29T00:00:00\",\n        \"processedDate\": \"2014-04-30T00:00:00\",\n        \"closingDate\": \"2014-04-29T00:00:00\",\n        \"listAgent\": \"Robin Taylsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8283,\n        \"propertyAddress\": \"237 N Collier 12232 Boulevard, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-01-31T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-03-06T00:00:00\",\n        \"processedDate\": \"2014-03-06T00:00:00\",\n        \"closingDate\": \"2014-03-06T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8284,\n        \"propertyAddress\": \"1108 1/2 N Collier 12233 Blvd, Ste A, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-03-06T00:00:00\",\n        \"processedDate\": \"2014-03-06T00:00:00\",\n        \"closingDate\": \"2014-03-06T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8294,\n        \"propertyAddress\": \"792 Whiskey Creek Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212035946\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-03-17T00:00:00\",\n        \"processedDate\": \"2014-03-19T00:00:00\",\n        \"closingDate\": \"2014-03-19T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"V.K. Melsampledo PA\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Broad Avenue\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8300,\n        \"propertyAddress\": \"980 Cape Marco Dr , 1105, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214014603\",\n        \"listDate\": \"2014-03-10T00:00:00\",\n        \"expiredDate\": \"2015-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-03-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-05-15T00:00:00\",\n        \"processedDate\": \"2015-05-08T00:00:00\",\n        \"closingDate\": \"2015-05-05T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8302,\n        \"propertyAddress\": \"730 W Elkcam Cir , 203, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214015192\",\n        \"listDate\": \"2014-03-10T00:00:00\",\n        \"expiredDate\": \"2014-09-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-05-19T00:00:00\",\n        \"processedDate\": \"2014-05-06T00:00:00\",\n        \"closingDate\": \"2014-04-30T00:00:00\",\n        \"listAgent\": \"Cullen Ssampleughnessy\",\n        \"sellAgent\": \"Cullen Ssampleughnessy\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8304,\n        \"propertyAddress\": \"590 Club Marco Cir , 101, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214015620\",\n        \"listDate\": \"2014-03-10T00:00:00\",\n        \"expiredDate\": \"2015-08-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-23T00:00:00\",\n        \"processedDate\": \"2014-04-23T00:00:00\",\n        \"closingDate\": \"2014-04-23T00:00:00\",\n        \"listAgent\": \"Gwen Tolssample\",\n        \"sellAgent\": \"Gwen Tolssample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8313,\n        \"propertyAddress\": \"354 Gumbo Limbo Ln, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212017616\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-10T00:00:00\",\n        \"processedDate\": \"2014-04-11T00:00:00\",\n        \"closingDate\": \"2014-04-10T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8317,\n        \"propertyAddress\": \"850 S Collier Blvd , 1702, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214015209\",\n        \"listDate\": \"2014-03-11T00:00:00\",\n        \"expiredDate\": \"2015-02-24T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-11-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-02-16T00:00:00\",\n        \"processedDate\": \"2015-01-26T00:00:00\",\n        \"closingDate\": \"2015-01-23T00:00:00\",\n        \"listAgent\": \"Cynthia Csampleogin\",\n        \"sellAgent\": \"Cynthia Csampleogin\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8331,\n        \"propertyAddress\": \"720 Collier Blvd SE, 1403, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213503223\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-02T00:00:00\",\n        \"processedDate\": \"2014-04-02T00:00:00\",\n        \"closingDate\": \"2014-04-02T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8332,\n        \"propertyAddress\": \"3000 Royal Marco Way, 415, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213024460\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-08T00:00:00\",\n        \"processedDate\": \"2014-04-08T00:00:00\",\n        \"closingDate\": \"2014-04-08T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8348,\n        \"propertyAddress\": \"817 Arcadia Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214016291\",\n        \"listDate\": \"2014-03-13T00:00:00\",\n        \"expiredDate\": \"2015-03-03T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-03-25T00:00:00\",\n        \"processedDate\": \"2014-03-25T00:00:00\",\n        \"closingDate\": \"2014-03-20T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8351,\n        \"propertyAddress\": \"150 June Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214012434\",\n        \"listDate\": \"2014-02-24T00:00:00\",\n        \"expiredDate\": \"2014-08-19T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-05-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-07-31T00:00:00\",\n        \"processedDate\": \"2014-08-15T00:00:00\",\n        \"closingDate\": \"2014-07-31T00:00:00\",\n        \"listAgent\": \"Cullen Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8354,\n        \"propertyAddress\": \"840 S Collier Blvd S, 302, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214016713\",\n        \"listDate\": \"2014-03-14T00:00:00\",\n        \"expiredDate\": \"2014-09-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-04T00:00:00\",\n        \"processedDate\": \"2014-04-04T00:00:00\",\n        \"closingDate\": \"2014-04-04T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Cynthia Csampleogin\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8363,\n        \"propertyAddress\": \"1711 Watson Rd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214000113\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-06-13T00:00:00\",\n        \"processedDate\": \"2014-06-13T00:00:00\",\n        \"closingDate\": \"2014-06-13T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Sherrie Pfeffsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8366,\n        \"propertyAddress\": \"400 Century Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214016775\",\n        \"listDate\": \"2014-03-17T00:00:00\",\n        \"expiredDate\": \"2015-02-28T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-05-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-10-29T00:00:00\",\n        \"processedDate\": \"2014-11-04T00:00:00\",\n        \"closingDate\": \"2014-10-29T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8370,\n        \"propertyAddress\": \"337 Vintage Bay Dr, D-29, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2132913\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-03-26T00:00:00\",\n        \"processedDate\": \"2014-03-31T00:00:00\",\n        \"closingDate\": \"2014-03-26T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8375,\n        \"propertyAddress\": \"1281 Fruitland Ave , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214014834\",\n        \"listDate\": \"2014-03-17T00:00:00\",\n        \"expiredDate\": \"2014-08-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-05-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-05-22T00:00:00\",\n        \"processedDate\": \"2014-05-23T00:00:00\",\n        \"closingDate\": \"2014-05-23T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8376,\n        \"propertyAddress\": \"981 Mendel Ave , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214014896\",\n        \"listDate\": \"2014-03-17T00:00:00\",\n        \"expiredDate\": \"2015-03-03T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-04-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-18T00:00:00\",\n        \"processedDate\": \"2014-04-22T00:00:00\",\n        \"closingDate\": \"2014-04-18T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8378,\n        \"propertyAddress\": \"970 Cape Marco Drive, 602, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213008301\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-06-03T00:00:00\",\n        \"processedDate\": \"2014-06-04T00:00:00\",\n        \"closingDate\": \"2014-06-04T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Laura samplems\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8397,\n        \"propertyAddress\": \"1070 Collier 12382 Blvd, Unit 807, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-03-19T00:00:00\",\n        \"processedDate\": \"2014-03-19T00:00:00\",\n        \"closingDate\": \"2014-03-19T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8408,\n        \"propertyAddress\": \"PO Box 12396 429, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-03-20T00:00:00\",\n        \"processedDate\": \"2014-03-20T00:00:00\",\n        \"closingDate\": \"2014-03-20T00:00:00\",\n        \"listAgent\": \"Julia Stephsamples\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8418,\n        \"propertyAddress\": \"330 Hazelcrest St, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213500977\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-02T00:00:00\",\n        \"processedDate\": \"2014-04-02T00:00:00\",\n        \"closingDate\": \"2014-04-02T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cullen Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8439,\n        \"propertyAddress\": \"1111 Swallow Ave, 602, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214007805\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-05-16T00:00:00\",\n        \"processedDate\": \"2014-05-19T00:00:00\",\n        \"closingDate\": \"2014-05-16T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Angelica samplerews\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8452,\n        \"propertyAddress\": \"1085 Bald Eagle Dr, D-403, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2140560\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-23T00:00:00\",\n        \"processedDate\": \"2014-04-23T00:00:00\",\n        \"closingDate\": \"2014-04-23T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8453,\n        \"propertyAddress\": \"1108 1/2 N Collier 12458 Blvd, Ste A, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-03-27T00:00:00\",\n        \"processedDate\": \"2014-03-27T00:00:00\",\n        \"closingDate\": \"2014-03-27T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8459,\n        \"propertyAddress\": \"1167 Lighthouse Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213510343\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-05-15T00:00:00\",\n        \"processedDate\": \"2014-05-15T00:00:00\",\n        \"closingDate\": \"2014-05-15T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Gwen Tolssample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8465,\n        \"propertyAddress\": \"900 Whiskey Creek Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214003351\",\n        \"listDate\": \"2014-01-22T00:00:00\",\n        \"expiredDate\": \"2014-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-04-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-05-19T00:00:00\",\n        \"processedDate\": \"2014-05-21T00:00:00\",\n        \"closingDate\": \"2014-05-19T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8477,\n        \"propertyAddress\": \"Cardinal Cove, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-03-31T00:00:00\",\n        \"processedDate\": \"2014-03-31T00:00:00\",\n        \"closingDate\": \"2014-03-31T00:00:00\",\n        \"listAgent\": \"Mike sample-Joyce\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8493,\n        \"propertyAddress\": \"260 Seaview Ct , 1008, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214019222\",\n        \"listDate\": \"2014-04-01T00:00:00\",\n        \"expiredDate\": \"2015-03-25T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-03-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-03-30T00:00:00\",\n        \"processedDate\": \"2015-03-20T00:00:00\",\n        \"closingDate\": \"2015-03-20T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": \"Helga Wsamplezold\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8505,\n        \"propertyAddress\": \"237 N Collier 12524 Blvd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-03T00:00:00\",\n        \"processedDate\": \"2014-04-03T00:00:00\",\n        \"closingDate\": \"2014-04-03T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8508,\n        \"propertyAddress\": \"961 Collier Ct, 103, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2140912\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-04-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-05-20T00:00:00\",\n        \"processedDate\": \"2014-05-20T00:00:00\",\n        \"closingDate\": \"2014-05-20T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Robin Taylsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8510,\n        \"propertyAddress\": \"221 Tahiti Rd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213508340\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-10T00:00:00\",\n        \"processedDate\": \"2014-04-07T00:00:00\",\n        \"closingDate\": \"2014-04-01T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Sue Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8517,\n        \"propertyAddress\": \"1215 Edington Pl , O-6, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214020646\",\n        \"listDate\": \"2014-04-03T00:00:00\",\n        \"expiredDate\": \"2015-04-02T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-04-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-05-09T00:00:00\",\n        \"processedDate\": \"2014-05-09T00:00:00\",\n        \"closingDate\": \"2014-05-09T00:00:00\",\n        \"listAgent\": \"Robin Taylsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8520,\n        \"propertyAddress\": \"951 S Collier Boulevard , PH2, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214020881\",\n        \"listDate\": \"2014-04-03T00:00:00\",\n        \"expiredDate\": \"2015-04-02T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-05-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-05-09T00:00:00\",\n        \"processedDate\": \"2014-09-03T00:00:00\",\n        \"closingDate\": \"2014-08-25T00:00:00\",\n        \"listAgent\": \"Angelica samplerews\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8571,\n        \"propertyAddress\": \"220 S Collier Blvd, 202, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2140837\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-04-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-05-30T00:00:00\",\n        \"processedDate\": \"2014-06-03T00:00:00\",\n        \"closingDate\": \"2014-05-30T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Darlene sampleddy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8576,\n        \"propertyAddress\": \"970 Cape Marco Dr, 1204, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213505155\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-04-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-05-15T00:00:00\",\n        \"processedDate\": \"2014-05-16T00:00:00\",\n        \"closingDate\": \"2014-05-15T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Angelica samplerews\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8585,\n        \"propertyAddress\": \"1137 Breakwater Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214006919\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-04-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-25T00:00:00\",\n        \"processedDate\": \"2014-04-30T00:00:00\",\n        \"closingDate\": \"2014-04-25T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Helga Wsamplezold\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8593,\n        \"propertyAddress\": \"184 Majorca Cir, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213512230\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-07-31T00:00:00\",\n        \"processedDate\": \"2014-07-07T00:00:00\",\n        \"closingDate\": \"2014-07-03T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cullen Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8594,\n        \"propertyAddress\": \"781 N Barfield Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2130930\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-04-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-05-14T00:00:00\",\n        \"processedDate\": \"2014-05-16T00:00:00\",\n        \"closingDate\": \"2014-05-16T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cullen Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8598,\n        \"propertyAddress\": \"818 Elm Ct , Marco Island, FL 34145-2109\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213024746\",\n        \"listDate\": \"2013-08-13T00:00:00\",\n        \"expiredDate\": \"2014-08-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-05-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-06-27T00:00:00\",\n        \"processedDate\": \"2014-07-02T00:00:00\",\n        \"closingDate\": \"2014-06-27T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8606,\n        \"propertyAddress\": \"1539 Heights Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213018235\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-04-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-06-18T00:00:00\",\n        \"processedDate\": \"2014-06-20T00:00:00\",\n        \"closingDate\": \"2014-06-20T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8609,\n        \"propertyAddress\": \"20940 Island Sound Cir, 106, Estero, FL 33928\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214006835\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-04-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-06-06T00:00:00\",\n        \"processedDate\": \"2014-06-06T00:00:00\",\n        \"closingDate\": \"2014-06-06T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Michael Pattsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Boston\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8610,\n        \"propertyAddress\": \"1151 Edington Pl, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213023831\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-04-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-05-01T00:00:00\",\n        \"processedDate\": \"2014-05-05T00:00:00\",\n        \"closingDate\": \"2014-05-05T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Dave Flowsamples\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8621,\n        \"propertyAddress\": \"990 Cape Marco Dr , 1007, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214022486\",\n        \"listDate\": \"2014-04-15T00:00:00\",\n        \"expiredDate\": \"2015-01-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-07-31T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-08-26T00:00:00\",\n        \"processedDate\": \"2014-08-26T00:00:00\",\n        \"closingDate\": \"2014-08-26T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8622,\n        \"propertyAddress\": \"201 Vintage Bay Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214023124\",\n        \"listDate\": \"2014-04-15T00:00:00\",\n        \"expiredDate\": \"2015-01-04T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-05-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-06-18T00:00:00\",\n        \"processedDate\": \"2014-06-20T00:00:00\",\n        \"closingDate\": \"2014-06-18T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8629,\n        \"propertyAddress\": \"331 Waterleaf Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2132940\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-18T00:00:00\",\n        \"processedDate\": \"2014-04-21T00:00:00\",\n        \"closingDate\": \"2014-04-21T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8632,\n        \"propertyAddress\": \"1206 Edington Pl , 101, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214023131\",\n        \"listDate\": \"2014-04-16T00:00:00\",\n        \"expiredDate\": \"2014-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-04-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-07-07T00:00:00\",\n        \"processedDate\": \"2014-07-07T00:00:00\",\n        \"closingDate\": \"2014-07-07T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8636,\n        \"propertyAddress\": \"741 Waterside Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214023218\",\n        \"listDate\": \"2014-04-16T00:00:00\",\n        \"expiredDate\": \"2014-11-03T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-07-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-08-29T00:00:00\",\n        \"processedDate\": \"2014-09-02T00:00:00\",\n        \"closingDate\": \"2014-08-29T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8667,\n        \"propertyAddress\": \"921 Panama Ct, C1, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214020734\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-04-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-05-20T00:00:00\",\n        \"processedDate\": \"2014-05-20T00:00:00\",\n        \"closingDate\": \"2014-05-20T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Krystal Bernsamplerdt\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8674,\n        \"propertyAddress\": \"190 N Collier Blvd , P-1, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214024523\",\n        \"listDate\": \"2014-04-22T00:00:00\",\n        \"expiredDate\": \"2015-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-05-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-06-23T00:00:00\",\n        \"processedDate\": \"2014-06-23T00:00:00\",\n        \"closingDate\": \"2014-06-23T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8676,\n        \"propertyAddress\": \"1085 Caxambas Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214023344\",\n        \"listDate\": \"2014-04-22T00:00:00\",\n        \"expiredDate\": \"2016-02-29T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-10-31T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-01-05T00:00:00\",\n        \"processedDate\": \"2016-01-05T00:00:00\",\n        \"closingDate\": \"2016-01-05T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8679,\n        \"propertyAddress\": \"1678 Rainbow Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214019963\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-04-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-06-30T00:00:00\",\n        \"processedDate\": \"2014-09-09T00:00:00\",\n        \"closingDate\": \"2014-06-30T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Vince Cosamplece\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8682,\n        \"propertyAddress\": \"8905 SE Harbor Island Way, Hobe Sound, FL 33455\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-04-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-23T00:00:00\",\n        \"processedDate\": \"2014-04-23T00:00:00\",\n        \"closingDate\": \"2014-04-23T00:00:00\",\n        \"listAgent\": \"Rosemarie Tsampleagni\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8684,\n        \"propertyAddress\": \"1130 Breakwater Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214009578\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-29T00:00:00\",\n        \"processedDate\": \"2014-04-30T00:00:00\",\n        \"closingDate\": \"2014-04-29T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Sue Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8685,\n        \"propertyAddress\": \"1442 Biscayne Way, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214001023\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-29T00:00:00\",\n        \"processedDate\": \"2014-05-05T00:00:00\",\n        \"closingDate\": \"2014-04-29T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Sue Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8713,\n        \"propertyAddress\": \"1108 1/2 N Collier 12794 Blvd, Ste A, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-04-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-28T00:00:00\",\n        \"processedDate\": \"2014-04-28T00:00:00\",\n        \"closingDate\": \"2014-04-28T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8726,\n        \"propertyAddress\": \"930 San Marco Rd , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214025003\",\n        \"listDate\": \"2014-04-28T00:00:00\",\n        \"expiredDate\": \"2015-06-17T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-12-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-01-28T00:00:00\",\n        \"processedDate\": \"2015-01-29T00:00:00\",\n        \"closingDate\": \"2015-01-28T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8730,\n        \"propertyAddress\": \"848 Elkcam Circle, 212, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214014043\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-04-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-06-05T00:00:00\",\n        \"processedDate\": \"2014-06-09T00:00:00\",\n        \"closingDate\": \"2014-06-04T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Rosemarie Tsampleagni\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8737,\n        \"propertyAddress\": \"300 S Collier Blvd , 2306, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214025598\",\n        \"listDate\": \"2014-04-29T00:00:00\",\n        \"expiredDate\": \"2015-04-27T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-05-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-07-31T00:00:00\",\n        \"processedDate\": \"2014-07-11T00:00:00\",\n        \"closingDate\": \"2014-07-08T00:00:00\",\n        \"listAgent\": \"Angelica samplerews\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8738,\n        \"propertyAddress\": \"2000 Royal Marco Way , 210, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214025816\",\n        \"listDate\": \"2004-04-29T00:00:00\",\n        \"expiredDate\": \"2015-10-16T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-01-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-01-29T00:00:00\",\n        \"processedDate\": \"2015-02-02T00:00:00\",\n        \"closingDate\": \"2015-01-30T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8749,\n        \"propertyAddress\": \"274 Sand Hill, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214020328\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-04-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-05-06T00:00:00\",\n        \"processedDate\": \"2014-05-08T00:00:00\",\n        \"closingDate\": \"2014-05-06T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Sue Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8750,\n        \"propertyAddress\": \"340 Cottage PYMT 2 Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"new cons\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-04-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-12-31T00:00:00\",\n        \"processedDate\": \"2014-05-06T00:00:00\",\n        \"closingDate\": \"2014-05-06T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cynthia Csampleogin\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8752,\n        \"propertyAddress\": \"190 N Collier Blvd, R-9, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2141048\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-04-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-06-16T00:00:00\",\n        \"processedDate\": \"2014-06-20T00:00:00\",\n        \"closingDate\": \"2014-06-16T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8764,\n        \"propertyAddress\": \"340 Cottage PYMT 1 Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-04-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-05-01T00:00:00\",\n        \"processedDate\": \"2014-05-01T00:00:00\",\n        \"closingDate\": \"2014-05-01T00:00:00\",\n        \"listAgent\": \"Cynthia Csampleogin\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8766,\n        \"propertyAddress\": \"848 Rose Court , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"214025143\",\n        \"listDate\": \"2014-05-01T00:00:00\",\n        \"expiredDate\": \"2016-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8779,\n        \"propertyAddress\": \"921 Seagrape Dr, 307, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2141132\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-05-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-06-20T00:00:00\",\n        \"processedDate\": \"2014-06-19T00:00:00\",\n        \"closingDate\": \"2014-06-19T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8806,\n        \"propertyAddress\": \"4000 Royal Marco Way, 328, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214017725\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-05-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-07-01T00:00:00\",\n        \"processedDate\": \"2014-07-02T00:00:00\",\n        \"closingDate\": \"2014-07-02T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8810,\n        \"propertyAddress\": \"530 S Collier Blvd , 202, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214027945\",\n        \"listDate\": \"2014-05-09T00:00:00\",\n        \"expiredDate\": \"2015-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-01-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-02-09T00:00:00\",\n        \"processedDate\": \"2015-02-11T00:00:00\",\n        \"closingDate\": \"2015-02-09T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8815,\n        \"propertyAddress\": \"452 Parkhouse Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213021596\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-05-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-06-04T00:00:00\",\n        \"processedDate\": \"2014-06-04T00:00:00\",\n        \"closingDate\": \"2014-06-04T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Sue Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8824,\n        \"propertyAddress\": \"829 Palm St , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214008269\",\n        \"listDate\": \"2014-02-04T00:00:00\",\n        \"expiredDate\": \"2014-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-06-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-09-30T00:00:00\",\n        \"processedDate\": \"2014-09-15T00:00:00\",\n        \"closingDate\": \"2014-09-12T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Cullen Ssampleughnessy\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8825,\n        \"propertyAddress\": \"14 Manor Terr, 9-207, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2131241\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-05-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-06-25T00:00:00\",\n        \"processedDate\": \"2014-06-25T00:00:00\",\n        \"closingDate\": \"2014-06-25T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Robin Taylsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8826,\n        \"propertyAddress\": \"731 W Elkcam Cir, A-107, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214018356\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-05-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-05-16T00:00:00\",\n        \"processedDate\": \"2014-05-19T00:00:00\",\n        \"closingDate\": \"2014-05-19T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Sue Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8833,\n        \"propertyAddress\": \"730 SE Collier Blvd, 103, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214001381\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-05-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-07-24T00:00:00\",\n        \"processedDate\": \"2014-07-31T00:00:00\",\n        \"closingDate\": \"2014-07-24T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Angelica samplerews\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8836,\n        \"propertyAddress\": \"300 S Colier Blvd , 2302, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214027578\",\n        \"listDate\": \"2014-05-05T00:00:00\",\n        \"expiredDate\": \"2015-02-05T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-09-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-09-26T00:00:00\",\n        \"processedDate\": \"2014-10-06T00:00:00\",\n        \"closingDate\": \"2014-09-26T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8843,\n        \"propertyAddress\": \"1825 Maywood Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214028625\",\n        \"listDate\": \"2014-05-15T00:00:00\",\n        \"expiredDate\": \"2015-05-12T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-06-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-07-15T00:00:00\",\n        \"processedDate\": \"2014-07-15T00:00:00\",\n        \"closingDate\": \"2014-07-15T00:00:00\",\n        \"listAgent\": \"Cullen Ssampleughnessy\",\n        \"sellAgent\": \"Laura samplems\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8856,\n        \"propertyAddress\": \"489 Balsam Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214028595\",\n        \"listDate\": \"2014-05-15T00:00:00\",\n        \"expiredDate\": \"2015-01-13T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-10-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-12-12T00:00:00\",\n        \"processedDate\": \"2014-12-06T00:00:00\",\n        \"closingDate\": \"2014-12-05T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8860,\n        \"propertyAddress\": \"143 Tahiti Rd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214019204\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-05-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-06-30T00:00:00\",\n        \"processedDate\": \"2014-07-02T00:00:00\",\n        \"closingDate\": \"2014-06-30T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Angelica samplerews\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8863,\n        \"propertyAddress\": \"616 Waterside Dr , Marco Island, FL 34145-1842\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"211524107\",\n        \"listDate\": \"2011-12-28T00:00:00\",\n        \"expiredDate\": \"2015-06-02T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-01-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-03-13T00:00:00\",\n        \"processedDate\": \"2015-03-09T00:00:00\",\n        \"closingDate\": \"2015-03-09T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8868,\n        \"propertyAddress\": \"466 N Collier Blvd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-05-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-05-19T00:00:00\",\n        \"processedDate\": \"2014-05-20T00:00:00\",\n        \"closingDate\": \"2014-05-19T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8887,\n        \"propertyAddress\": \"970 Cape Marco Dr , 1108, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214030346\",\n        \"listDate\": \"2014-05-22T00:00:00\",\n        \"expiredDate\": \"2014-11-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-07-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-09-08T00:00:00\",\n        \"processedDate\": \"2014-09-08T00:00:00\",\n        \"closingDate\": \"2014-09-08T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8892,\n        \"propertyAddress\": \"105 Shorecrest Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214020633\",\n        \"listDate\": \"2014-04-04T00:00:00\",\n        \"expiredDate\": \"2014-09-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-06-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-07-31T00:00:00\",\n        \"processedDate\": \"2014-08-04T00:00:00\",\n        \"closingDate\": \"2014-08-01T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8893,\n        \"propertyAddress\": \"237 Windbrook Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214030239\",\n        \"listDate\": \"2014-05-22T00:00:00\",\n        \"expiredDate\": \"2015-09-21T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-04-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-06-08T00:00:00\",\n        \"processedDate\": \"2015-06-09T00:00:00\",\n        \"closingDate\": \"2015-06-08T00:00:00\",\n        \"listAgent\": \"Robin Taylsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8916,\n        \"propertyAddress\": \"1300 Jamaica Rd , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214030319\",\n        \"listDate\": \"2014-05-28T00:00:00\",\n        \"expiredDate\": \"2015-05-20T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-02-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-03-31T00:00:00\",\n        \"processedDate\": \"2015-03-31T00:00:00\",\n        \"closingDate\": \"2015-03-31T00:00:00\",\n        \"listAgent\": \"Cynthia Csampleogin\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8917,\n        \"propertyAddress\": \"530 S Collier Blvd , 303, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214031168\",\n        \"listDate\": \"2014-05-27T00:00:00\",\n        \"expiredDate\": \"2015-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-12-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-01-08T00:00:00\",\n        \"processedDate\": \"2015-01-09T00:00:00\",\n        \"closingDate\": \"2015-01-09T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8925,\n        \"propertyAddress\": \"1181 Ember Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214031381\",\n        \"listDate\": \"2014-05-29T00:00:00\",\n        \"expiredDate\": \"2015-12-10T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-08-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-09-16T00:00:00\",\n        \"processedDate\": \"2015-09-16T00:00:00\",\n        \"closingDate\": \"2015-09-16T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8931,\n        \"propertyAddress\": \"264 Meadowlark Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214031223\",\n        \"listDate\": \"2014-06-02T00:00:00\",\n        \"expiredDate\": \"2014-12-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-08-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-10-15T00:00:00\",\n        \"processedDate\": \"2014-10-16T00:00:00\",\n        \"closingDate\": \"2014-10-15T00:00:00\",\n        \"listAgent\": \"Gwen Tolssample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8936,\n        \"propertyAddress\": \"906 Whiskey Creek Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214032021\",\n        \"listDate\": \"2014-06-02T00:00:00\",\n        \"expiredDate\": \"2015-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-02-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-03-02T00:00:00\",\n        \"processedDate\": \"2015-03-02T00:00:00\",\n        \"closingDate\": \"2015-03-02T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8953,\n        \"propertyAddress\": \"580 S Barfield Drive, Marco Island, FL 34145-5921\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214032487\",\n        \"listDate\": \"2014-06-04T00:00:00\",\n        \"expiredDate\": \"2014-12-04T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-11-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-01-22T00:00:00\",\n        \"processedDate\": \"2015-01-22T00:00:00\",\n        \"closingDate\": \"2015-01-22T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8957,\n        \"propertyAddress\": \"991 Collier Ct, 102, Marco Island, FL 34145-6576\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214032539\",\n        \"listDate\": \"2014-06-04T00:00:00\",\n        \"expiredDate\": \"2015-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-07-29T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-09-04T00:00:00\",\n        \"processedDate\": \"2014-09-04T00:00:00\",\n        \"closingDate\": \"2014-09-04T00:00:00\",\n        \"listAgent\": \"Rosemarie Tsampleagni\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8959,\n        \"propertyAddress\": \"1357 Jamaica Rd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214021608\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-06-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-06-18T00:00:00\",\n        \"processedDate\": \"2014-06-20T00:00:00\",\n        \"closingDate\": \"2014-06-18T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Rosemarie Tsampleagni\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8960,\n        \"propertyAddress\": \"820 Partridge Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214013731\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-06-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-06-25T00:00:00\",\n        \"processedDate\": \"2014-06-27T00:00:00\",\n        \"closingDate\": \"2014-06-27T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8966,\n        \"propertyAddress\": \"693 Seaview Ct , A-407, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214033027\",\n        \"listDate\": \"2014-06-06T00:00:00\",\n        \"expiredDate\": \"2015-06-06T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-03-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-03-20T00:00:00\",\n        \"processedDate\": \"2015-03-20T00:00:00\",\n        \"closingDate\": \"2015-03-20T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 8969,\n        \"propertyAddress\": \"1623 Briarwood Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214026462\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-06-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-07-15T00:00:00\",\n        \"processedDate\": \"2014-07-16T00:00:00\",\n        \"closingDate\": \"2014-07-15T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cullen Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9009,\n        \"propertyAddress\": \"589 Inlet Dr , Marco Island, FL 34145-5991\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214034514\",\n        \"listDate\": \"2014-06-16T00:00:00\",\n        \"expiredDate\": \"2015-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-05-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-06-11T00:00:00\",\n        \"processedDate\": \"2015-06-11T00:00:00\",\n        \"closingDate\": \"2015-06-11T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Anne Ksamplelsamplesample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Bay Village\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9019,\n        \"propertyAddress\": \"530 Peacock , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214033786\",\n        \"listDate\": \"2014-06-18T00:00:00\",\n        \"expiredDate\": \"2015-03-05T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-06-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-08-08T00:00:00\",\n        \"processedDate\": \"2014-07-18T00:00:00\",\n        \"closingDate\": \"2014-07-16T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9026,\n        \"propertyAddress\": \"847 N Collier Blvd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-06-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-06-18T00:00:00\",\n        \"processedDate\": \"2014-06-18T00:00:00\",\n        \"closingDate\": \"2014-06-18T00:00:00\",\n        \"listAgent\": \"Laura samplems\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9027,\n        \"propertyAddress\": \"847 N Collier Blvd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-06-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-06-18T00:00:00\",\n        \"processedDate\": \"2014-06-18T00:00:00\",\n        \"closingDate\": \"2014-06-18T00:00:00\",\n        \"listAgent\": \"Laura samplems\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9028,\n        \"propertyAddress\": \"847 N Collier Blvd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-06-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-06-18T00:00:00\",\n        \"processedDate\": \"2014-06-18T00:00:00\",\n        \"closingDate\": \"2014-06-18T00:00:00\",\n        \"listAgent\": \"Laura samplems\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9029,\n        \"propertyAddress\": \"847 N Collier Boulevard, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-06-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-06-18T00:00:00\",\n        \"processedDate\": \"2014-06-18T00:00:00\",\n        \"closingDate\": \"2014-06-18T00:00:00\",\n        \"listAgent\": \"Laura samplems\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9040,\n        \"propertyAddress\": \"481 Balsam Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214035234\",\n        \"listDate\": \"2014-06-18T00:00:00\",\n        \"expiredDate\": \"2015-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-09-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-10-07T00:00:00\",\n        \"processedDate\": \"2014-10-09T00:00:00\",\n        \"closingDate\": \"2014-10-07T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9047,\n        \"propertyAddress\": \"2000 Royal Marco Way , Marco Island, FL 34145-1891\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214035520\",\n        \"listDate\": \"2014-06-20T00:00:00\",\n        \"expiredDate\": \"2016-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-06-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-08-03T00:00:00\",\n        \"processedDate\": \"2015-08-04T00:00:00\",\n        \"closingDate\": \"2015-08-03T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9049,\n        \"propertyAddress\": \"530 Peacock Terrace, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"214033786\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": \"2014-06-23T00:00:00\",\n        \"pendingDate\": \"2014-06-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-07-09T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9054,\n        \"propertyAddress\": \"2000 Royal Marco Way, 403, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2141264\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-06-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-08-20T00:00:00\",\n        \"processedDate\": \"2014-08-22T00:00:00\",\n        \"closingDate\": \"2014-08-22T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9063,\n        \"propertyAddress\": \"335 Henderson PYMT 1 Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-06-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-06-25T00:00:00\",\n        \"processedDate\": \"2014-06-25T00:00:00\",\n        \"closingDate\": \"2014-06-25T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9081,\n        \"propertyAddress\": \"850 S Collier Blvd , 101, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214036024\",\n        \"listDate\": \"2014-06-30T00:00:00\",\n        \"expiredDate\": \"2015-02-27T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-10-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-12-18T00:00:00\",\n        \"processedDate\": \"2014-12-15T00:00:00\",\n        \"closingDate\": \"2014-12-05T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9082,\n        \"propertyAddress\": \"133 Vintage Bay Dr , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"214035381WD\",\n        \"listDate\": \"2014-06-12T00:00:00\",\n        \"expiredDate\": \"2018-12-31T00:00:00\",\n        \"withdrawnDate\": \"2018-09-26T15:51:03\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9091,\n        \"propertyAddress\": \"900 Collier Ct , 303, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214037172\",\n        \"listDate\": \"2014-07-01T00:00:00\",\n        \"expiredDate\": \"2015-02-28T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-10-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-12-03T00:00:00\",\n        \"processedDate\": \"2014-12-06T00:00:00\",\n        \"closingDate\": \"2014-12-03T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9093,\n        \"propertyAddress\": \"170 Sand Hill St , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214037365\",\n        \"listDate\": \"2014-07-02T00:00:00\",\n        \"expiredDate\": \"2015-06-20T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-07-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-09-03T00:00:00\",\n        \"processedDate\": \"2014-09-04T00:00:00\",\n        \"closingDate\": \"2014-09-03T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9105,\n        \"propertyAddress\": \"1103 S Collier Blvd , C101, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214036261\",\n        \"listDate\": \"2014-07-03T00:00:00\",\n        \"expiredDate\": \"2015-06-19T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-07-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-09-19T00:00:00\",\n        \"processedDate\": \"2014-09-22T00:00:00\",\n        \"closingDate\": \"2014-09-22T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9111,\n        \"propertyAddress\": \"170 Balfour Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213513684\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-06-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-07-11T00:00:00\",\n        \"processedDate\": \"2014-07-17T00:00:00\",\n        \"closingDate\": \"2014-07-11T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Rosemarie Tsampleagni\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9116,\n        \"propertyAddress\": \"237 N Collier 13366 Blvd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-06-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-07-09T00:00:00\",\n        \"processedDate\": \"2014-07-09T00:00:00\",\n        \"closingDate\": \"2014-07-09T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9117,\n        \"propertyAddress\": \"1108 1/2 N Collier 13367 Blvd, Ste A, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-06-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-07-09T00:00:00\",\n        \"processedDate\": \"2014-07-09T00:00:00\",\n        \"closingDate\": \"2014-07-09T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9120,\n        \"propertyAddress\": \"396 Nassau Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214002769\",\n        \"listDate\": \"2014-01-20T00:00:00\",\n        \"expiredDate\": \"2015-01-10T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-07-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-07-11T00:00:00\",\n        \"processedDate\": \"2014-07-15T00:00:00\",\n        \"closingDate\": \"2014-07-11T00:00:00\",\n        \"listAgent\": \"Paul Strsampleg\",\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9121,\n        \"propertyAddress\": \"87 N Collier Blvd N, B-1, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214025910\",\n        \"listDate\": \"2014-05-01T00:00:00\",\n        \"expiredDate\": \"2015-01-24T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-07-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-07-25T00:00:00\",\n        \"processedDate\": \"2014-07-28T00:00:00\",\n        \"closingDate\": \"2014-07-25T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9124,\n        \"propertyAddress\": \"1210 N Collier Blvd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214032815\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-07-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-08-20T00:00:00\",\n        \"processedDate\": \"2014-08-26T00:00:00\",\n        \"closingDate\": \"2014-08-20T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9125,\n        \"propertyAddress\": \"840 S Collier Blvd, 1106, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214035459\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-07-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-09-02T00:00:00\",\n        \"processedDate\": \"2014-08-27T00:00:00\",\n        \"closingDate\": \"2014-08-26T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Darlene sampleddy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9156,\n        \"propertyAddress\": \"500 Saturn Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214038928\",\n        \"listDate\": \"2014-07-15T00:00:00\",\n        \"expiredDate\": \"2015-05-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-09-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-09-30T00:00:00\",\n        \"processedDate\": \"2014-10-01T00:00:00\",\n        \"closingDate\": \"2014-09-29T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9161,\n        \"propertyAddress\": \"1813 Bahama Ave, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2147017587\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-07-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-08-26T00:00:00\",\n        \"processedDate\": \"2014-08-26T00:00:00\",\n        \"closingDate\": \"2014-08-26T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Sue Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9164,\n        \"propertyAddress\": \"40 Primrost Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2141615\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-07-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-08-28T00:00:00\",\n        \"processedDate\": \"2014-08-28T00:00:00\",\n        \"closingDate\": \"2014-08-28T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9171,\n        \"propertyAddress\": \"536 N Barfield Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214001089\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-06-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-07-23T00:00:00\",\n        \"processedDate\": \"2014-07-28T00:00:00\",\n        \"closingDate\": \"2014-07-23T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Rosemarie Tsampleagni\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9179,\n        \"propertyAddress\": \"22748 Island Pines Way , 302, Fort Myers Beach, FL 33931\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214040252\",\n        \"listDate\": \"2014-07-17T00:00:00\",\n        \"expiredDate\": \"2015-08-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-07-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-08-21T00:00:00\",\n        \"processedDate\": \"2015-08-24T00:00:00\",\n        \"closingDate\": \"2015-08-21T00:00:00\",\n        \"listAgent\": \"Roxanne Jsampleke\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Boston\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9192,\n        \"propertyAddress\": \"220 Seaview Ct , 204, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214039766\",\n        \"listDate\": \"2014-07-16T00:00:00\",\n        \"expiredDate\": \"2015-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-11-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-12-15T00:00:00\",\n        \"processedDate\": \"2014-12-17T00:00:00\",\n        \"closingDate\": \"2014-12-15T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9194,\n        \"propertyAddress\": \"306 Seabreeze Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214040801\",\n        \"listDate\": \"2014-07-22T00:00:00\",\n        \"expiredDate\": \"2015-07-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-02-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-03-16T00:00:00\",\n        \"processedDate\": \"2015-03-16T00:00:00\",\n        \"closingDate\": \"2015-03-16T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9197,\n        \"propertyAddress\": \"1766 Maywood Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214034545\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-07-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-10-09T00:00:00\",\n        \"processedDate\": \"2014-10-16T00:00:00\",\n        \"closingDate\": \"2014-10-09T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Darlene sampleddy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9198,\n        \"propertyAddress\": \"520 Fieldstone Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2132119\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-07-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-08-14T00:00:00\",\n        \"processedDate\": \"2014-08-14T00:00:00\",\n        \"closingDate\": \"2014-08-14T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Sue Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9214,\n        \"propertyAddress\": \"835 Willow Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2141638\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-07-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-08-24T00:00:00\",\n        \"processedDate\": \"2014-08-26T00:00:00\",\n        \"closingDate\": \"2014-08-25T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Sherrie Pfeffsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9215,\n        \"propertyAddress\": \"1065 Dill Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214009983\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-07-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-08-08T00:00:00\",\n        \"processedDate\": \"2014-08-11T00:00:00\",\n        \"closingDate\": \"2014-08-11T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cullen Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9229,\n        \"propertyAddress\": \"919 Huron Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214041160\",\n        \"listDate\": \"2014-07-24T00:00:00\",\n        \"expiredDate\": \"2016-01-17T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-09-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-11-09T00:00:00\",\n        \"processedDate\": \"2015-11-10T00:00:00\",\n        \"closingDate\": \"2015-11-10T00:00:00\",\n        \"listAgent\": \"Cynthia Csampleogin\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9237,\n        \"propertyAddress\": \"1527 Galleon Ave , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214041275\",\n        \"listDate\": \"2014-07-29T00:00:00\",\n        \"expiredDate\": \"2015-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-08-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-10-15T00:00:00\",\n        \"processedDate\": \"2014-10-21T00:00:00\",\n        \"closingDate\": \"2014-10-15T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9241,\n        \"propertyAddress\": \"184 Balfour Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213504915\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-07-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-07-31T00:00:00\",\n        \"processedDate\": \"2014-08-01T00:00:00\",\n        \"closingDate\": \"2014-07-31T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Rosemarie Tsampleagni\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9243,\n        \"propertyAddress\": \"381 Periwinkle Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214041046\",\n        \"listDate\": \"2014-07-24T00:00:00\",\n        \"expiredDate\": \"2015-07-11T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-07-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-08-19T00:00:00\",\n        \"processedDate\": \"2014-08-28T00:00:00\",\n        \"closingDate\": \"2014-08-28T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9248,\n        \"propertyAddress\": \"975 Royal Marco Way , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213502389\",\n        \"listDate\": \"2013-09-09T00:00:00\",\n        \"expiredDate\": \"2017-09-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-11-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-11-30T00:00:00\",\n        \"processedDate\": \"2016-11-30T13:05:13\",\n        \"closingDate\": \"2016-11-30T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9258,\n        \"propertyAddress\": \"140 Starfish Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214041849\",\n        \"listDate\": \"2014-08-01T00:00:00\",\n        \"expiredDate\": \"2015-05-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-08-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-09-30T00:00:00\",\n        \"processedDate\": \"2014-10-01T00:00:00\",\n        \"closingDate\": \"2014-09-30T00:00:00\",\n        \"listAgent\": \"Robin Taylsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9273,\n        \"propertyAddress\": \"781 Hull Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-08-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-08-29T00:00:00\",\n        \"processedDate\": \"2014-08-29T00:00:00\",\n        \"closingDate\": \"2014-08-29T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jon Vollmsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Fairfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9288,\n        \"propertyAddress\": \"433 SE Barfield Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214042452\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-08-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-09-18T00:00:00\",\n        \"processedDate\": \"2014-09-19T00:00:00\",\n        \"closingDate\": \"2014-09-18T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9292,\n        \"propertyAddress\": \"1141 Collier Blvd, 106, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2140482\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-08-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-10-06T00:00:00\",\n        \"processedDate\": \"2014-10-10T00:00:00\",\n        \"closingDate\": \"2014-10-06T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9308,\n        \"propertyAddress\": \"260 Seaview Ct , 1712, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214044239\",\n        \"listDate\": \"2014-08-11T00:00:00\",\n        \"expiredDate\": \"2014-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-08-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-10-30T00:00:00\",\n        \"processedDate\": \"2014-10-14T00:00:00\",\n        \"closingDate\": \"2014-10-14T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": \"Helga Wsamplezold\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9315,\n        \"propertyAddress\": \"700 Inlet Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-08-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-08-29T00:00:00\",\n        \"processedDate\": \"2014-08-29T00:00:00\",\n        \"closingDate\": \"2014-08-29T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9347,\n        \"propertyAddress\": \"Sunshine Resort 13689 Rentals, LLC, Ste A, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-07-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-08-18T00:00:00\",\n        \"processedDate\": \"2014-08-18T00:00:00\",\n        \"closingDate\": \"2014-08-18T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9351,\n        \"propertyAddress\": \"180 Seaview Court, 1104, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214027512\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-08-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-10-16T00:00:00\",\n        \"processedDate\": \"2014-10-17T00:00:00\",\n        \"closingDate\": \"2014-10-16T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Krystal Bernsamplerdt\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9352,\n        \"propertyAddress\": \"180 Seaview Ct, 1108, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214043912\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-08-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-10-13T00:00:00\",\n        \"processedDate\": \"2014-10-14T00:00:00\",\n        \"closingDate\": \"2014-10-14T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Krystal Bernsamplerdt\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9359,\n        \"propertyAddress\": \"1164 Whiteheart Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214033682\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-08-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-09-12T00:00:00\",\n        \"processedDate\": \"2014-09-15T00:00:00\",\n        \"closingDate\": \"2014-09-15T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Paul Gsampleffy, P.A.\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Broad Avenue\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9360,\n        \"propertyAddress\": \"330 Hazelcrest St, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"new cons\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-08-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-08-20T00:00:00\",\n        \"processedDate\": \"2014-08-21T00:00:00\",\n        \"closingDate\": \"2014-08-21T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cullen Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9376,\n        \"propertyAddress\": \"571 S Barfield Drive , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214045957\",\n        \"listDate\": \"2014-08-22T00:00:00\",\n        \"expiredDate\": \"2015-03-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-01-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-02-16T00:00:00\",\n        \"processedDate\": \"2015-02-17T00:00:00\",\n        \"closingDate\": \"2015-02-17T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9378,\n        \"propertyAddress\": \"931 Sycamore Court, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214015635\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-08-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-10-08T00:00:00\",\n        \"processedDate\": \"2014-10-10T00:00:00\",\n        \"closingDate\": \"2014-10-08T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Robin Taylsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9381,\n        \"propertyAddress\": \"382 Yellowbird St , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214045257\",\n        \"listDate\": \"2014-08-25T00:00:00\",\n        \"expiredDate\": \"2015-08-02T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-08-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-10-15T00:00:00\",\n        \"processedDate\": \"2014-10-17T00:00:00\",\n        \"closingDate\": \"2014-10-16T00:00:00\",\n        \"listAgent\": \"Mike sample-Joyce\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9384,\n        \"propertyAddress\": \"1085 Bald Eagle Dr , 601, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214046821\",\n        \"listDate\": \"2014-08-25T00:00:00\",\n        \"expiredDate\": \"2015-05-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-12-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-01-14T00:00:00\",\n        \"processedDate\": \"2015-01-14T00:00:00\",\n        \"closingDate\": \"2015-01-14T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9393,\n        \"propertyAddress\": \"440 Seaview Ct , 1409, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214046870\",\n        \"listDate\": \"2014-08-26T00:00:00\",\n        \"expiredDate\": \"2015-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-05-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-07-13T00:00:00\",\n        \"processedDate\": \"2015-07-15T00:00:00\",\n        \"closingDate\": \"2015-07-13T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9397,\n        \"propertyAddress\": \"710 W Elkcam Cir, PH5, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214033410\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-08-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-10-13T00:00:00\",\n        \"processedDate\": \"2014-10-22T00:00:00\",\n        \"closingDate\": \"2014-10-13T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"ML Msamplede\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9401,\n        \"propertyAddress\": \"592 Tigertail Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214037093\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-08-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-09-03T00:00:00\",\n        \"processedDate\": \"2014-09-03T00:00:00\",\n        \"closingDate\": \"2014-09-03T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Sue Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9414,\n        \"propertyAddress\": \"70 S Heathwood Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214047296\",\n        \"listDate\": \"2014-08-27T00:00:00\",\n        \"expiredDate\": \"2015-02-28T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-11-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-12-17T00:00:00\",\n        \"processedDate\": \"2014-12-24T00:00:00\",\n        \"closingDate\": \"2014-12-23T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9416,\n        \"propertyAddress\": \"1389 Bayport Ave , Marco Island, FL 34145-3959\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214047460\",\n        \"listDate\": \"2014-08-27T00:00:00\",\n        \"expiredDate\": \"2015-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-10-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-11-17T00:00:00\",\n        \"processedDate\": \"2014-11-18T00:00:00\",\n        \"closingDate\": \"2014-11-18T00:00:00\",\n        \"listAgent\": \"Rosemarie Tsampleagni\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9441,\n        \"propertyAddress\": \"Sunshine Resort 13817 Rentals, LLC, Ste A, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-08-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-09-03T00:00:00\",\n        \"processedDate\": \"2014-09-03T00:00:00\",\n        \"closingDate\": \"2014-09-03T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9461,\n        \"propertyAddress\": \"36 Algonquin Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214048137\",\n        \"listDate\": \"2014-09-04T00:00:00\",\n        \"expiredDate\": \"2015-09-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-03-31T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-06-02T00:00:00\",\n        \"processedDate\": \"2015-04-30T00:00:00\",\n        \"closingDate\": \"2015-04-30T00:00:00\",\n        \"listAgent\": \"Paul Strsampleg\",\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9477,\n        \"propertyAddress\": \"1590 San Marco Rd , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214048717\",\n        \"listDate\": \"2014-09-05T00:00:00\",\n        \"expiredDate\": \"2015-08-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-09-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-10-27T00:00:00\",\n        \"processedDate\": \"2014-11-03T00:00:00\",\n        \"closingDate\": \"2014-10-27T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9479,\n        \"propertyAddress\": \"260 Seaview Ct , 1209, Marco Island, FL 34145-3108\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214048796\",\n        \"listDate\": \"2014-09-05T00:00:00\",\n        \"expiredDate\": \"2015-11-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-09-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-10-22T00:00:00\",\n        \"processedDate\": \"2015-11-04T00:00:00\",\n        \"closingDate\": \"2015-10-22T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9501,\n        \"propertyAddress\": \"671 Elkcam Cir , 515, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"214049538WD\",\n        \"listDate\": \"2014-09-09T00:00:00\",\n        \"expiredDate\": \"2017-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9514,\n        \"propertyAddress\": \"1025 Fieldstone Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214048368\",\n        \"listDate\": \"2014-09-03T00:00:00\",\n        \"expiredDate\": \"2015-08-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-09-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-09-26T00:00:00\",\n        \"processedDate\": \"2014-10-15T00:00:00\",\n        \"closingDate\": \"2014-09-30T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": \"Dave Flowsamples\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9521,\n        \"propertyAddress\": \"433 Adirondack Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214050124\",\n        \"listDate\": \"2014-09-15T00:00:00\",\n        \"expiredDate\": \"2015-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-10-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-11-17T00:00:00\",\n        \"processedDate\": \"2015-11-18T00:00:00\",\n        \"closingDate\": \"2015-11-18T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9535,\n        \"propertyAddress\": \"1230 Stone Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": \"2014-09-17T00:00:00\",\n        \"expiredDate\": \"2014-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-09-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-11-24T00:00:00\",\n        \"processedDate\": \"2014-11-25T00:00:00\",\n        \"closingDate\": \"2014-11-25T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9546,\n        \"propertyAddress\": \"148 Hollyhock Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-09-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-09-18T00:00:00\",\n        \"processedDate\": \"2014-09-19T00:00:00\",\n        \"closingDate\": \"2014-09-18T00:00:00\",\n        \"listAgent\": \"Laura samplems\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9547,\n        \"propertyAddress\": \"4961 Galt Island Ave, Saint James City, FL 33956\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-09-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-12-03T00:00:00\",\n        \"processedDate\": \"2014-12-03T00:00:00\",\n        \"closingDate\": \"2014-12-03T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Kathryn Lysamples\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Bay Village\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9562,\n        \"propertyAddress\": \"241 Stillwater PYMT 2 Court, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-09-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-01-31T00:00:00\",\n        \"processedDate\": \"2016-01-25T00:00:00\",\n        \"closingDate\": \"2016-01-21T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9570,\n        \"propertyAddress\": \"524 Barfield Dr N, Marco Island, FL 34145-3604\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214051851\",\n        \"listDate\": \"2014-09-22T00:00:00\",\n        \"expiredDate\": \"2015-09-17T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-05-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-07-23T00:00:00\",\n        \"processedDate\": \"2015-07-27T00:00:00\",\n        \"closingDate\": \"2015-07-23T00:00:00\",\n        \"listAgent\": \"Angelica samplerews\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9571,\n        \"propertyAddress\": \"1121 Swallow Ave S, 301, Marco Island, FL 34145-8418\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214051856\",\n        \"listDate\": \"2014-09-22T00:00:00\",\n        \"expiredDate\": \"2015-09-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-10-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-11-17T00:00:00\",\n        \"processedDate\": \"2014-11-19T00:00:00\",\n        \"closingDate\": \"2014-11-17T00:00:00\",\n        \"listAgent\": \"Angelica samplerews\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9574,\n        \"propertyAddress\": \"449 Century 13990 Drive, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-09-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-09-23T00:00:00\",\n        \"processedDate\": \"2014-09-23T00:00:00\",\n        \"closingDate\": \"2014-09-23T00:00:00\",\n        \"listAgent\": \"Angelica samplerews\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9575,\n        \"propertyAddress\": \"1108 1/2 N Collier 22042 Blvd, Ste A, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-09-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-09-23T00:00:00\",\n        \"processedDate\": \"2014-09-23T00:00:00\",\n        \"closingDate\": \"2014-09-23T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9579,\n        \"propertyAddress\": \"334 Polynesia Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214052001\",\n        \"listDate\": \"2014-09-23T00:00:00\",\n        \"expiredDate\": \"2015-08-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-12-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-12-19T00:00:00\",\n        \"processedDate\": \"2014-12-20T00:00:00\",\n        \"closingDate\": \"2014-12-19T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9582,\n        \"propertyAddress\": \"1370 Freeport Ave, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2141459\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-09-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-10-06T00:00:00\",\n        \"processedDate\": \"2014-10-08T00:00:00\",\n        \"closingDate\": \"2014-10-06T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9592,\n        \"propertyAddress\": \"270 N Collier Blvd , 202, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214052619\",\n        \"listDate\": \"2014-09-25T00:00:00\",\n        \"expiredDate\": \"2015-09-26T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-10-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-11-03T00:00:00\",\n        \"processedDate\": \"2014-11-05T00:00:00\",\n        \"closingDate\": \"2014-11-03T00:00:00\",\n        \"listAgent\": \"Angelica samplerews\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9593,\n        \"propertyAddress\": \"260 Seaview Ct , 407, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214051568\",\n        \"listDate\": \"2014-09-25T00:00:00\",\n        \"expiredDate\": \"2015-10-10T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-08-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-09-01T00:00:00\",\n        \"processedDate\": \"2015-09-04T00:00:00\",\n        \"closingDate\": \"2015-09-01T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9604,\n        \"propertyAddress\": \"190 Angler Ct , Marco Island, FL 34145-4201\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214052845\",\n        \"listDate\": \"2014-09-26T00:00:00\",\n        \"expiredDate\": \"2015-09-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-09-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-02-19T00:00:00\",\n        \"processedDate\": \"2016-02-19T00:00:00\",\n        \"closingDate\": \"2016-02-19T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9618,\n        \"propertyAddress\": \"1170 Mulberry Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214052450\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-09-29T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-11-18T00:00:00\",\n        \"processedDate\": \"2014-11-22T00:00:00\",\n        \"closingDate\": \"2014-11-21T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9665,\n        \"propertyAddress\": \"633 Seaview Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214054838\",\n        \"listDate\": \"2014-10-07T00:00:00\",\n        \"expiredDate\": \"2015-06-23T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-01-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-04-01T00:00:00\",\n        \"processedDate\": \"2015-04-02T00:00:00\",\n        \"closingDate\": \"2015-04-01T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9698,\n        \"propertyAddress\": \"2000 Royal Marco Way , 610, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214056257\",\n        \"listDate\": \"2014-10-13T00:00:00\",\n        \"expiredDate\": \"2015-11-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-01-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-02-27T00:00:00\",\n        \"processedDate\": \"2015-03-02T00:00:00\",\n        \"closingDate\": \"2015-02-27T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9702,\n        \"propertyAddress\": \"988 Hunt Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214055970\",\n        \"listDate\": \"2014-10-13T00:00:00\",\n        \"expiredDate\": \"2016-02-28T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-12-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-02-09T00:00:00\",\n        \"processedDate\": \"2016-01-29T00:00:00\",\n        \"closingDate\": \"2016-01-29T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9730,\n        \"propertyAddress\": \"190 Collier Blvd N, R-2, Marco Island, FL 34145-3223\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214057312\",\n        \"listDate\": \"2014-10-17T00:00:00\",\n        \"expiredDate\": \"2015-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-12-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-01-07T00:00:00\",\n        \"processedDate\": \"2015-01-16T00:00:00\",\n        \"closingDate\": \"2015-01-08T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9743,\n        \"propertyAddress\": \"1771 Hummingbird Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214056524\",\n        \"listDate\": \"2014-10-20T00:00:00\",\n        \"expiredDate\": \"2015-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-12-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-12-31T00:00:00\",\n        \"processedDate\": \"2014-12-31T00:00:00\",\n        \"closingDate\": \"2014-12-31T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9751,\n        \"propertyAddress\": \"290 Polynesia Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214058034\",\n        \"listDate\": \"2014-10-21T00:00:00\",\n        \"expiredDate\": \"2015-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-01-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-02-27T00:00:00\",\n        \"processedDate\": \"2015-03-02T00:00:00\",\n        \"closingDate\": \"2015-02-27T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9760,\n        \"propertyAddress\": \"601 Seaview Ct , 208, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214058348\",\n        \"listDate\": \"2014-10-22T00:00:00\",\n        \"expiredDate\": \"2016-02-28T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-09-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-12-18T00:00:00\",\n        \"processedDate\": \"2015-12-22T00:00:00\",\n        \"closingDate\": \"2015-12-18T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9766,\n        \"propertyAddress\": \"27 Greenbrier St , 206, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"214058515WD\",\n        \"listDate\": \"2014-10-23T00:00:00\",\n        \"expiredDate\": \"2020-12-31T00:00:00\",\n        \"withdrawnDate\": \"2019-02-05T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9770,\n        \"propertyAddress\": \"1598 Barfield Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214023448\",\n        \"listDate\": \"2014-04-17T00:00:00\",\n        \"expiredDate\": \"2015-04-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-02-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-05-01T00:00:00\",\n        \"processedDate\": \"2015-05-19T00:00:00\",\n        \"closingDate\": \"2015-05-01T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9772,\n        \"propertyAddress\": \"760 N Collier Blvd , 401, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214058271\",\n        \"listDate\": \"2014-10-24T00:00:00\",\n        \"expiredDate\": \"2015-10-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-04-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-05-27T00:00:00\",\n        \"processedDate\": \"2015-05-28T00:00:00\",\n        \"closingDate\": \"2015-05-27T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Angelica samplerews\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9798,\n        \"propertyAddress\": \"1232 Orange Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214058880\",\n        \"listDate\": \"2014-10-27T00:00:00\",\n        \"expiredDate\": \"2015-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-02-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-04-10T00:00:00\",\n        \"processedDate\": \"2015-04-10T00:00:00\",\n        \"closingDate\": \"2015-04-10T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9804,\n        \"propertyAddress\": \"264 Rockhill Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214059520\",\n        \"listDate\": \"2014-10-30T00:00:00\",\n        \"expiredDate\": \"2016-03-20T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-08-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-11-02T00:00:00\",\n        \"processedDate\": \"2015-11-09T00:00:00\",\n        \"closingDate\": \"2015-11-02T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9836,\n        \"propertyAddress\": \"1838 Apatahi 14413 Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-10-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-11-05T00:00:00\",\n        \"processedDate\": \"2014-11-05T00:00:00\",\n        \"closingDate\": \"2014-11-05T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9842,\n        \"propertyAddress\": \"740 N Collier Blvd , 302, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214059695\",\n        \"listDate\": \"2014-11-05T00:00:00\",\n        \"expiredDate\": \"2015-10-27T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-01-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-01-15T00:00:00\",\n        \"processedDate\": \"2015-01-15T00:00:00\",\n        \"closingDate\": \"2015-01-15T00:00:00\",\n        \"listAgent\": \"Cynthia Csampleogin\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9850,\n        \"propertyAddress\": \"EV Marco Island, 14435 LLC, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-10-29T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-11-06T00:00:00\",\n        \"processedDate\": \"2014-11-06T00:00:00\",\n        \"closingDate\": \"2014-11-06T00:00:00\",\n        \"listAgent\": \"Cynthia Csampleogin\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9851,\n        \"propertyAddress\": \"RE/MAX Affinity 14437 Plus, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-10-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-11-06T00:00:00\",\n        \"processedDate\": \"2014-11-06T00:00:00\",\n        \"closingDate\": \"2014-11-06T00:00:00\",\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9859,\n        \"propertyAddress\": \"990 Caxambas PYMT 1 Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-10-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-11-07T00:00:00\",\n        \"processedDate\": \"2014-11-07T00:00:00\",\n        \"closingDate\": \"2014-11-07T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9861,\n        \"propertyAddress\": \"980 Cape Marco Dr, 1803, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214058828\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-10-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-12-15T00:00:00\",\n        \"processedDate\": \"2014-12-08T00:00:00\",\n        \"closingDate\": \"2014-12-08T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Helga Wsamplezold\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9870,\n        \"propertyAddress\": \"470 Renard Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213508774\",\n        \"listDate\": \"2013-11-07T00:00:00\",\n        \"expiredDate\": \"2015-02-28T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-11-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-12-01T00:00:00\",\n        \"processedDate\": \"2014-12-02T00:00:00\",\n        \"closingDate\": \"2014-12-01T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9881,\n        \"propertyAddress\": \"14483 Jekyll Island Ct, Naples, FL 34119\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214084482\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-10-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-12-01T00:00:00\",\n        \"processedDate\": \"2014-12-06T00:00:00\",\n        \"closingDate\": \"2014-12-03T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Stephen Allsamplesample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Broad Avenue\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9891,\n        \"propertyAddress\": \"426 Spinnaker Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214060611\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-11-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-02-06T00:00:00\",\n        \"processedDate\": \"2015-02-06T00:00:00\",\n        \"closingDate\": \"2015-02-06T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9898,\n        \"propertyAddress\": \"1820 S Inlet Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2142216\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-11-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-01-06T00:00:00\",\n        \"processedDate\": \"2015-01-08T00:00:00\",\n        \"closingDate\": \"2015-01-06T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9900,\n        \"propertyAddress\": \"Clausen Properties 14527 Rentals, Inc., Marco Island, FL 34146\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-10-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-11-13T00:00:00\",\n        \"processedDate\": \"2014-11-13T00:00:00\",\n        \"closingDate\": \"2014-11-13T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9906,\n        \"propertyAddress\": \"320 Seaview Ct , 2004, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214062688\",\n        \"listDate\": \"2014-11-13T00:00:00\",\n        \"expiredDate\": \"2015-05-06T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-04-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-05-14T00:00:00\",\n        \"processedDate\": \"2015-05-14T00:00:00\",\n        \"closingDate\": \"2015-05-14T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9918,\n        \"propertyAddress\": \"320 Seaview Ct , 1407, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214062974\",\n        \"listDate\": \"2014-11-14T00:00:00\",\n        \"expiredDate\": \"2015-08-18T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-07-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-07-31T00:00:00\",\n        \"processedDate\": \"2015-08-04T00:00:00\",\n        \"closingDate\": \"2015-07-31T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9920,\n        \"propertyAddress\": \"4000 Royal Marco Way , 629, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214063238\",\n        \"listDate\": \"2014-11-14T00:00:00\",\n        \"expiredDate\": \"2017-08-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-03-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-03-24T00:00:00\",\n        \"processedDate\": \"2017-03-24T14:48:34\",\n        \"closingDate\": \"2017-03-24T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9930,\n        \"propertyAddress\": \"740 N Collier Blvd , 209, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214061798\",\n        \"listDate\": \"2014-11-17T00:00:00\",\n        \"expiredDate\": \"2016-05-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-01-29T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-02-05T00:00:00\",\n        \"processedDate\": \"2016-02-08T00:00:00\",\n        \"closingDate\": \"2016-02-05T00:00:00\",\n        \"listAgent\": \"Rosemarie Tsampleagni\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9931,\n        \"propertyAddress\": \"540 Sand Hill Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214063277\",\n        \"listDate\": \"2014-11-17T00:00:00\",\n        \"expiredDate\": \"2015-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-12-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-01-07T00:00:00\",\n        \"processedDate\": \"2015-01-09T00:00:00\",\n        \"closingDate\": \"2015-01-07T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9939,\n        \"propertyAddress\": \"740 N Collier Blvd N, 403, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214063880\",\n        \"listDate\": \"2014-11-18T00:00:00\",\n        \"expiredDate\": \"2015-05-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-02-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-05-01T00:00:00\",\n        \"processedDate\": \"2015-05-04T00:00:00\",\n        \"closingDate\": \"2015-04-30T00:00:00\",\n        \"listAgent\": \"Cullen Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9956,\n        \"propertyAddress\": \"331 Waterleaf Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"214064130\",\n        \"listDate\": \"2014-11-19T00:00:00\",\n        \"expiredDate\": \"2019-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9958,\n        \"propertyAddress\": \"14 Marco Villas Dr , P 14, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214062992\",\n        \"listDate\": \"2014-11-19T00:00:00\",\n        \"expiredDate\": \"2015-11-10T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-02-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-03-11T00:00:00\",\n        \"processedDate\": \"2015-03-12T00:00:00\",\n        \"closingDate\": \"2015-03-12T00:00:00\",\n        \"listAgent\": \"Lura Jsamplees\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9979,\n        \"propertyAddress\": \"781 Caxambas Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214064647\",\n        \"listDate\": \"2014-11-20T00:00:00\",\n        \"expiredDate\": \"2016-08-25T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-03-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-04-29T00:00:00\",\n        \"processedDate\": \"2016-05-02T00:00:00\",\n        \"closingDate\": \"2016-04-29T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9989,\n        \"propertyAddress\": \"1858 Granada Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214064822\",\n        \"listDate\": \"2014-11-20T00:00:00\",\n        \"expiredDate\": \"2015-10-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-08-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-10-06T00:00:00\",\n        \"processedDate\": \"2015-10-07T00:00:00\",\n        \"closingDate\": \"2015-10-06T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": \"Vince Cosamplece\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 9997,\n        \"propertyAddress\": \"791 Caxambas Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214065017\",\n        \"listDate\": \"2014-10-18T00:00:00\",\n        \"expiredDate\": \"2016-08-25T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-03-31T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-04-29T00:00:00\",\n        \"processedDate\": \"2016-05-02T00:00:00\",\n        \"closingDate\": \"2016-04-29T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10004,\n        \"propertyAddress\": \"220 S Collier Blvd, 403, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214065185\",\n        \"listDate\": \"2014-11-25T00:00:00\",\n        \"expiredDate\": \"2015-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-03-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-05-14T00:00:00\",\n        \"processedDate\": \"2015-05-14T00:00:00\",\n        \"closingDate\": \"2015-05-14T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Vince Cosamplece\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10028,\n        \"propertyAddress\": \"50 Peach Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214066282\",\n        \"listDate\": \"2014-12-02T00:00:00\",\n        \"expiredDate\": \"2015-09-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-06-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-09-15T00:00:00\",\n        \"processedDate\": \"2015-09-11T00:00:00\",\n        \"closingDate\": \"2015-09-08T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10031,\n        \"propertyAddress\": \"248 Shadowridge Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214063953\",\n        \"listDate\": \"2014-12-02T00:00:00\",\n        \"expiredDate\": \"2015-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-01-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-03-06T00:00:00\",\n        \"processedDate\": \"2015-03-05T00:00:00\",\n        \"closingDate\": \"2015-03-05T00:00:00\",\n        \"listAgent\": \"Rosemarie Tsampleagni\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10035,\n        \"propertyAddress\": \"817 Arcadia Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214018475\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-12-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-12-31T00:00:00\",\n        \"processedDate\": \"2015-01-12T00:00:00\",\n        \"closingDate\": \"2014-12-31T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Robin Taylsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10044,\n        \"propertyAddress\": \"461 Renard Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214066687\",\n        \"listDate\": \"2014-12-04T00:00:00\",\n        \"expiredDate\": \"2015-09-03T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-12-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-12-23T00:00:00\",\n        \"processedDate\": \"2014-12-30T00:00:00\",\n        \"closingDate\": \"2014-12-24T00:00:00\",\n        \"listAgent\": \"Robin Taylsample\",\n        \"sellAgent\": \"Robin Taylsample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10045,\n        \"propertyAddress\": \"431 Edgewater Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214066773\",\n        \"listDate\": \"2014-12-04T00:00:00\",\n        \"expiredDate\": \"2015-08-07T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-05-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-06-22T00:00:00\",\n        \"processedDate\": \"2015-06-29T00:00:00\",\n        \"closingDate\": \"2015-06-29T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10046,\n        \"propertyAddress\": \"601 Somerset Ct , Marco Island, FL 34145-2450\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214066856\",\n        \"listDate\": \"2014-12-04T00:00:00\",\n        \"expiredDate\": \"2015-08-03T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-01-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-02-15T00:00:00\",\n        \"processedDate\": \"2015-02-17T00:00:00\",\n        \"closingDate\": \"2015-02-17T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10047,\n        \"propertyAddress\": \"1547 Buccaneer Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214066910\",\n        \"listDate\": \"2014-12-04T00:00:00\",\n        \"expiredDate\": \"2015-08-07T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-05-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-06-12T00:00:00\",\n        \"processedDate\": \"2015-06-22T00:00:00\",\n        \"closingDate\": \"2015-06-12T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10055,\n        \"propertyAddress\": \"1402 N Collier Blvd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"212034687\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-12-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-12-15T00:00:00\",\n        \"processedDate\": \"2014-12-16T00:00:00\",\n        \"closingDate\": \"2014-12-16T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Gwen Tolssample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10057,\n        \"propertyAddress\": \"Sunshine Resort 14771 Rentals, LLC, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-10-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-12-05T00:00:00\",\n        \"processedDate\": \"2014-12-08T00:00:00\",\n        \"closingDate\": \"2014-12-05T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10071,\n        \"propertyAddress\": \"720 Collier Blvd S, 1503, Marco Island, FL 34145-6020\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214067812\",\n        \"listDate\": \"2014-12-09T00:00:00\",\n        \"expiredDate\": \"2015-06-09T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-02-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-03-31T00:00:00\",\n        \"processedDate\": \"2015-03-31T00:00:00\",\n        \"closingDate\": \"2015-03-31T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10083,\n        \"propertyAddress\": \"423 S Barfield Drive , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214068092\",\n        \"listDate\": \"2014-12-10T00:00:00\",\n        \"expiredDate\": \"2016-11-19T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-09-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-10-10T00:00:00\",\n        \"processedDate\": \"2016-10-12T12:31:49\",\n        \"closingDate\": \"2016-10-11T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10107,\n        \"propertyAddress\": \"1240 Stone Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214068537\",\n        \"listDate\": \"2014-12-15T00:00:00\",\n        \"expiredDate\": \"2015-06-11T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-01-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-02-05T00:00:00\",\n        \"processedDate\": \"2015-02-10T00:00:00\",\n        \"closingDate\": \"2015-02-05T00:00:00\",\n        \"listAgent\": \"Dave Flowsamples\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10112,\n        \"propertyAddress\": \"218 Waterway Ct, 101, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2140766\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-12-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-12-19T00:00:00\",\n        \"processedDate\": \"2014-12-22T00:00:00\",\n        \"closingDate\": \"2014-12-19T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Robin Taylsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10113,\n        \"propertyAddress\": \"267 Edgewater Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214059730\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-12-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-01-28T00:00:00\",\n        \"processedDate\": \"2015-02-02T00:00:00\",\n        \"closingDate\": \"2015-01-28T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10123,\n        \"propertyAddress\": \"850 Palm St , C - 14, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214049406\",\n        \"listDate\": \"2014-10-16T00:00:00\",\n        \"expiredDate\": \"2015-09-10T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-12-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-01-23T00:00:00\",\n        \"processedDate\": \"2015-01-26T00:00:00\",\n        \"closingDate\": \"2015-01-23T00:00:00\",\n        \"listAgent\": \"Paul Strsampleg\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10148,\n        \"propertyAddress\": \"970 Cape Marco Dr , 2405, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214069253\",\n        \"listDate\": \"2014-12-22T00:00:00\",\n        \"expiredDate\": \"2015-12-04T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-01-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-01-27T00:00:00\",\n        \"processedDate\": \"2015-01-28T00:00:00\",\n        \"closingDate\": \"2015-01-26T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10172,\n        \"propertyAddress\": \"Clausen Properties, 14951 Inc., Marco Island, FL 34146\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-12-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-12-30T00:00:00\",\n        \"processedDate\": \"2014-12-30T00:00:00\",\n        \"closingDate\": \"2014-12-30T00:00:00\",\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10177,\n        \"propertyAddress\": \"260 Seaview Ct , 607, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214070926\",\n        \"listDate\": \"2014-12-30T00:00:00\",\n        \"expiredDate\": \"2015-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-04-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-05-13T00:00:00\",\n        \"processedDate\": \"2015-05-13T00:00:00\",\n        \"closingDate\": \"2015-05-13T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10196,\n        \"propertyAddress\": \"1121 Martinique Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215001114\",\n        \"listDate\": \"2015-01-06T00:00:00\",\n        \"expiredDate\": \"2015-09-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-01-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-03-12T00:00:00\",\n        \"processedDate\": \"2015-03-13T00:00:00\",\n        \"closingDate\": \"2015-03-13T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10212,\n        \"propertyAddress\": \"172 South Beach Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215001137\",\n        \"listDate\": \"2015-01-08T00:00:00\",\n        \"expiredDate\": \"2015-11-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-02-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-06-01T00:00:00\",\n        \"processedDate\": \"2015-06-01T00:00:00\",\n        \"closingDate\": \"2015-06-01T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Darlene sampleddy\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10216,\n        \"propertyAddress\": \"225 Waterside Cir , 202, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215001330\",\n        \"listDate\": \"2015-01-07T00:00:00\",\n        \"expiredDate\": \"2015-09-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-01-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-04-16T00:00:00\",\n        \"processedDate\": \"2015-04-16T00:00:00\",\n        \"closingDate\": \"2015-04-16T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10225,\n        \"propertyAddress\": \"1164 Shenandoah Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2140306\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-12-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-02-07T00:00:00\",\n        \"processedDate\": \"2015-02-14T00:00:00\",\n        \"closingDate\": \"2015-02-13T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Krystal Bernsamplerdt\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10255,\n        \"propertyAddress\": \"512 Tigertail Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214055731\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-01-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-04-01T00:00:00\",\n        \"processedDate\": \"2015-04-01T00:00:00\",\n        \"closingDate\": \"2015-04-01T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10266,\n        \"propertyAddress\": \"1882 San Marco Rd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215001643\",\n        \"listDate\": \"2015-01-12T00:00:00\",\n        \"expiredDate\": \"2016-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-09-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-11-25T00:00:00\",\n        \"processedDate\": \"2015-12-02T00:00:00\",\n        \"closingDate\": \"2015-11-27T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10275,\n        \"propertyAddress\": \"1191 Ember Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215003289\",\n        \"listDate\": \"2015-01-14T00:00:00\",\n        \"expiredDate\": \"2016-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-09-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-10-15T00:00:00\",\n        \"processedDate\": \"2015-10-15T00:00:00\",\n        \"closingDate\": \"2015-10-15T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10278,\n        \"propertyAddress\": \"Sunshine Resort 15102 Rentals, LLC, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-12-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-01-15T00:00:00\",\n        \"processedDate\": \"2015-01-15T00:00:00\",\n        \"closingDate\": \"2015-01-15T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10279,\n        \"propertyAddress\": \"Marco Island Rental 15103 Properties, Inc., Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-12-31T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-01-15T00:00:00\",\n        \"processedDate\": \"2015-01-15T00:00:00\",\n        \"closingDate\": \"2015-01-15T00:00:00\",\n        \"listAgent\": \"Robin Taylsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10280,\n        \"propertyAddress\": \"Sunshine Resort 15104 Rentals, LLC, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-01-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-01-15T00:00:00\",\n        \"processedDate\": \"2015-01-15T00:00:00\",\n        \"closingDate\": \"2015-01-15T00:00:00\",\n        \"listAgent\": \"Lura Jsamplees\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10284,\n        \"propertyAddress\": \"1401 Quintara Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215003295\",\n        \"listDate\": \"2015-01-15T00:00:00\",\n        \"expiredDate\": \"2015-06-10T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-03-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-04-30T00:00:00\",\n        \"processedDate\": \"2015-05-04T00:00:00\",\n        \"closingDate\": \"2015-04-30T00:00:00\",\n        \"listAgent\": \"Cullen Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10289,\n        \"propertyAddress\": \"180 Seaview Ct , 916, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215003655\",\n        \"listDate\": \"2015-01-15T00:00:00\",\n        \"expiredDate\": \"2015-06-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-03-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-04-24T00:00:00\",\n        \"processedDate\": \"2015-04-24T00:00:00\",\n        \"closingDate\": \"2015-04-23T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10317,\n        \"propertyAddress\": \"14890 Tybee Island Dr, Naples, FL 34119\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-01-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-01-30T00:00:00\",\n        \"processedDate\": \"2015-02-03T00:00:00\",\n        \"closingDate\": \"2015-01-30T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cristal OMsamplesample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Broad Avenue\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10324,\n        \"propertyAddress\": \"1191 Osprey Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215001804\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-01-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-02-04T00:00:00\",\n        \"processedDate\": \"2015-02-06T00:00:00\",\n        \"closingDate\": \"2015-02-05T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10341,\n        \"propertyAddress\": \"1340 Auburndale Ave, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214040048\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-01-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-03-31T00:00:00\",\n        \"processedDate\": \"2015-04-01T00:00:00\",\n        \"closingDate\": \"2015-03-31T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Krystal Bernsamplerdt\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10347,\n        \"propertyAddress\": \"980 Mendel Avenue, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2141608\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-01-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-01-26T00:00:00\",\n        \"processedDate\": \"2015-01-28T00:00:00\",\n        \"closingDate\": \"2015-01-26T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cullen Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10363,\n        \"propertyAddress\": \"72 Tahiti Rd , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215003577\",\n        \"listDate\": \"2015-01-23T00:00:00\",\n        \"expiredDate\": \"2015-10-09T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-06-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-06-30T00:00:00\",\n        \"processedDate\": \"2015-07-06T00:00:00\",\n        \"closingDate\": \"2015-06-30T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10373,\n        \"propertyAddress\": \"280 SE Collier Blvd, 1802, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214054733\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-01-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-02-23T00:00:00\",\n        \"processedDate\": \"2015-02-23T00:00:00\",\n        \"closingDate\": \"2015-02-23T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Robin Taylsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10374,\n        \"propertyAddress\": \"396 Raymond Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214056441\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-01-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-02-10T00:00:00\",\n        \"processedDate\": \"2015-02-11T00:00:00\",\n        \"closingDate\": \"2015-02-10T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"ML Msamplede\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10375,\n        \"propertyAddress\": \"450 W Joy Cir , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215003422\",\n        \"listDate\": \"2015-01-26T00:00:00\",\n        \"expiredDate\": \"2015-07-13T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-02-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-03-16T00:00:00\",\n        \"processedDate\": \"2015-03-16T00:00:00\",\n        \"closingDate\": \"2015-03-16T00:00:00\",\n        \"listAgent\": \"Dave Flowsamples\",\n        \"sellAgent\": \"Dave Flowsamples\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10380,\n        \"propertyAddress\": \"1060 Caxambas Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215006221\",\n        \"listDate\": \"2015-01-26T00:00:00\",\n        \"expiredDate\": \"2016-01-19T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-01-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-03-16T00:00:00\",\n        \"processedDate\": \"2015-03-20T00:00:00\",\n        \"closingDate\": \"2015-03-19T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10394,\n        \"propertyAddress\": \"1100 S Collier Blvd , 1722, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215002164\",\n        \"listDate\": \"2015-01-27T00:00:00\",\n        \"expiredDate\": \"2015-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-02-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-03-31T00:00:00\",\n        \"processedDate\": \"2015-03-23T00:00:00\",\n        \"closingDate\": \"2015-03-23T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10395,\n        \"propertyAddress\": \"4801 Island Pond Ct , 302, Bonita Springs, FL 34134\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215005841\",\n        \"listDate\": \"2015-01-26T00:00:00\",\n        \"expiredDate\": \"2016-01-20T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-02-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-04-03T00:00:00\",\n        \"processedDate\": \"2015-04-06T00:00:00\",\n        \"closingDate\": \"2015-04-02T00:00:00\",\n        \"listAgent\": \"Fern Rsampleacca\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Boston\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10398,\n        \"propertyAddress\": \"970 Cape Marco Dr , 1107, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214067217\",\n        \"listDate\": \"2014-12-08T00:00:00\",\n        \"expiredDate\": \"2015-06-03T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-02-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-05-04T00:00:00\",\n        \"processedDate\": \"2015-05-04T00:00:00\",\n        \"closingDate\": \"2015-05-04T00:00:00\",\n        \"listAgent\": \"Angelica samplerews\",\n        \"sellAgent\": \"Angelica samplerews\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10405,\n        \"propertyAddress\": \"1831 Menorca Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214071217\",\n        \"listDate\": \"2015-01-28T00:00:00\",\n        \"expiredDate\": \"2016-01-06T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-03-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-04-28T00:00:00\",\n        \"processedDate\": \"2015-04-07T00:00:00\",\n        \"closingDate\": \"2015-04-06T00:00:00\",\n        \"listAgent\": \"Paul Strsampleg\",\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10406,\n        \"propertyAddress\": \"913 Juniper Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215004582\",\n        \"listDate\": \"2015-01-28T00:00:00\",\n        \"expiredDate\": \"2016-04-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-11-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-12-21T00:00:00\",\n        \"processedDate\": \"2015-12-23T00:00:00\",\n        \"closingDate\": \"2015-12-18T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10407,\n        \"propertyAddress\": \"167 Columbus Way , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215004703\",\n        \"listDate\": \"2015-01-28T00:00:00\",\n        \"expiredDate\": \"2015-10-19T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-05-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-07-09T00:00:00\",\n        \"processedDate\": \"2015-07-21T00:00:00\",\n        \"closingDate\": \"2015-07-15T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10408,\n        \"propertyAddress\": \"281 Lamplighter Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215005450\",\n        \"listDate\": \"2015-01-28T00:00:00\",\n        \"expiredDate\": \"2015-11-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-04-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-05-04T00:00:00\",\n        \"processedDate\": \"2015-05-14T00:00:00\",\n        \"closingDate\": \"2015-05-04T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10410,\n        \"propertyAddress\": \"1045 Caxambas Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215006217\",\n        \"listDate\": \"2015-01-28T00:00:00\",\n        \"expiredDate\": \"2016-11-07T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-02-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-04-12T00:00:00\",\n        \"processedDate\": \"2016-04-13T00:00:00\",\n        \"closingDate\": \"2016-04-12T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Helga Wsamplezold\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10416,\n        \"propertyAddress\": \"4811 Island Pine Ct, 503, Bonita Springs, FL 34134\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214032443\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-01-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-02-12T00:00:00\",\n        \"processedDate\": \"2015-02-16T00:00:00\",\n        \"closingDate\": \"2015-02-12T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jane Gruensamplegen\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Boston\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10417,\n        \"propertyAddress\": \"1420 Firwood Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2141710\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-01-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-03-30T00:00:00\",\n        \"processedDate\": \"2015-03-25T00:00:00\",\n        \"closingDate\": \"2015-03-20T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Rosemarie Tsampleagni\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10422,\n        \"propertyAddress\": \"140 Seaview Ct , 1701, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215006176\",\n        \"listDate\": \"2015-01-29T00:00:00\",\n        \"expiredDate\": \"2015-07-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-04-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-05-19T00:00:00\",\n        \"processedDate\": \"2015-05-19T00:00:00\",\n        \"closingDate\": \"2015-05-19T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10431,\n        \"propertyAddress\": \"174 S Collier Blvd , 802, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215004534\",\n        \"listDate\": \"2015-01-30T00:00:00\",\n        \"expiredDate\": \"2015-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-02-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-05-15T00:00:00\",\n        \"processedDate\": \"2015-05-19T00:00:00\",\n        \"closingDate\": \"2015-05-15T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10439,\n        \"propertyAddress\": \"500 Saturn Court , Unit 48, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215007476\",\n        \"listDate\": \"2015-02-02T00:00:00\",\n        \"expiredDate\": \"2016-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-11-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-01-19T00:00:00\",\n        \"processedDate\": \"2016-01-29T00:00:00\",\n        \"closingDate\": \"2016-01-19T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10442,\n        \"propertyAddress\": \"1623 Briarwood 15299 Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-01-29T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-02-02T00:00:00\",\n        \"processedDate\": \"2015-02-02T00:00:00\",\n        \"closingDate\": \"2015-02-02T00:00:00\",\n        \"listAgent\": \"Cullen Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10449,\n        \"propertyAddress\": \"1180 Blue Hill Creek Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"215007854\",\n        \"listDate\": \"2015-02-02T00:00:00\",\n        \"expiredDate\": \"2017-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10458,\n        \"propertyAddress\": \"897 Collier Ct , 604, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215008170\",\n        \"listDate\": \"2015-02-03T00:00:00\",\n        \"expiredDate\": \"2015-10-03T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-02-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-06-10T00:00:00\",\n        \"processedDate\": \"2015-06-18T00:00:00\",\n        \"closingDate\": \"2015-06-10T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10463,\n        \"propertyAddress\": \"100 N Collier Blvd, 1201, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2130842\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-01-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-03-04T00:00:00\",\n        \"processedDate\": \"2015-03-04T00:00:00\",\n        \"closingDate\": \"2015-03-04T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Helga Wsamplezold\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10468,\n        \"propertyAddress\": \"711 W Elkcam Cir , 124, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215008436\",\n        \"listDate\": \"2015-02-04T00:00:00\",\n        \"expiredDate\": \"2015-07-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-02-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-04-07T00:00:00\",\n        \"processedDate\": \"2015-04-07T00:00:00\",\n        \"closingDate\": \"2015-04-07T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10476,\n        \"propertyAddress\": \"741 SE Barfield Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214066187\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-02-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-03-01T00:00:00\",\n        \"processedDate\": \"2015-03-02T00:00:00\",\n        \"closingDate\": \"2015-03-02T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10484,\n        \"propertyAddress\": \"3000 Royal Marco Way , 312, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215008801\",\n        \"listDate\": \"2015-02-05T00:00:00\",\n        \"expiredDate\": \"2015-10-14T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-03-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-06-01T00:00:00\",\n        \"processedDate\": \"2015-06-03T00:00:00\",\n        \"closingDate\": \"2015-06-01T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10488,\n        \"propertyAddress\": \"Island Escapes Of SWFL 15361, Marco Island, FL 34146\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-01-29T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-02-06T00:00:00\",\n        \"processedDate\": \"2015-02-10T00:00:00\",\n        \"closingDate\": \"2015-02-09T00:00:00\",\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10501,\n        \"propertyAddress\": \"460 Pheasant Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214062297\",\n        \"listDate\": \"2014-11-11T00:00:00\",\n        \"expiredDate\": \"2015-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-09-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-10-09T00:00:00\",\n        \"processedDate\": \"2015-10-13T00:00:00\",\n        \"closingDate\": \"2015-10-09T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10502,\n        \"propertyAddress\": \"145 Clyburn Way E6, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215008255\",\n        \"listDate\": \"2015-02-06T00:00:00\",\n        \"expiredDate\": \"2015-10-20T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-07-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-09-18T00:00:00\",\n        \"processedDate\": \"2015-09-21T00:00:00\",\n        \"closingDate\": \"2015-09-18T00:00:00\",\n        \"listAgent\": \"Lura Jsamplees\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10504,\n        \"propertyAddress\": \"309 Rookery Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215008589\",\n        \"listDate\": \"2015-02-06T00:00:00\",\n        \"expiredDate\": \"2015-10-21T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-02-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-03-02T00:00:00\",\n        \"processedDate\": \"2015-03-02T00:00:00\",\n        \"closingDate\": \"2015-03-02T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10523,\n        \"propertyAddress\": \"1078 Blue Hill Creek Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215007111\",\n        \"listDate\": \"2015-01-29T00:00:00\",\n        \"expiredDate\": \"2017-05-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-09-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-10-21T00:00:00\",\n        \"processedDate\": \"2016-11-01T13:18:00\",\n        \"closingDate\": \"2016-10-21T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10536,\n        \"propertyAddress\": \"1085 Bald Eagle Drive, 603, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2143750\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-02-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-05-01T00:00:00\",\n        \"processedDate\": \"2015-05-01T00:00:00\",\n        \"closingDate\": \"2015-05-01T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10545,\n        \"propertyAddress\": \"960 Cape Marco Dr, 1506, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214015842\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-02-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-03-17T00:00:00\",\n        \"processedDate\": \"2015-03-23T00:00:00\",\n        \"closingDate\": \"2015-03-17T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Darlene sampleddy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10547,\n        \"propertyAddress\": \"870 Collier Ct, PH4, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214069941\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-02-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-02-17T00:00:00\",\n        \"processedDate\": \"2015-02-18T00:00:00\",\n        \"closingDate\": \"2015-02-18T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Sue Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10562,\n        \"propertyAddress\": \"350 S Collier Blvd, PH201, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214053622\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-02-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-03-13T00:00:00\",\n        \"processedDate\": \"2015-03-13T00:00:00\",\n        \"closingDate\": \"2015-03-13T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Gwen Tolssample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10566,\n        \"propertyAddress\": \"650 Yellowbird St , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215007156\",\n        \"listDate\": \"2015-01-30T00:00:00\",\n        \"expiredDate\": \"2015-10-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-02-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-04-10T00:00:00\",\n        \"processedDate\": \"2015-04-10T00:00:00\",\n        \"closingDate\": \"2015-04-10T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": \"Vince Cosamplece\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10583,\n        \"propertyAddress\": \"Marco Island Rental 15482 Properties, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-01-31T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-02-13T00:00:00\",\n        \"processedDate\": \"2015-02-13T00:00:00\",\n        \"closingDate\": \"2015-02-13T00:00:00\",\n        \"listAgent\": \"Robin Taylsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10586,\n        \"propertyAddress\": \"58 N Collier Blvd , 1707, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215009861\",\n        \"listDate\": \"2015-02-13T00:00:00\",\n        \"expiredDate\": \"2016-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-11-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-12-18T00:00:00\",\n        \"processedDate\": \"2015-12-23T00:00:00\",\n        \"closingDate\": \"2015-12-18T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10594,\n        \"propertyAddress\": \"2200 Canary Island Cv , Naples, FL 34119\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215010412\",\n        \"listDate\": \"2015-02-16T00:00:00\",\n        \"expiredDate\": \"2015-11-13T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-02-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-05-12T00:00:00\",\n        \"processedDate\": \"2015-05-12T00:00:00\",\n        \"closingDate\": \"2015-05-12T00:00:00\",\n        \"listAgent\": \"Melinda Gunthsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Bay Village\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10602,\n        \"propertyAddress\": \"520 Tigertail Ct , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"215011121WD\",\n        \"listDate\": \"2015-02-16T00:00:00\",\n        \"expiredDate\": \"2017-12-31T00:00:00\",\n        \"withdrawnDate\": \"2017-05-25T10:43:17\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10606,\n        \"propertyAddress\": \"1641 Galleon Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214065709\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-02-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-03-12T00:00:00\",\n        \"processedDate\": \"2015-04-06T00:00:00\",\n        \"closingDate\": \"2015-03-12T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Vince Cosamplece\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10619,\n        \"propertyAddress\": \"977 Iris Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215011570\",\n        \"listDate\": \"2015-02-17T00:00:00\",\n        \"expiredDate\": \"2016-01-23T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-06-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-07-27T00:00:00\",\n        \"processedDate\": \"2015-07-28T00:00:00\",\n        \"closingDate\": \"2015-07-27T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10630,\n        \"propertyAddress\": \"900 Huron Ct , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"215011754WD1\",\n        \"listDate\": \"2015-02-18T00:00:00\",\n        \"expiredDate\": \"2018-12-31T00:00:00\",\n        \"withdrawnDate\": \"2018-03-05T16:03:08\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10631,\n        \"propertyAddress\": \"260 Seaview Ct , 307, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215011862\",\n        \"listDate\": \"2015-02-18T00:00:00\",\n        \"expiredDate\": \"2015-09-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-04-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-05-20T00:00:00\",\n        \"processedDate\": \"2015-05-21T00:00:00\",\n        \"closingDate\": \"2015-05-21T00:00:00\",\n        \"listAgent\": \"Sue Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10636,\n        \"propertyAddress\": \"122 Saxon St, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2150215\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-02-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-03-17T00:00:00\",\n        \"processedDate\": \"2015-03-17T00:00:00\",\n        \"closingDate\": \"2015-03-17T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10644,\n        \"propertyAddress\": \"883 Banyan Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215011263\",\n        \"listDate\": \"2015-02-19T00:00:00\",\n        \"expiredDate\": \"2016-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-02-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-03-04T00:00:00\",\n        \"processedDate\": \"2016-03-07T00:00:00\",\n        \"closingDate\": \"2016-03-04T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10651,\n        \"propertyAddress\": \"149 Beachcomber St, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215002289\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-02-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-03-30T00:00:00\",\n        \"processedDate\": \"2015-03-30T00:00:00\",\n        \"closingDate\": \"2015-03-30T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Sherrie Pfeffsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10657,\n        \"propertyAddress\": \"893 Collier Ct , 503, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215012419\",\n        \"listDate\": \"2015-02-09T00:00:00\",\n        \"expiredDate\": \"2016-02-09T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-02-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-04-24T00:00:00\",\n        \"processedDate\": \"2015-04-27T00:00:00\",\n        \"closingDate\": \"2015-04-27T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10667,\n        \"propertyAddress\": \"1291 Andalusia Terr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-02-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-02-23T00:00:00\",\n        \"processedDate\": \"2015-02-23T00:00:00\",\n        \"closingDate\": \"2015-02-23T00:00:00\",\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10672,\n        \"propertyAddress\": \"1837 Menorca Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214063199\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-02-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-03-20T00:00:00\",\n        \"processedDate\": \"2015-03-23T00:00:00\",\n        \"closingDate\": \"2015-03-20T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cynthia Csampleogin\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10673,\n        \"propertyAddress\": \"960 Hyacinth Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215001842\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-02-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-04-01T00:00:00\",\n        \"processedDate\": \"2015-04-01T00:00:00\",\n        \"closingDate\": \"2015-03-26T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cullen Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10676,\n        \"propertyAddress\": \"740 N Collier Blvd , 404, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215012794\",\n        \"listDate\": \"2015-02-23T00:00:00\",\n        \"expiredDate\": \"2015-08-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-03-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-04-20T00:00:00\",\n        \"processedDate\": \"2015-04-20T00:00:00\",\n        \"closingDate\": \"2015-04-20T00:00:00\",\n        \"listAgent\": \"Cullen Ssampleughnessy\",\n        \"sellAgent\": \"ML Msamplede\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10682,\n        \"propertyAddress\": \"Sunshine Resort 15614 Rentals, LLC, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-02-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-02-24T00:00:00\",\n        \"processedDate\": \"2015-02-24T00:00:00\",\n        \"closingDate\": \"2015-02-24T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10685,\n        \"propertyAddress\": \"200 Stevens Landing Dr , B-105, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215012947\",\n        \"listDate\": \"2015-02-24T00:00:00\",\n        \"expiredDate\": \"2015-11-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-08-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-10-14T00:00:00\",\n        \"processedDate\": \"2015-10-19T00:00:00\",\n        \"closingDate\": \"2015-10-16T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": \"Vince Cosamplece\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10719,\n        \"propertyAddress\": \"280 Lamplighter Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215012757\",\n        \"listDate\": \"2015-02-26T00:00:00\",\n        \"expiredDate\": \"2015-08-23T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-04-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-05-28T00:00:00\",\n        \"processedDate\": \"2015-05-15T00:00:00\",\n        \"closingDate\": \"2015-05-15T00:00:00\",\n        \"listAgent\": \"Dave Flowsamples\",\n        \"sellAgent\": \"Dave Flowsamples\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10730,\n        \"propertyAddress\": \"980 Cape Marco Dr, 703, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214059562\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-02-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-03-31T00:00:00\",\n        \"processedDate\": \"2015-04-01T00:00:00\",\n        \"closingDate\": \"2015-03-31T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Sherrie Pfeffsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10732,\n        \"propertyAddress\": \"140 Palm St , 217, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215013497\",\n        \"listDate\": \"2015-02-27T00:00:00\",\n        \"expiredDate\": \"2016-02-25T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-11-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-12-30T00:00:00\",\n        \"processedDate\": \"2016-01-05T00:00:00\",\n        \"closingDate\": \"2015-12-30T00:00:00\",\n        \"listAgent\": \"Angelica samplerews\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10736,\n        \"propertyAddress\": \"14794 Fripp Island Ct , Naples, FL 34119\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215012414\",\n        \"listDate\": \"2015-02-27T00:00:00\",\n        \"expiredDate\": \"2015-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-03-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-04-24T00:00:00\",\n        \"processedDate\": \"2015-04-24T00:00:00\",\n        \"closingDate\": \"2015-04-24T00:00:00\",\n        \"listAgent\": \"Jon Vollmsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Fairfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10748,\n        \"propertyAddress\": \"172 Bermuda Rd , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215014019\",\n        \"listDate\": \"2015-03-02T00:00:00\",\n        \"expiredDate\": \"2015-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-05-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-06-22T00:00:00\",\n        \"processedDate\": \"2015-06-25T00:00:00\",\n        \"closingDate\": \"2015-06-22T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10763,\n        \"propertyAddress\": \"4000 Royal Marco Way , 628, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215013705\",\n        \"listDate\": \"2015-02-03T00:00:00\",\n        \"expiredDate\": \"2015-11-16T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-03-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-06-26T00:00:00\",\n        \"processedDate\": \"2015-07-13T00:00:00\",\n        \"closingDate\": \"2015-06-26T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10768,\n        \"propertyAddress\": \"1191 Breakwater Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215014674\",\n        \"listDate\": \"2015-03-03T00:00:00\",\n        \"expiredDate\": \"2015-08-27T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-03-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-05-21T00:00:00\",\n        \"processedDate\": \"2015-05-21T00:00:00\",\n        \"closingDate\": \"2015-05-21T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10785,\n        \"propertyAddress\": \"87 N Collier Boulevard , Unit G4, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215013660\",\n        \"listDate\": \"2015-03-04T00:00:00\",\n        \"expiredDate\": \"2015-11-19T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-04-29T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-06-15T00:00:00\",\n        \"processedDate\": \"2015-06-16T00:00:00\",\n        \"closingDate\": \"2015-06-15T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10797,\n        \"propertyAddress\": \"Marco Island Vacation Properties, Inc., Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-01-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-03-05T00:00:00\",\n        \"processedDate\": \"2015-03-05T00:00:00\",\n        \"closingDate\": \"2015-03-05T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10803,\n        \"propertyAddress\": \"923 Whiskey Creek Dr , Marco Island, FL 34145-1701\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215015509\",\n        \"listDate\": \"2015-03-05T00:00:00\",\n        \"expiredDate\": \"2016-03-05T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-03-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-06-26T00:00:00\",\n        \"processedDate\": \"2015-06-26T00:00:00\",\n        \"closingDate\": \"2015-06-26T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10846,\n        \"propertyAddress\": \"480 S Collier Blvd , 1110, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215015665\",\n        \"listDate\": \"2015-03-09T00:00:00\",\n        \"expiredDate\": \"2015-11-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-09-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-10-01T00:00:00\",\n        \"processedDate\": \"2015-10-01T00:00:00\",\n        \"closingDate\": \"2015-10-01T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10848,\n        \"propertyAddress\": \"1126 Bluehill Creek Dr , Marco Island, FL 34145-1702\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215016045\",\n        \"listDate\": \"2015-03-09T00:00:00\",\n        \"expiredDate\": \"2015-09-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-05-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-06-05T00:00:00\",\n        \"processedDate\": \"2015-06-05T00:00:00\",\n        \"closingDate\": \"2015-06-05T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10859,\n        \"propertyAddress\": \"860 Panama Ct , 117, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215016225\",\n        \"listDate\": \"2015-03-10T00:00:00\",\n        \"expiredDate\": \"2015-12-10T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-05-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-06-30T00:00:00\",\n        \"processedDate\": \"2015-07-02T00:00:00\",\n        \"closingDate\": \"2015-06-30T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": \"Dave Flowsamples\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10880,\n        \"propertyAddress\": \"260 Seaview Court, 1707, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2150332\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-03-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-04-07T00:00:00\",\n        \"processedDate\": \"2015-04-14T00:00:00\",\n        \"closingDate\": \"2015-04-13T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Helga Wsamplezold\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10904,\n        \"propertyAddress\": \"190 N Collier Boulevard , Unit J3, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215016992\",\n        \"listDate\": \"2015-03-12T00:00:00\",\n        \"expiredDate\": \"2015-12-16T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-04-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-04-30T00:00:00\",\n        \"processedDate\": \"2015-04-30T00:00:00\",\n        \"closingDate\": \"2015-04-30T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10941,\n        \"propertyAddress\": \"936 Juniper Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215017735\",\n        \"listDate\": \"2015-03-17T00:00:00\",\n        \"expiredDate\": \"2015-09-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-04-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-05-27T00:00:00\",\n        \"processedDate\": \"2015-05-28T00:00:00\",\n        \"closingDate\": \"2015-05-27T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10947,\n        \"propertyAddress\": \"1584 San Marco Rd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2131852\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-03-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-04-14T00:00:00\",\n        \"processedDate\": \"2015-04-15T00:00:00\",\n        \"closingDate\": \"2015-04-14T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Angelica samplerews\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10956,\n        \"propertyAddress\": \"1079 Bald Eagle Dr, 1002, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214064420\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-03-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-04-20T00:00:00\",\n        \"processedDate\": \"2015-04-20T00:00:00\",\n        \"closingDate\": \"2015-04-20T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cullen Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10966,\n        \"propertyAddress\": \"Island Escapes of SWFL LLC, Marco Island, FL 34146\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-03-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-03-20T00:00:00\",\n        \"processedDate\": \"2015-03-20T00:00:00\",\n        \"closingDate\": \"2015-03-20T00:00:00\",\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 10984,\n        \"propertyAddress\": \"14826 Tybee Island Dr , Naples, FL 34119\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215019037\",\n        \"listDate\": \"2015-03-23T00:00:00\",\n        \"expiredDate\": \"2015-09-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-05-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-07-07T00:00:00\",\n        \"processedDate\": \"2015-07-08T00:00:00\",\n        \"closingDate\": \"2015-07-07T00:00:00\",\n        \"listAgent\": \"Gordana samplezich\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Bay Village\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11005,\n        \"propertyAddress\": \"1400 Quintara Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214059493\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-03-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-04-23T00:00:00\",\n        \"processedDate\": \"2015-04-24T00:00:00\",\n        \"closingDate\": \"2015-04-23T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11008,\n        \"propertyAddress\": \"1269 Antigua Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2142696\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-03-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-04-02T00:00:00\",\n        \"processedDate\": \"2015-04-06T00:00:00\",\n        \"closingDate\": \"2015-04-06T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11018,\n        \"propertyAddress\": \"58 N Collier Blvd , 1808, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215019335\",\n        \"listDate\": \"2015-03-24T00:00:00\",\n        \"expiredDate\": \"2015-10-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-04-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-06-25T00:00:00\",\n        \"processedDate\": \"2015-06-25T00:00:00\",\n        \"closingDate\": \"2015-06-25T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11039,\n        \"propertyAddress\": \"490 N Barfield Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215019971\",\n        \"listDate\": \"2015-03-26T00:00:00\",\n        \"expiredDate\": \"2015-09-20T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-05-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-07-14T00:00:00\",\n        \"processedDate\": \"2015-07-21T00:00:00\",\n        \"closingDate\": \"2015-07-14T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11063,\n        \"propertyAddress\": \"1180 Bond Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215005922\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-03-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-04-29T00:00:00\",\n        \"processedDate\": \"2015-04-30T00:00:00\",\n        \"closingDate\": \"2015-04-30T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Sue Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11064,\n        \"propertyAddress\": \"921 S Collier Blvd, 107, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2150552\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-03-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-05-22T00:00:00\",\n        \"processedDate\": \"2015-05-26T00:00:00\",\n        \"closingDate\": \"2015-05-22T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Darlene sampleddy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11074,\n        \"propertyAddress\": \"100 N Collier Blvd, 1000, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215020876\",\n        \"listDate\": \"2015-03-31T00:00:00\",\n        \"expiredDate\": \"2016-04-17T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-04-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-05-26T00:00:00\",\n        \"processedDate\": \"2015-06-01T00:00:00\",\n        \"closingDate\": \"2015-05-26T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11081,\n        \"propertyAddress\": \"Berkshire Hathaway 16128 HomeServices, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-03-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-04-01T00:00:00\",\n        \"processedDate\": \"2015-04-01T00:00:00\",\n        \"closingDate\": \"2015-04-01T00:00:00\",\n        \"listAgent\": \"Barbara Massample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11094,\n        \"propertyAddress\": \"571 S Barfield Drive , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"215021223\",\n        \"listDate\": \"2015-04-01T00:00:00\",\n        \"expiredDate\": \"2017-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11095,\n        \"propertyAddress\": \"280 S Collier Blvd , 302, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215021237\",\n        \"listDate\": \"2015-04-01T00:00:00\",\n        \"expiredDate\": \"2015-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-04-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-06-03T00:00:00\",\n        \"processedDate\": \"2015-06-04T00:00:00\",\n        \"closingDate\": \"2015-06-04T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11096,\n        \"propertyAddress\": \"863 Whiskey Creek Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215016968\",\n        \"listDate\": \"2015-03-30T00:00:00\",\n        \"expiredDate\": \"2017-04-16T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-06-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-07-11T00:00:00\",\n        \"processedDate\": \"2016-07-11T16:13:38\",\n        \"closingDate\": \"2016-07-11T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11097,\n        \"propertyAddress\": \"881 Whiskey Creek Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215020244\",\n        \"listDate\": \"2015-03-30T00:00:00\",\n        \"expiredDate\": \"2016-03-05T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-06-29T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-08-28T00:00:00\",\n        \"processedDate\": \"2015-08-31T00:00:00\",\n        \"closingDate\": \"2015-08-28T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11099,\n        \"propertyAddress\": \"Berkshire Hathaway 16150 HomeServices, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-03-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-04-02T00:00:00\",\n        \"processedDate\": \"2015-04-02T00:00:00\",\n        \"closingDate\": \"2015-04-02T00:00:00\",\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11106,\n        \"propertyAddress\": \"748 Plantation Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-03-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-04-02T00:00:00\",\n        \"processedDate\": \"2015-04-02T00:00:00\",\n        \"closingDate\": \"2015-04-02T00:00:00\",\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11117,\n        \"propertyAddress\": \"2215 San Marco Rd , 4-204, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215021620\",\n        \"listDate\": \"2015-04-02T00:00:00\",\n        \"expiredDate\": \"2015-12-25T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-04-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-06-19T00:00:00\",\n        \"processedDate\": \"2015-06-29T00:00:00\",\n        \"closingDate\": \"2015-06-29T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11127,\n        \"propertyAddress\": \"657 Bimini Ave , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215021492\",\n        \"listDate\": \"2015-04-02T00:00:00\",\n        \"expiredDate\": \"2016-01-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-04-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-06-04T00:00:00\",\n        \"processedDate\": \"2015-06-04T00:00:00\",\n        \"closingDate\": \"2015-06-04T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11128,\n        \"propertyAddress\": \"20975 Island Sound Cir , 203, Estero, FL 33928\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215021778\",\n        \"listDate\": \"2015-04-02T00:00:00\",\n        \"expiredDate\": \"2015-09-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-04-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-05-01T00:00:00\",\n        \"processedDate\": \"2015-05-01T00:00:00\",\n        \"closingDate\": \"2015-05-01T00:00:00\",\n        \"listAgent\": \"Gayle Fawksample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Dorchester\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11132,\n        \"propertyAddress\": \"2181 San Marco Rd , 101, Marco Island, FL 34145-6915\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215021815\",\n        \"listDate\": \"2015-04-02T00:00:00\",\n        \"expiredDate\": \"2016-04-02T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-04-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-06-05T00:00:00\",\n        \"processedDate\": \"2015-06-08T00:00:00\",\n        \"closingDate\": \"2015-06-08T00:00:00\",\n        \"listAgent\": \"Angelica samplerews\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11156,\n        \"propertyAddress\": \"651 Seaview Ct, B603, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215016375\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-04-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-04-30T00:00:00\",\n        \"processedDate\": \"2015-05-04T00:00:00\",\n        \"closingDate\": \"2015-04-28T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Rosemarie Tsampleagni\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11168,\n        \"propertyAddress\": \"58 N Collier Blvd , 705, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215021544\",\n        \"listDate\": \"2015-04-07T00:00:00\",\n        \"expiredDate\": \"2015-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-04-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-06-01T00:00:00\",\n        \"processedDate\": \"2015-06-08T00:00:00\",\n        \"closingDate\": \"2015-06-01T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11171,\n        \"propertyAddress\": \"1080 S Collier Blvd , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215022473\",\n        \"listDate\": \"2015-04-07T00:00:00\",\n        \"expiredDate\": \"2016-09-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-03-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-04-29T00:00:00\",\n        \"processedDate\": \"2016-04-12T00:00:00\",\n        \"closingDate\": \"2016-04-08T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Gwen Tolssample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11198,\n        \"propertyAddress\": \"445 River Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215023108\",\n        \"listDate\": \"2014-04-08T00:00:00\",\n        \"expiredDate\": \"2015-05-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-04-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-04-30T00:00:00\",\n        \"processedDate\": \"2015-04-30T00:00:00\",\n        \"closingDate\": \"2015-04-30T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11203,\n        \"propertyAddress\": \"601 Seaview Ct, 607, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215021688\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-04-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-05-12T00:00:00\",\n        \"processedDate\": \"2015-05-12T00:00:00\",\n        \"closingDate\": \"2015-05-12T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Helga Wsamplezold\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11226,\n        \"propertyAddress\": \"1600 Barbarosa Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215023890\",\n        \"listDate\": \"2015-04-14T00:00:00\",\n        \"expiredDate\": \"2015-09-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-04-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-06-10T00:00:00\",\n        \"processedDate\": \"2015-06-12T00:00:00\",\n        \"closingDate\": \"2015-06-11T00:00:00\",\n        \"listAgent\": \"Paul Strsampleg\",\n        \"sellAgent\": \"Cullen Ssampleughnessy\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11246,\n        \"propertyAddress\": \"941 Ruby Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-04-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-04-17T00:00:00\",\n        \"processedDate\": \"2015-04-17T00:00:00\",\n        \"closingDate\": \"2015-04-17T00:00:00\",\n        \"listAgent\": \"Cullen Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11247,\n        \"propertyAddress\": \"633 Seaview Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215021857\",\n        \"listDate\": \"2015-03-19T00:00:00\",\n        \"expiredDate\": \"2016-11-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-06-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-07-13T00:00:00\",\n        \"processedDate\": \"2016-08-01T11:05:01\",\n        \"closingDate\": \"2016-07-15T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11261,\n        \"propertyAddress\": \"1174 Shenandoah Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215024986\",\n        \"listDate\": \"2015-04-15T00:00:00\",\n        \"expiredDate\": \"2015-10-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-05-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-06-01T00:00:00\",\n        \"processedDate\": \"2015-06-03T00:00:00\",\n        \"closingDate\": \"2015-06-01T00:00:00\",\n        \"listAgent\": \"Denise Ssamples\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Fairfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11263,\n        \"propertyAddress\": \"320 Seaview Ct , 1408, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215024382\",\n        \"listDate\": \"2015-04-20T00:00:00\",\n        \"expiredDate\": \"2016-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-04-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-05-27T00:00:00\",\n        \"processedDate\": \"2016-06-07T09:57:27\",\n        \"closingDate\": \"2016-05-27T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11277,\n        \"propertyAddress\": \"919 S Barfield Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214025009\",\n        \"listDate\": \"2014-04-22T00:00:00\",\n        \"expiredDate\": \"2016-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-01-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-02-05T00:00:00\",\n        \"processedDate\": \"2016-02-05T00:00:00\",\n        \"closingDate\": \"2016-02-05T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11288,\n        \"propertyAddress\": \"980 Cape Marco Dr, 307, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214062474\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-04-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-07-02T00:00:00\",\n        \"processedDate\": \"2015-07-06T00:00:00\",\n        \"closingDate\": \"2015-07-02T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11291,\n        \"propertyAddress\": \"979 Daisy Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214037\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-03-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-06-01T00:00:00\",\n        \"processedDate\": \"2015-06-02T00:00:00\",\n        \"closingDate\": \"2015-06-02T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Sue Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11292,\n        \"propertyAddress\": \"418 Driftwood Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215022429\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-04-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-05-20T00:00:00\",\n        \"processedDate\": \"2015-05-26T00:00:00\",\n        \"closingDate\": \"2015-05-22T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Sue Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11295,\n        \"propertyAddress\": \"1269 Antigua Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-04-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-12-31T00:00:00\",\n        \"processedDate\": \"2015-08-14T00:00:00\",\n        \"closingDate\": \"2015-08-10T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11310,\n        \"propertyAddress\": \"190 N Collier Boulevard , Unit R3, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214046976\",\n        \"listDate\": \"2014-08-26T00:00:00\",\n        \"expiredDate\": \"2015-12-16T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-06-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-07-20T00:00:00\",\n        \"processedDate\": \"2015-07-22T00:00:00\",\n        \"closingDate\": \"2015-07-16T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": \"Darlene sampleddy\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11312,\n        \"propertyAddress\": \"Berkshire Hathaway 16427 HomeServices, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-04-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-04-27T00:00:00\",\n        \"processedDate\": \"2015-04-27T00:00:00\",\n        \"closingDate\": \"2015-04-27T00:00:00\",\n        \"listAgent\": \"Barbara Massample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11315,\n        \"propertyAddress\": \"1430 Galleon Ave , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215025220\",\n        \"listDate\": \"2015-04-27T00:00:00\",\n        \"expiredDate\": \"2016-04-16T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-06-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-08-12T00:00:00\",\n        \"processedDate\": \"2015-08-14T00:00:00\",\n        \"closingDate\": \"2015-08-12T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11316,\n        \"propertyAddress\": \"850 S Collier Blvd , 1803, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215024586\",\n        \"listDate\": \"2015-04-27T00:00:00\",\n        \"expiredDate\": \"2015-10-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-08-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-10-12T00:00:00\",\n        \"processedDate\": \"2015-10-01T00:00:00\",\n        \"closingDate\": \"2015-09-30T00:00:00\",\n        \"listAgent\": \"Cynthia Csampleogin\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11320,\n        \"propertyAddress\": \"725 Nautilus Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2142052\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-04-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-06-18T00:00:00\",\n        \"processedDate\": \"2015-06-19T00:00:00\",\n        \"closingDate\": \"2015-06-18T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Darlene sampleddy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11342,\n        \"propertyAddress\": \"440 Seaview Ct , 704, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"215026800\",\n        \"listDate\": \"2015-04-29T00:00:00\",\n        \"expiredDate\": \"2016-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11350,\n        \"propertyAddress\": \"1202 Edington Pl , B404, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215027078\",\n        \"listDate\": \"2015-04-29T00:00:00\",\n        \"expiredDate\": \"2016-01-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-10-31T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-12-09T00:00:00\",\n        \"processedDate\": \"2015-12-10T00:00:00\",\n        \"closingDate\": \"2015-12-09T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11351,\n        \"propertyAddress\": \"2189 San Marco Rd , 3-201, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215026856\",\n        \"listDate\": \"2015-04-30T00:00:00\",\n        \"expiredDate\": \"2016-01-24T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-08-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-09-04T00:00:00\",\n        \"processedDate\": \"2015-09-08T00:00:00\",\n        \"closingDate\": \"2015-09-04T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11354,\n        \"propertyAddress\": \"930 Caxambas Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215006751\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-04-29T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-06-01T00:00:00\",\n        \"processedDate\": \"2015-06-02T00:00:00\",\n        \"closingDate\": \"2015-06-01T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11356,\n        \"propertyAddress\": \"14865 Tybee Island Dr , Naples, FL 34119\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215026587\",\n        \"listDate\": \"2015-04-23T00:00:00\",\n        \"expiredDate\": \"2016-04-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-08-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-10-01T00:00:00\",\n        \"processedDate\": \"2015-10-30T00:00:00\",\n        \"closingDate\": \"2015-10-06T00:00:00\",\n        \"listAgent\": \"Blake Owsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Dorchester\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11390,\n        \"propertyAddress\": \"1832 N Bahama Ave, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214040313\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-05-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-05-29T00:00:00\",\n        \"processedDate\": \"2015-05-29T00:00:00\",\n        \"closingDate\": \"2015-05-29T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Aysim Essampledag\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Boston\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11393,\n        \"propertyAddress\": \"900 S Collier Blvd , 805, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215027945\",\n        \"listDate\": \"2015-05-05T00:00:00\",\n        \"expiredDate\": \"2016-05-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-06-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-07-31T00:00:00\",\n        \"processedDate\": \"2015-08-04T00:00:00\",\n        \"closingDate\": \"2015-07-31T00:00:00\",\n        \"listAgent\": \"Robin Taylsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11439,\n        \"propertyAddress\": \"1000 Royal Marco Way, 3, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215027419\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-05-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-07-31T00:00:00\",\n        \"processedDate\": \"2015-07-31T00:00:00\",\n        \"closingDate\": \"2015-07-31T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"ML Msamplede\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11443,\n        \"propertyAddress\": \"335 Marquesas Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215028583\",\n        \"listDate\": \"2015-05-12T00:00:00\",\n        \"expiredDate\": \"2015-11-04T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-09-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-10-21T00:00:00\",\n        \"processedDate\": \"2015-10-21T00:00:00\",\n        \"closingDate\": \"2015-10-21T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11447,\n        \"propertyAddress\": \"331 Copperfield Court, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215029465\",\n        \"listDate\": \"2015-05-12T00:00:00\",\n        \"expiredDate\": \"2016-04-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-12-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-01-25T00:00:00\",\n        \"processedDate\": \"2016-01-26T00:00:00\",\n        \"closingDate\": \"2016-01-25T00:00:00\",\n        \"listAgent\": \"Sue Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11452,\n        \"propertyAddress\": \"970 Cape Marco Dr , 2003, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215029508\",\n        \"listDate\": \"2015-05-13T00:00:00\",\n        \"expiredDate\": \"2017-05-13T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-12-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-01-11T00:00:00\",\n        \"processedDate\": \"2017-01-18T12:19:04\",\n        \"closingDate\": \"2017-01-11T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11458,\n        \"propertyAddress\": \"181 Gulport Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215026884\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-05-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-06-17T00:00:00\",\n        \"processedDate\": \"2015-06-17T00:00:00\",\n        \"closingDate\": \"2015-06-17T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Helga Wsamplezold\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11459,\n        \"propertyAddress\": \"840 S Collier Blvd, 401, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215024409\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-05-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-06-03T00:00:00\",\n        \"processedDate\": \"2015-06-04T00:00:00\",\n        \"closingDate\": \"2015-06-04T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11461,\n        \"propertyAddress\": \"Clausen Properties, 16628 Inc., Marco Island, FL 34146\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-05-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-05-14T00:00:00\",\n        \"processedDate\": \"2015-05-14T00:00:00\",\n        \"closingDate\": \"2015-05-14T00:00:00\",\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11465,\n        \"propertyAddress\": \"855 Elkhorn Ct , 515, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215029499\",\n        \"listDate\": \"2015-05-07T00:00:00\",\n        \"expiredDate\": \"2016-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-10-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-12-11T00:00:00\",\n        \"processedDate\": \"2015-12-15T00:00:00\",\n        \"closingDate\": \"2015-12-10T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11467,\n        \"propertyAddress\": \"87 N Collier Boulevard , Unit D3, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215030134\",\n        \"listDate\": \"2015-05-15T00:00:00\",\n        \"expiredDate\": \"2016-05-11T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-05-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-06-30T00:00:00\",\n        \"processedDate\": \"2015-07-02T00:00:00\",\n        \"closingDate\": \"2015-06-30T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11480,\n        \"propertyAddress\": \"440 Seaview Ct, 410, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214033089\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-05-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-05-26T00:00:00\",\n        \"processedDate\": \"2015-05-28T00:00:00\",\n        \"closingDate\": \"2015-05-26T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11492,\n        \"propertyAddress\": \"250 Grapewood Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214052837\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-05-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-06-22T00:00:00\",\n        \"processedDate\": \"2015-06-23T00:00:00\",\n        \"closingDate\": \"2015-06-22T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Vince Cosamplece\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11494,\n        \"propertyAddress\": \"3000 Royal Marco Way , PH-L, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215030947\",\n        \"listDate\": \"2015-05-20T00:00:00\",\n        \"expiredDate\": \"2015-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-10-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-11-30T00:00:00\",\n        \"processedDate\": \"2016-01-08T00:00:00\",\n        \"closingDate\": \"2015-11-30T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11503,\n        \"propertyAddress\": \"350 S Collier Blvd , 1202, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215017269\",\n        \"listDate\": \"2015-03-12T00:00:00\",\n        \"expiredDate\": \"2016-03-12T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-06-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-07-07T00:00:00\",\n        \"processedDate\": \"2015-07-10T00:00:00\",\n        \"closingDate\": \"2015-07-10T00:00:00\",\n        \"listAgent\": \"Gwen Tolssample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11510,\n        \"propertyAddress\": \"201 Vintage Bay Dr , B-10, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215031328\",\n        \"listDate\": \"2015-05-22T00:00:00\",\n        \"expiredDate\": \"2017-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-02-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-02-08T00:00:00\",\n        \"processedDate\": \"2017-02-08T14:53:50\",\n        \"closingDate\": \"2017-02-08T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11522,\n        \"propertyAddress\": \"291 S Collier Blvd , 202, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215029750\",\n        \"listDate\": \"2015-05-26T00:00:00\",\n        \"expiredDate\": \"2016-02-11T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-06-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-07-31T00:00:00\",\n        \"processedDate\": \"2015-08-07T00:00:00\",\n        \"closingDate\": \"2015-07-31T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11524,\n        \"propertyAddress\": \"230 Waterside Cir, 101, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": \"2015-05-27T00:00:00\",\n        \"expiredDate\": \"2015-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-05-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-11-16T00:00:00\",\n        \"processedDate\": \"2015-11-19T00:00:00\",\n        \"closingDate\": \"2015-11-16T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": \"Darlene sampleddy\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11535,\n        \"propertyAddress\": \"911 Panama Ct, A-4, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2150950\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-05-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-06-10T00:00:00\",\n        \"processedDate\": \"2015-06-11T00:00:00\",\n        \"closingDate\": \"2015-06-11T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Sue Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11537,\n        \"propertyAddress\": \"300 Stevens Landing Dr , C-204, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215032072\",\n        \"listDate\": \"2015-05-28T00:00:00\",\n        \"expiredDate\": \"2016-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-08-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-10-06T00:00:00\",\n        \"processedDate\": \"2015-10-06T00:00:00\",\n        \"closingDate\": \"2015-10-06T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11547,\n        \"propertyAddress\": \"910 Sycamore Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215024664\",\n        \"listDate\": \"2015-04-17T00:00:00\",\n        \"expiredDate\": \"2015-10-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-08-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-09-15T00:00:00\",\n        \"processedDate\": \"2015-08-26T00:00:00\",\n        \"closingDate\": \"2015-08-26T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11548,\n        \"propertyAddress\": \"8844 Mustang Island Cir, Naples, FL 34113\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215008273\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-05-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-08-03T00:00:00\",\n        \"processedDate\": \"2015-08-04T00:00:00\",\n        \"closingDate\": \"2015-08-03T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Gwen Tolssample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11549,\n        \"propertyAddress\": \"1629 McIlvaine Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214024093\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-05-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-05-29T00:00:00\",\n        \"processedDate\": \"2015-06-02T00:00:00\",\n        \"closingDate\": \"2015-05-22T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Johanna Bernsamplerdt\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11568,\n        \"propertyAddress\": \"130 Hollyhock Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215032412\",\n        \"listDate\": \"2015-06-02T00:00:00\",\n        \"expiredDate\": \"2016-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-03-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-05-06T00:00:00\",\n        \"processedDate\": \"2016-05-09T00:00:00\",\n        \"closingDate\": \"2016-05-06T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11579,\n        \"propertyAddress\": \"330 Hazelcrest St , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"215032054\",\n        \"listDate\": \"2015-05-27T00:00:00\",\n        \"expiredDate\": \"2020-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11580,\n        \"propertyAddress\": \"754 Nautilus Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-05-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-07-31T00:00:00\",\n        \"processedDate\": \"2015-08-04T00:00:00\",\n        \"closingDate\": \"2015-07-31T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11584,\n        \"propertyAddress\": \"806 Manor Terrace , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"215033388\",\n        \"listDate\": \"2015-06-03T00:00:00\",\n        \"expiredDate\": \"2020-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11592,\n        \"propertyAddress\": \"822 Saturn Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215030989\",\n        \"listDate\": \"2015-05-22T00:00:00\",\n        \"expiredDate\": \"2016-02-18T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-07-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-09-04T00:00:00\",\n        \"processedDate\": \"2015-09-10T00:00:00\",\n        \"closingDate\": \"2015-09-04T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11604,\n        \"propertyAddress\": \"280 S Collier Blvd, 1401, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215019847\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-06-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-07-29T00:00:00\",\n        \"processedDate\": \"2015-07-29T00:00:00\",\n        \"closingDate\": \"2015-07-29T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Vince Cosamplece\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11606,\n        \"propertyAddress\": \"Berkshire Hathaway 16828 HomeServices, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-05-29T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-06-05T00:00:00\",\n        \"processedDate\": \"2015-06-05T00:00:00\",\n        \"closingDate\": \"2015-06-05T00:00:00\",\n        \"listAgent\": \"Barbara Massample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11640,\n        \"propertyAddress\": \"264 Castaways St , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215033803\",\n        \"listDate\": \"2015-06-09T00:00:00\",\n        \"expiredDate\": \"2016-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-07-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-09-09T00:00:00\",\n        \"processedDate\": \"2015-09-11T00:00:00\",\n        \"closingDate\": \"2015-09-09T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11663,\n        \"propertyAddress\": \"14839 Tybee Island Dr, Naples, FL 34119\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215023519\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-06-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-08-13T00:00:00\",\n        \"processedDate\": \"2015-08-12T00:00:00\",\n        \"closingDate\": \"2015-08-11T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Marybeth Bsampleoks\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Bay Village\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11667,\n        \"propertyAddress\": \"113 Clyburn St , D-5, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215034652\",\n        \"listDate\": \"2015-06-12T00:00:00\",\n        \"expiredDate\": \"2016-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-06-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-07-24T00:00:00\",\n        \"processedDate\": \"2015-07-24T00:00:00\",\n        \"closingDate\": \"2015-07-24T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11672,\n        \"propertyAddress\": \"1221 Ludlam Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214045458\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-06-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-08-13T00:00:00\",\n        \"processedDate\": \"2015-08-12T00:00:00\",\n        \"closingDate\": \"2015-08-10T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cynthia Csampleogin\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11680,\n        \"propertyAddress\": \"Century 21 First Southern 16922 Trust, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-05-31T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-06-16T00:00:00\",\n        \"processedDate\": \"2015-06-16T00:00:00\",\n        \"closingDate\": \"2015-06-16T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11682,\n        \"propertyAddress\": \"840 Collier Blvd S, 806, Marco Island, FL 34145-6154\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215035595\",\n        \"listDate\": \"2015-06-16T00:00:00\",\n        \"expiredDate\": \"2015-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-08-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-09-15T00:00:00\",\n        \"processedDate\": \"2015-09-22T00:00:00\",\n        \"closingDate\": \"2015-09-17T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11686,\n        \"propertyAddress\": \"174 SE Collier Blvd, 1205, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215003819\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-06-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-07-17T00:00:00\",\n        \"processedDate\": \"2015-07-20T00:00:00\",\n        \"closingDate\": \"2015-07-17T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Robin Taylsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11694,\n        \"propertyAddress\": \"167 N Collier Blvd, 02, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215027047\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-06-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-07-31T00:00:00\",\n        \"processedDate\": \"2015-08-04T00:00:00\",\n        \"closingDate\": \"2015-07-31T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11698,\n        \"propertyAddress\": \"180 Seaview Ct , 1104, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"215036087\",\n        \"listDate\": \"2015-06-18T00:00:00\",\n        \"expiredDate\": \"2019-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11711,\n        \"propertyAddress\": \"673 Crescent St , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215035890\",\n        \"listDate\": \"2015-06-22T00:00:00\",\n        \"expiredDate\": \"2016-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-09-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-10-29T00:00:00\",\n        \"processedDate\": \"2015-10-29T00:00:00\",\n        \"closingDate\": \"2015-10-29T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11721,\n        \"propertyAddress\": \"1290 Riverhead Ave , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215035711\",\n        \"listDate\": \"2015-06-23T00:00:00\",\n        \"expiredDate\": \"2016-06-13T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-01-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-02-10T00:00:00\",\n        \"processedDate\": \"2016-02-10T00:00:00\",\n        \"closingDate\": \"2016-02-10T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11731,\n        \"propertyAddress\": \"911 Panama Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"215037072\",\n        \"listDate\": \"2015-06-24T00:00:00\",\n        \"expiredDate\": \"2020-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11736,\n        \"propertyAddress\": \"750 Collier Boulevard , B112, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"215037200\",\n        \"listDate\": \"2015-06-25T00:00:00\",\n        \"expiredDate\": \"2018-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11744,\n        \"propertyAddress\": \"440 Seaview Ct , 203, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214019290\",\n        \"listDate\": \"2014-03-28T00:00:00\",\n        \"expiredDate\": \"2015-10-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-09-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-09-24T00:00:00\",\n        \"processedDate\": \"2015-09-24T00:00:00\",\n        \"closingDate\": \"2015-09-24T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11764,\n        \"propertyAddress\": \"840 S Collier Blvd , 1502, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215036662\",\n        \"listDate\": \"2015-06-30T00:00:00\",\n        \"expiredDate\": \"2016-06-18T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-11-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-12-16T00:00:00\",\n        \"processedDate\": \"2015-12-17T00:00:00\",\n        \"closingDate\": \"2015-12-16T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11766,\n        \"propertyAddress\": \"14520 Jekyll Island Ct , Naples, FL 34119\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215037273\",\n        \"listDate\": \"2015-07-01T00:00:00\",\n        \"expiredDate\": \"2015-12-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-07-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-08-21T00:00:00\",\n        \"processedDate\": \"2015-08-28T00:00:00\",\n        \"closingDate\": \"2015-08-21T00:00:00\",\n        \"listAgent\": \"Fahada Sasample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Fairfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11770,\n        \"propertyAddress\": \"109 Gulfstream St , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215038298\",\n        \"listDate\": \"2015-07-01T00:00:00\",\n        \"expiredDate\": \"2016-07-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-08-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-09-09T00:00:00\",\n        \"processedDate\": \"2015-09-11T00:00:00\",\n        \"closingDate\": \"2015-09-10T00:00:00\",\n        \"listAgent\": \"Paul Strsampleg\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11779,\n        \"propertyAddress\": \"78 Sand Hill St, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215037728\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-07-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-08-06T00:00:00\",\n        \"processedDate\": \"2015-08-06T00:00:00\",\n        \"closingDate\": \"2015-08-06T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11780,\n        \"propertyAddress\": \"828 Amber Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2151193\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-07-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-09-01T00:00:00\",\n        \"processedDate\": \"2015-09-04T00:00:00\",\n        \"closingDate\": \"2015-08-26T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11790,\n        \"propertyAddress\": \"2827 Jude Island Way, Naples, FL 34119\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215032573\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-06-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-07-30T00:00:00\",\n        \"processedDate\": \"2015-07-31T00:00:00\",\n        \"closingDate\": \"2015-07-30T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Dave samplenner\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Bay Village\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11792,\n        \"propertyAddress\": \"Marco Island Vacation Properties Inc, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-07-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-07-07T00:00:00\",\n        \"processedDate\": \"2015-07-07T00:00:00\",\n        \"closingDate\": \"2015-07-07T00:00:00\",\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11793,\n        \"propertyAddress\": \"1837 Menorca Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215037431\",\n        \"listDate\": \"2015-07-07T00:00:00\",\n        \"expiredDate\": \"2016-06-23T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-09-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-11-04T00:00:00\",\n        \"processedDate\": \"2015-11-04T00:00:00\",\n        \"closingDate\": \"2015-11-04T00:00:00\",\n        \"listAgent\": \"Cynthia Csampleogin\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11802,\n        \"propertyAddress\": \"467 W Joy Cir , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215039248\",\n        \"listDate\": \"2015-07-08T00:00:00\",\n        \"expiredDate\": \"2016-04-07T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-09-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-11-12T00:00:00\",\n        \"processedDate\": \"2015-11-09T00:00:00\",\n        \"closingDate\": \"2015-11-09T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11808,\n        \"propertyAddress\": \"905 Swan Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215038508\",\n        \"listDate\": \"2015-07-09T00:00:00\",\n        \"expiredDate\": \"2016-01-06T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-07-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-08-27T00:00:00\",\n        \"processedDate\": \"2015-08-28T00:00:00\",\n        \"closingDate\": \"2015-08-27T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11834,\n        \"propertyAddress\": \"848 Collier Ct , 205, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215039400\",\n        \"listDate\": \"2015-07-13T00:00:00\",\n        \"expiredDate\": \"2016-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-01-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-02-29T00:00:00\",\n        \"processedDate\": \"2016-02-29T00:00:00\",\n        \"closingDate\": \"2016-02-29T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11840,\n        \"propertyAddress\": \"1024 Anglers Cv, C404, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215039487\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-07-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-07-24T00:00:00\",\n        \"processedDate\": \"2015-07-28T00:00:00\",\n        \"closingDate\": \"2015-07-24T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Angelica samplerews\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11849,\n        \"propertyAddress\": \"144 Balfour Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215039257\",\n        \"listDate\": \"2015-07-07T00:00:00\",\n        \"expiredDate\": \"2016-01-07T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-11-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-12-10T00:00:00\",\n        \"processedDate\": \"2015-12-14T00:00:00\",\n        \"closingDate\": \"2015-12-10T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11861,\n        \"propertyAddress\": \"857 Whiskey Creek Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215040629\",\n        \"listDate\": \"2015-07-15T00:00:00\",\n        \"expiredDate\": \"2016-07-13T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-07-29T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-09-15T00:00:00\",\n        \"processedDate\": \"2015-09-15T00:00:00\",\n        \"closingDate\": \"2015-09-15T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11864,\n        \"propertyAddress\": \"945 Royal Marco Way , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"215038981\",\n        \"listDate\": \"2015-07-16T00:00:00\",\n        \"expiredDate\": \"2016-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11875,\n        \"propertyAddress\": \"900 S Collier Blvd , 305, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215040649\",\n        \"listDate\": \"2015-07-17T00:00:00\",\n        \"expiredDate\": \"2015-12-19T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-09-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-10-31T00:00:00\",\n        \"processedDate\": \"2015-10-21T00:00:00\",\n        \"closingDate\": \"2015-10-21T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": \"Helga Wsamplezold\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11878,\n        \"propertyAddress\": \"1070 Caxambas Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215041032\",\n        \"listDate\": \"2015-07-17T00:00:00\",\n        \"expiredDate\": \"2017-07-17T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-06-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-08-01T00:00:00\",\n        \"processedDate\": \"2016-08-02T14:12:14\",\n        \"closingDate\": \"2016-08-01T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11895,\n        \"propertyAddress\": \"970 Cape Marco Dr, 1504, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"215041080\",\n        \"listDate\": \"2015-07-21T00:00:00\",\n        \"expiredDate\": \"2018-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11898,\n        \"propertyAddress\": \"1727 Hummingbird Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215041616\",\n        \"listDate\": \"2015-07-21T00:00:00\",\n        \"expiredDate\": \"2016-01-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-12-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-02-16T00:00:00\",\n        \"processedDate\": \"2016-02-19T00:00:00\",\n        \"closingDate\": \"2016-02-19T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11900,\n        \"propertyAddress\": \"676 W Elkcam Cir, 1224, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215007949\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-07-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-08-21T00:00:00\",\n        \"processedDate\": \"2015-08-24T00:00:00\",\n        \"closingDate\": \"2015-08-24T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Sue Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11954,\n        \"propertyAddress\": \"35 Greenbrier St , 6-105, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215037580\",\n        \"listDate\": \"2015-06-25T00:00:00\",\n        \"expiredDate\": \"2016-06-25T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-08-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-10-31T00:00:00\",\n        \"processedDate\": \"2015-09-26T00:00:00\",\n        \"closingDate\": \"2015-09-04T00:00:00\",\n        \"listAgent\": \"Chris samplesop\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Broad Avenue\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 11973,\n        \"propertyAddress\": \"948 Spruce Ave , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215042812\",\n        \"listDate\": \"2015-07-30T00:00:00\",\n        \"expiredDate\": \"2016-01-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-09-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-10-20T00:00:00\",\n        \"processedDate\": \"2015-10-23T00:00:00\",\n        \"closingDate\": \"2015-10-23T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12026,\n        \"propertyAddress\": \"870 S Collier Blvd , PH-A, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215045164\",\n        \"listDate\": \"2015-08-11T00:00:00\",\n        \"expiredDate\": \"2016-06-11T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-11-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-12-01T00:00:00\",\n        \"processedDate\": \"2015-12-02T00:00:00\",\n        \"closingDate\": \"2015-12-01T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12050,\n        \"propertyAddress\": \"801 S Collier Blvd , N-202, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215044963\",\n        \"listDate\": \"2015-08-14T00:00:00\",\n        \"expiredDate\": \"2016-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-08-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-11-15T00:00:00\",\n        \"processedDate\": \"2015-11-16T00:00:00\",\n        \"closingDate\": \"2015-11-10T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12063,\n        \"propertyAddress\": \"1263 Mulberry Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215043806\",\n        \"listDate\": \"2015-08-01T00:00:00\",\n        \"expiredDate\": \"2015-09-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-08-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-09-24T00:00:00\",\n        \"processedDate\": \"2015-10-01T00:00:00\",\n        \"closingDate\": \"2015-09-24T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12064,\n        \"propertyAddress\": \"1080 S Collier Blvd, 201, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215041742\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-08-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-09-11T00:00:00\",\n        \"processedDate\": \"2015-09-11T00:00:00\",\n        \"closingDate\": \"2015-09-11T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Gwen Tolssample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12077,\n        \"propertyAddress\": \"1575 Ludlow Rd , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215046320\",\n        \"listDate\": \"2015-08-19T00:00:00\",\n        \"expiredDate\": \"2016-08-12T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-11-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-12-18T00:00:00\",\n        \"processedDate\": \"2015-12-18T00:00:00\",\n        \"closingDate\": \"2015-12-18T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12079,\n        \"propertyAddress\": \"260 Seaview Ct , 1812, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215046360\",\n        \"listDate\": \"2015-08-19T00:00:00\",\n        \"expiredDate\": \"2016-08-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-09-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-09-29T00:00:00\",\n        \"processedDate\": \"2015-10-06T00:00:00\",\n        \"closingDate\": \"2015-09-29T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12086,\n        \"propertyAddress\": \"566 Diplomat Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215026914\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-08-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-10-15T00:00:00\",\n        \"processedDate\": \"2015-10-14T00:00:00\",\n        \"closingDate\": \"2015-10-14T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12106,\n        \"propertyAddress\": \"780 S Collier Blvd , 508, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215047495\",\n        \"listDate\": \"2015-08-24T00:00:00\",\n        \"expiredDate\": \"2016-01-19T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-10-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-01-07T00:00:00\",\n        \"processedDate\": \"2016-01-07T00:00:00\",\n        \"closingDate\": \"2016-01-07T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12114,\n        \"propertyAddress\": \"890 S Collier Blvd , 906, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215047628\",\n        \"listDate\": \"2015-08-25T00:00:00\",\n        \"expiredDate\": \"2016-06-19T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-02-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-04-20T00:00:00\",\n        \"processedDate\": \"2016-04-20T00:00:00\",\n        \"closingDate\": \"2016-04-20T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": \"Helga Wsamplezold\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12116,\n        \"propertyAddress\": \"856 Sea Dune Ln, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": \"2015-08-15T00:00:00\",\n        \"expiredDate\": \"2015-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-08-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-10-01T00:00:00\",\n        \"processedDate\": \"2015-10-01T00:00:00\",\n        \"closingDate\": \"2015-10-01T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"James Bsamplees\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Broad Avenue\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12118,\n        \"propertyAddress\": \"931 Sycamore Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-08-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-08-26T00:00:00\",\n        \"processedDate\": \"2015-08-26T00:00:00\",\n        \"closingDate\": \"2015-08-26T00:00:00\",\n        \"listAgent\": \"Robin Taylsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12119,\n        \"propertyAddress\": \"617 Hernando Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215022888\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-08-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-09-16T00:00:00\",\n        \"processedDate\": \"2015-09-17T00:00:00\",\n        \"closingDate\": \"2015-09-16T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12121,\n        \"propertyAddress\": \"994 N Barfield Dr, 10, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2151980\",\n        \"listDate\": \"2015-08-25T00:00:00\",\n        \"expiredDate\": \"2016-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-09-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-10-09T00:00:00\",\n        \"processedDate\": \"2015-10-13T00:00:00\",\n        \"closingDate\": \"2015-10-07T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12129,\n        \"propertyAddress\": \"350 Hazelcrest St, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215037746\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-08-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-09-03T00:00:00\",\n        \"processedDate\": \"2015-09-04T00:00:00\",\n        \"closingDate\": \"2015-09-03T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cullen Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12131,\n        \"propertyAddress\": \"873 Chestnut Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": \"2015-08-13T00:00:00\",\n        \"expiredDate\": \"2015-09-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-08-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-08-28T00:00:00\",\n        \"processedDate\": \"2015-08-31T00:00:00\",\n        \"closingDate\": \"2015-08-28T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12146,\n        \"propertyAddress\": \"440 Seaview Ct , 704, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215048700\",\n        \"listDate\": \"2015-08-31T00:00:00\",\n        \"expiredDate\": \"2016-08-27T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-12-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-12-29T00:00:00\",\n        \"processedDate\": \"2015-12-29T00:00:00\",\n        \"closingDate\": \"2015-12-29T00:00:00\",\n        \"listAgent\": \"Cynthia Csampleogin\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12155,\n        \"propertyAddress\": \"0 Marco Island Rental, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-08-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-09-01T00:00:00\",\n        \"processedDate\": \"2015-09-01T00:00:00\",\n        \"closingDate\": \"2015-09-01T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12156,\n        \"propertyAddress\": \"520 Century Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215048879\",\n        \"listDate\": \"2015-09-01T00:00:00\",\n        \"expiredDate\": \"2016-05-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-12-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-02-20T00:00:00\",\n        \"processedDate\": \"2016-02-11T00:00:00\",\n        \"closingDate\": \"2016-02-02T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12158,\n        \"propertyAddress\": \"131 Greenview St, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214017790\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-09-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-09-16T00:00:00\",\n        \"processedDate\": \"2015-09-16T00:00:00\",\n        \"closingDate\": \"2015-09-16T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12178,\n        \"propertyAddress\": \"2332 Island Cove Cir, Naples, FL 34109\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215046379\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-09-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-10-01T00:00:00\",\n        \"processedDate\": \"2015-09-28T00:00:00\",\n        \"closingDate\": \"2015-09-28T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Bonnie Nagesample De Lestang\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Bay Village\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12181,\n        \"propertyAddress\": \"1505 Leland Way , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215021668\",\n        \"listDate\": \"2015-04-02T00:00:00\",\n        \"expiredDate\": \"2016-04-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-01-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-02-19T00:00:00\",\n        \"processedDate\": \"2016-02-19T00:00:00\",\n        \"closingDate\": \"2016-02-19T00:00:00\",\n        \"listAgent\": \"Angelica samplerews\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12203,\n        \"propertyAddress\": \"939 S Joy Circle, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215048794\",\n        \"listDate\": \"2015-09-08T00:00:00\",\n        \"expiredDate\": \"2016-02-27T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-10-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-12-18T00:00:00\",\n        \"processedDate\": \"2015-12-21T00:00:00\",\n        \"closingDate\": \"2015-12-18T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12205,\n        \"propertyAddress\": \"260 Seaview Ct , 1201, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215033644\",\n        \"listDate\": \"2015-06-05T00:00:00\",\n        \"expiredDate\": \"2016-05-04T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-12-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-02-18T00:00:00\",\n        \"processedDate\": \"2016-02-19T00:00:00\",\n        \"closingDate\": \"2016-02-18T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12210,\n        \"propertyAddress\": \"1070 S Collier Blvd , 503, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215050341\",\n        \"listDate\": \"2015-09-10T00:00:00\",\n        \"expiredDate\": \"2016-09-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-09-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-11-24T00:00:00\",\n        \"processedDate\": \"2015-11-17T00:00:00\",\n        \"closingDate\": \"2015-11-16T00:00:00\",\n        \"listAgent\": \"Angelica samplerews\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12215,\n        \"propertyAddress\": \"6000 Royal Marco Way , 351, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215049805\",\n        \"listDate\": \"2015-09-09T00:00:00\",\n        \"expiredDate\": \"2016-04-16T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-11-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-01-15T00:00:00\",\n        \"processedDate\": \"2016-01-18T00:00:00\",\n        \"closingDate\": \"2016-01-15T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12233,\n        \"propertyAddress\": \"1725 York Island Dr , Naples, FL 34112\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215042777\",\n        \"listDate\": \"2015-08-15T00:00:00\",\n        \"expiredDate\": \"2016-08-25T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-05-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-06-28T00:00:00\",\n        \"processedDate\": \"2016-06-28T13:47:53\",\n        \"closingDate\": \"2016-06-27T00:00:00\",\n        \"listAgent\": \"Karen Jane Bsampled\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Broad Avenue\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12234,\n        \"propertyAddress\": \"771 Amber Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215051062\",\n        \"listDate\": \"2015-09-15T00:00:00\",\n        \"expiredDate\": \"2016-06-14T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-03-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-04-08T00:00:00\",\n        \"processedDate\": \"2016-04-07T00:00:00\",\n        \"closingDate\": \"2016-04-05T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12243,\n        \"propertyAddress\": \"172 Richmond Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2150557\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-09-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-09-29T00:00:00\",\n        \"processedDate\": \"2015-10-01T00:00:00\",\n        \"closingDate\": \"2015-09-29T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12250,\n        \"propertyAddress\": \"1891 Honduras Ave , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"215052493\",\n        \"listDate\": \"2015-09-18T00:00:00\",\n        \"expiredDate\": \"2018-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12263,\n        \"propertyAddress\": \"1096 Blue Hill Creek Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": \"2015-09-20T00:00:00\",\n        \"expiredDate\": \"2015-10-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-09-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-09-30T00:00:00\",\n        \"processedDate\": \"2015-10-01T00:00:00\",\n        \"closingDate\": \"2015-09-30T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12278,\n        \"propertyAddress\": \"960 Hyacinth Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-09-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-09-21T00:00:00\",\n        \"processedDate\": \"2015-09-23T00:00:00\",\n        \"closingDate\": \"2015-09-21T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cullen Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12280,\n        \"propertyAddress\": \"2267 Island Cove Cir, Naples, FL 34109\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215049935\",\n        \"listDate\": \"2015-09-02T00:00:00\",\n        \"expiredDate\": \"2016-09-02T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-09-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-10-23T00:00:00\",\n        \"processedDate\": \"2015-10-23T00:00:00\",\n        \"closingDate\": \"2015-10-23T00:00:00\",\n        \"listAgent\": \"John D'sampleelio\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Fairfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12284,\n        \"propertyAddress\": \"900 S Collier Blvd , 209, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215052401\",\n        \"listDate\": \"2015-09-23T00:00:00\",\n        \"expiredDate\": \"2016-09-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-05-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-06-15T00:00:00\",\n        \"processedDate\": \"2016-06-17T14:20:58\",\n        \"closingDate\": \"2016-06-15T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12285,\n        \"propertyAddress\": \"260 Seaview Ct , 1909, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215053139\",\n        \"listDate\": \"2015-09-20T00:00:00\",\n        \"expiredDate\": \"2016-09-16T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-09-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-10-06T00:00:00\",\n        \"processedDate\": \"2015-10-06T00:00:00\",\n        \"closingDate\": \"2015-10-06T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12309,\n        \"propertyAddress\": \"980 Ironwood Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215053814\",\n        \"listDate\": \"2015-09-25T00:00:00\",\n        \"expiredDate\": \"2016-09-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-05-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-09-30T00:00:00\",\n        \"processedDate\": \"2016-09-16T16:21:24\",\n        \"closingDate\": \"2016-09-12T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12324,\n        \"propertyAddress\": \"1070 SE Collier, 302, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215025807\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-09-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-11-23T00:00:00\",\n        \"processedDate\": \"2015-11-24T00:00:00\",\n        \"closingDate\": \"2015-11-24T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12338,\n        \"propertyAddress\": \"580 S Heathwood Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215026814\",\n        \"listDate\": \"2015-05-06T00:00:00\",\n        \"expiredDate\": \"2016-07-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-05-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-06-30T00:00:00\",\n        \"processedDate\": \"2016-07-01T15:16:21\",\n        \"closingDate\": \"2016-06-30T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12340,\n        \"propertyAddress\": \"180 Seaview Ct , 1108, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"215053876\",\n        \"listDate\": \"2015-09-25T00:00:00\",\n        \"expiredDate\": \"2020-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12349,\n        \"propertyAddress\": \"138 Gulfport Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215048911\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-10-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-11-16T00:00:00\",\n        \"processedDate\": \"2015-11-17T00:00:00\",\n        \"closingDate\": \"2015-11-17T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Sherrie Pfeffsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12362,\n        \"propertyAddress\": \"1312 Bayport Ave, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": \"2015-10-05T00:00:00\",\n        \"expiredDate\": \"2015-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-10-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-12-01T00:00:00\",\n        \"processedDate\": \"2015-12-04T00:00:00\",\n        \"closingDate\": \"2015-12-01T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Vince Cosamplece\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12369,\n        \"propertyAddress\": \"16 Buttercup Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215055744\",\n        \"listDate\": \"2015-10-07T00:00:00\",\n        \"expiredDate\": \"2016-07-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-10-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-12-18T00:00:00\",\n        \"processedDate\": \"2015-12-21T00:00:00\",\n        \"closingDate\": \"2015-12-18T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12391,\n        \"propertyAddress\": \"820 S Barfield Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215056710\",\n        \"listDate\": \"2015-10-09T00:00:00\",\n        \"expiredDate\": \"2016-10-21T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-09-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-10-14T00:00:00\",\n        \"processedDate\": \"2016-10-17T15:33:33\",\n        \"closingDate\": \"2016-10-14T00:00:00\",\n        \"listAgent\": \"Paul Strsampleg\",\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12415,\n        \"propertyAddress\": \"881 Partridge Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2151778\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-10-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-11-05T00:00:00\",\n        \"processedDate\": \"2015-11-06T00:00:00\",\n        \"closingDate\": \"2015-11-05T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12419,\n        \"propertyAddress\": \"762 Whiskey Creek Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215054928\",\n        \"listDate\": \"2015-09-28T00:00:00\",\n        \"expiredDate\": \"2016-09-27T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-10-29T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-11-30T00:00:00\",\n        \"processedDate\": \"2015-12-11T00:00:00\",\n        \"closingDate\": \"2015-11-30T00:00:00\",\n        \"listAgent\": \"James Bsamplees\",\n        \"sellAgent\": \"James Bsamplees\",\n        \"listOffice\": \"Broad Avenue\",\n        \"sellOffice\": \"Broad Avenue\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12430,\n        \"propertyAddress\": \"591 Seaview Ct , A701, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215057604\",\n        \"listDate\": \"2015-10-15T00:00:00\",\n        \"expiredDate\": \"2016-10-14T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-03-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-03-25T00:00:00\",\n        \"processedDate\": \"2016-03-25T00:00:00\",\n        \"closingDate\": \"2016-03-24T00:00:00\",\n        \"listAgent\": \"Lura Jsamplees\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12432,\n        \"propertyAddress\": \"140 Seaview Court, 1503N, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215057990\",\n        \"listDate\": \"2015-10-15T00:00:00\",\n        \"expiredDate\": \"2016-07-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-10-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-12-15T00:00:00\",\n        \"processedDate\": \"2015-12-16T00:00:00\",\n        \"closingDate\": \"2015-12-14T00:00:00\",\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12448,\n        \"propertyAddress\": \"1615 Ludlow Rd , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215055276\",\n        \"listDate\": \"2015-10-19T00:00:00\",\n        \"expiredDate\": \"2016-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-12-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-01-11T00:00:00\",\n        \"processedDate\": \"2016-01-12T00:00:00\",\n        \"closingDate\": \"2016-01-11T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12451,\n        \"propertyAddress\": \"1084 Blue Hill Creek Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"215058739\",\n        \"listDate\": \"2015-10-19T00:00:00\",\n        \"expiredDate\": \"2017-05-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12459,\n        \"propertyAddress\": \"260 Seaview Ct, 112, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215052173\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-10-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-11-30T00:00:00\",\n        \"processedDate\": \"2015-12-02T00:00:00\",\n        \"closingDate\": \"2015-11-30T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12468,\n        \"propertyAddress\": \"872 Rose Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215059272\",\n        \"listDate\": \"2015-10-21T00:00:00\",\n        \"expiredDate\": \"2018-05-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-04-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-05-03T00:00:00\",\n        \"processedDate\": \"2018-05-04T13:17:09\",\n        \"closingDate\": \"2018-05-03T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12491,\n        \"propertyAddress\": \"139 South Seas Court, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215058701\",\n        \"listDate\": \"2015-10-23T00:00:00\",\n        \"expiredDate\": \"2016-04-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-11-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-11-17T00:00:00\",\n        \"processedDate\": \"2015-11-19T00:00:00\",\n        \"closingDate\": \"2015-11-17T00:00:00\",\n        \"listAgent\": \"Sue Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12533,\n        \"propertyAddress\": \"230 Waterside Cir , 202, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215061600\",\n        \"listDate\": \"2015-11-02T00:00:00\",\n        \"expiredDate\": \"2016-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-01-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-04-29T00:00:00\",\n        \"processedDate\": \"2016-05-02T00:00:00\",\n        \"closingDate\": \"2016-04-29T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12534,\n        \"propertyAddress\": \"260 Seaview Ct , 1208, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215061609\",\n        \"listDate\": \"2015-11-02T00:00:00\",\n        \"expiredDate\": \"2016-10-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-04-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-06-13T00:00:00\",\n        \"processedDate\": \"2016-06-14T14:02:50\",\n        \"closingDate\": \"2016-06-13T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": \"Lura Jsamplees\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12538,\n        \"propertyAddress\": \"946 Sand Dune Dr , Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"215061725DD\",\n        \"listDate\": \"2015-11-02T00:00:00\",\n        \"expiredDate\": \"2018-06-01T00:00:00\",\n        \"withdrawnDate\": \"2018-04-03T00:00:00\",\n        \"pendingDate\": \"2018-03-26T00:00:00\",\n        \"cancelDate\": \"2018-04-03T00:00:00\",\n        \"estimatedClosingDate\": \"2018-04-30T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12541,\n        \"propertyAddress\": \"35 Greenbrier PYMT 1 Street, Unit 6-105, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-09-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-09-04T00:00:00\",\n        \"processedDate\": \"2015-11-03T00:00:00\",\n        \"closingDate\": \"2015-09-04T00:00:00\",\n        \"listAgent\": \"Chris samplesop\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Broad Avenue\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12549,\n        \"propertyAddress\": \"300 S Collier Blvd , 1803, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215061876\",\n        \"listDate\": \"2015-11-03T00:00:00\",\n        \"expiredDate\": \"2016-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-04-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-06-03T00:00:00\",\n        \"processedDate\": \"2016-06-06T15:04:12\",\n        \"closingDate\": \"2016-06-03T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12551,\n        \"propertyAddress\": \"440 S Heathwood Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215062072\",\n        \"listDate\": \"2015-11-03T00:00:00\",\n        \"expiredDate\": \"2016-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-03-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-04-15T00:00:00\",\n        \"processedDate\": \"2016-04-15T00:00:00\",\n        \"closingDate\": \"2016-04-15T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12561,\n        \"propertyAddress\": \"140 Seaview Dr, 1801N, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215038497\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-10-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-12-10T00:00:00\",\n        \"processedDate\": \"2015-12-15T00:00:00\",\n        \"closingDate\": \"2015-12-11T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cathy Bsampledie\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12568,\n        \"propertyAddress\": \"240 S Collier Blvd, G-4, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2142440\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-10-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-03-02T00:00:00\",\n        \"processedDate\": \"2016-03-03T00:00:00\",\n        \"closingDate\": \"2016-03-02T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Vince Cosamplece\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12573,\n        \"propertyAddress\": \"Bayport Avenue, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215062616\",\n        \"listDate\": \"2015-11-05T00:00:00\",\n        \"expiredDate\": \"2017-04-17T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-01-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-02-27T00:00:00\",\n        \"processedDate\": \"2017-02-28T15:00:05\",\n        \"closingDate\": \"2017-02-27T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12583,\n        \"propertyAddress\": \"1389 Collier Blvd , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215061910\",\n        \"listDate\": \"2015-11-06T00:00:00\",\n        \"expiredDate\": \"2016-09-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-07-29T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-09-26T00:00:00\",\n        \"processedDate\": \"2016-09-27T13:42:50\",\n        \"closingDate\": \"2016-09-26T00:00:00\",\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12585,\n        \"propertyAddress\": \"6000 Royal Marco Way , 446, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215062728\",\n        \"listDate\": \"2015-11-06T00:00:00\",\n        \"expiredDate\": \"2016-06-05T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-04-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-05-12T00:00:00\",\n        \"processedDate\": \"2016-05-13T13:11:33\",\n        \"closingDate\": \"2016-05-12T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12589,\n        \"propertyAddress\": \"940 Cape Marco Dr , 904, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215062926\",\n        \"listDate\": \"2015-11-06T00:00:00\",\n        \"expiredDate\": \"2016-08-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-06-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-06-24T00:00:00\",\n        \"processedDate\": \"2016-06-24T15:21:22\",\n        \"closingDate\": \"2016-06-24T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12613,\n        \"propertyAddress\": \"201 Vintage Bay Dr , B-26, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215062196\",\n        \"listDate\": \"2015-11-09T00:00:00\",\n        \"expiredDate\": \"2017-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-11-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-01-18T00:00:00\",\n        \"processedDate\": \"2017-01-25T14:09:38\",\n        \"closingDate\": \"2017-01-18T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Dave Flowsamples\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12614,\n        \"propertyAddress\": \"300 Stevens Landing Dr , C-306, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215060361\",\n        \"listDate\": \"2015-11-09T00:00:00\",\n        \"expiredDate\": \"2016-08-24T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-04-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-05-27T00:00:00\",\n        \"processedDate\": \"2016-05-12T00:00:00\",\n        \"closingDate\": \"2016-05-12T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Cynthia Csampleogin\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12615,\n        \"propertyAddress\": \"480 S Collier Blvd , 1004, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215063424\",\n        \"listDate\": \"2015-09-17T00:00:00\",\n        \"expiredDate\": \"2016-06-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-11-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-12-15T00:00:00\",\n        \"processedDate\": \"2015-12-21T00:00:00\",\n        \"closingDate\": \"2015-12-15T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12617,\n        \"propertyAddress\": \"900 S Collier Blvd , 908, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215062225\",\n        \"listDate\": \"2015-11-09T00:00:00\",\n        \"expiredDate\": \"2016-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-09-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-10-11T00:00:00\",\n        \"processedDate\": \"2016-10-18T14:12:52\",\n        \"closingDate\": \"2016-10-06T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12620,\n        \"propertyAddress\": \"1255 Bluehill Creek Dr , Marco Island, FL 34145-1704\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"215063733\",\n        \"listDate\": \"2015-11-10T00:00:00\",\n        \"expiredDate\": \"2017-04-16T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12621,\n        \"propertyAddress\": \"188 South Beach Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215060949\",\n        \"listDate\": \"2015-11-10T00:00:00\",\n        \"expiredDate\": \"2016-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-04-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-04-20T00:00:00\",\n        \"processedDate\": \"2016-04-18T00:00:00\",\n        \"closingDate\": \"2016-04-13T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12626,\n        \"propertyAddress\": \"626 Bimini Ave , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215062340\",\n        \"listDate\": \"2015-11-10T00:00:00\",\n        \"expiredDate\": \"2016-10-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-11-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-12-16T00:00:00\",\n        \"processedDate\": \"2015-12-18T00:00:00\",\n        \"closingDate\": \"2015-12-16T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12630,\n        \"propertyAddress\": \"901 SE Collier Blvd, 403, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215048387\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-11-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-12-01T00:00:00\",\n        \"processedDate\": \"2015-12-02T00:00:00\",\n        \"closingDate\": \"2015-11-30T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12631,\n        \"propertyAddress\": \"829 Bluebonnet Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215032328\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-10-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-11-20T00:00:00\",\n        \"processedDate\": \"2015-11-23T00:00:00\",\n        \"closingDate\": \"2015-11-23T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cullen Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12633,\n        \"propertyAddress\": \"824 Amber Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215062771\",\n        \"listDate\": \"2015-11-11T00:00:00\",\n        \"expiredDate\": \"2016-07-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-05-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-06-20T00:00:00\",\n        \"processedDate\": \"2016-06-21T10:17:38\",\n        \"closingDate\": \"2016-06-20T00:00:00\",\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": \"Cullen Ssampleughnessy\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12634,\n        \"propertyAddress\": \"500 Saturn Court, 053, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215062772\",\n        \"listDate\": \"2015-11-11T00:00:00\",\n        \"expiredDate\": \"2016-07-29T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-03-29T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-05-06T00:00:00\",\n        \"processedDate\": \"2016-05-09T00:00:00\",\n        \"closingDate\": \"2016-05-06T00:00:00\",\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12635,\n        \"propertyAddress\": \"3000 Royal Marco Way , PH-S, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"215062884\",\n        \"listDate\": \"2015-11-11T00:00:00\",\n        \"expiredDate\": \"2017-06-27T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12637,\n        \"propertyAddress\": \"500 Saturn Court, Unit 33, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215062826\",\n        \"listDate\": \"2015-11-11T00:00:00\",\n        \"expiredDate\": \"2016-07-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-04-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-04-21T00:00:00\",\n        \"processedDate\": \"2016-04-22T00:00:00\",\n        \"closingDate\": \"2016-04-21T00:00:00\",\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": \"Cullen Ssampleughnessy\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12639,\n        \"propertyAddress\": \"4000 Royal Marco Way , 324, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"215062860W\",\n        \"listDate\": \"2015-11-11T00:00:00\",\n        \"expiredDate\": \"2017-05-01T00:00:00\",\n        \"withdrawnDate\": \"2017-01-16T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12642,\n        \"propertyAddress\": \"4000 Royal Marco Way , 324, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215062860\",\n        \"listDate\": \"2015-11-11T00:00:00\",\n        \"expiredDate\": \"2017-05-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-01-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-01-27T00:00:00\",\n        \"processedDate\": \"2017-01-27T15:02:57\",\n        \"closingDate\": \"2017-01-27T00:00:00\",\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12648,\n        \"propertyAddress\": \"140 Seaview Ct , 902N, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215063883\",\n        \"listDate\": \"2015-11-12T00:00:00\",\n        \"expiredDate\": \"2016-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-05-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-06-17T00:00:00\",\n        \"processedDate\": \"2016-06-17T16:20:02\",\n        \"closingDate\": \"2016-06-17T00:00:00\",\n        \"listAgent\": \"Laurie Zansampleli\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Fairfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12664,\n        \"propertyAddress\": \"1610 Winterberry Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215062234\",\n        \"listDate\": \"2015-11-09T00:00:00\",\n        \"expiredDate\": \"2016-10-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-11-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-12-02T00:00:00\",\n        \"processedDate\": \"2015-12-07T00:00:00\",\n        \"closingDate\": \"2015-12-02T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12666,\n        \"propertyAddress\": \"2296 Island Cove Cir , Naples, FL 34109\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215064593\",\n        \"listDate\": \"2015-11-13T00:00:00\",\n        \"expiredDate\": \"2016-11-14T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-11-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-12-22T00:00:00\",\n        \"processedDate\": \"2015-12-17T00:00:00\",\n        \"closingDate\": \"2015-12-17T00:00:00\",\n        \"listAgent\": \"John D'sampleelio\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Fairfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12694,\n        \"propertyAddress\": \"87 N Collier Blvd, D-11, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215057571\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-11-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-12-10T00:00:00\",\n        \"processedDate\": \"2015-12-11T00:00:00\",\n        \"closingDate\": \"2015-12-10T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Krystal Bernsamplerdt\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12698,\n        \"propertyAddress\": \"3000 Royal Marco Way , 321, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"215065240\",\n        \"listDate\": \"2015-11-18T00:00:00\",\n        \"expiredDate\": \"2017-04-17T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12701,\n        \"propertyAddress\": \"675 Seaview Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2152318\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-11-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-12-28T00:00:00\",\n        \"processedDate\": \"2015-12-31T00:00:00\",\n        \"closingDate\": \"2015-12-28T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12714,\n        \"propertyAddress\": \"711 S Barfield Dr   , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"215063709\",\n        \"listDate\": \"2015-11-19T00:00:00\",\n        \"expiredDate\": \"2019-05-16T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12715,\n        \"propertyAddress\": \"337 Vintage Bay Dr , D-20, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215062569\",\n        \"listDate\": \"2015-11-09T00:00:00\",\n        \"expiredDate\": \"2016-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-11-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-01-12T00:00:00\",\n        \"processedDate\": \"2016-01-12T00:00:00\",\n        \"closingDate\": \"2016-01-12T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12716,\n        \"propertyAddress\": \"801 Scott Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"215064456\",\n        \"listDate\": \"2015-11-19T00:00:00\",\n        \"expiredDate\": \"2019-05-16T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12753,\n        \"propertyAddress\": \"1775 Waterfall Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215066841\",\n        \"listDate\": \"2015-11-25T00:00:00\",\n        \"expiredDate\": \"2018-01-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-08-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-01-01T00:00:00\",\n        \"processedDate\": \"2017-10-23T09:59:37\",\n        \"closingDate\": \"2017-10-20T00:00:00\",\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": \"Cathy Bsampledie\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12755,\n        \"propertyAddress\": \"1253 Mariana Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215066884\",\n        \"listDate\": \"2015-11-25T00:00:00\",\n        \"expiredDate\": \"2016-07-16T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-01-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-02-26T00:00:00\",\n        \"processedDate\": \"2016-03-02T00:00:00\",\n        \"closingDate\": \"2016-02-26T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12772,\n        \"propertyAddress\": \"300 S Collier Blvd , 2204, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215067617\",\n        \"listDate\": \"2015-12-01T00:00:00\",\n        \"expiredDate\": \"2016-08-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-03-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-04-18T00:00:00\",\n        \"processedDate\": \"2016-04-19T00:00:00\",\n        \"closingDate\": \"2016-04-18T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12773,\n        \"propertyAddress\": \"140 Seaview Court, 1506S, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215066810\",\n        \"listDate\": \"2015-12-01T00:00:00\",\n        \"expiredDate\": \"2016-08-13T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-12-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-01-19T00:00:00\",\n        \"processedDate\": \"2016-01-20T00:00:00\",\n        \"closingDate\": \"2016-01-19T00:00:00\",\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": \"Cathy Bsampledie\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12781,\n        \"propertyAddress\": \"117 Gulfstream Street, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214067159\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-11-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-01-19T00:00:00\",\n        \"processedDate\": \"2016-01-08T00:00:00\",\n        \"closingDate\": \"2016-01-08T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Angelica samplerews\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12785,\n        \"propertyAddress\": \"1131 Mulberry Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2151682\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-11-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-02-02T00:00:00\",\n        \"processedDate\": \"2016-02-02T00:00:00\",\n        \"closingDate\": \"2016-02-01T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Martin McGsamplel\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Dorchester\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12787,\n        \"propertyAddress\": \"1314 Jamaica Rd , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215067934\",\n        \"listDate\": \"2015-12-02T00:00:00\",\n        \"expiredDate\": \"2016-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-01-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-03-03T00:00:00\",\n        \"processedDate\": \"2016-03-07T00:00:00\",\n        \"closingDate\": \"2016-03-03T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12795,\n        \"propertyAddress\": \"1689 Mcilvaine Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215068218\",\n        \"listDate\": \"2015-12-03T00:00:00\",\n        \"expiredDate\": \"2016-11-19T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-05-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-07-27T00:00:00\",\n        \"processedDate\": \"2016-07-27T15:48:49\",\n        \"closingDate\": \"2016-07-27T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12803,\n        \"propertyAddress\": \"300 S Collier Blvd , 105, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215068352\",\n        \"listDate\": \"2015-12-03T00:00:00\",\n        \"expiredDate\": \"2016-08-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-12-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-12-29T00:00:00\",\n        \"processedDate\": \"2015-12-31T00:00:00\",\n        \"closingDate\": \"2015-12-29T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12824,\n        \"propertyAddress\": \"250 Rockhill Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215067875\",\n        \"listDate\": \"2015-12-08T00:00:00\",\n        \"expiredDate\": \"2016-12-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-12-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-12-18T00:00:00\",\n        \"processedDate\": \"2015-12-21T00:00:00\",\n        \"closingDate\": \"2015-12-18T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12825,\n        \"propertyAddress\": \"240 Seaview Ct , 601, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215066872\",\n        \"listDate\": \"2015-12-08T00:00:00\",\n        \"expiredDate\": \"2016-08-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-04-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-04-21T00:00:00\",\n        \"processedDate\": \"2016-04-22T00:00:00\",\n        \"closingDate\": \"2016-04-21T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12829,\n        \"propertyAddress\": \"1491 Caxambas Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"213508465\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-12-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-01-15T00:00:00\",\n        \"processedDate\": \"2016-01-18T00:00:00\",\n        \"closingDate\": \"2016-01-15T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12864,\n        \"propertyAddress\": \"6000 Royal Marco Way , 648, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215070230\",\n        \"listDate\": \"2015-12-11T00:00:00\",\n        \"expiredDate\": \"2016-11-20T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-01-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-03-15T00:00:00\",\n        \"processedDate\": \"2016-03-15T00:00:00\",\n        \"closingDate\": \"2016-03-15T00:00:00\",\n        \"listAgent\": \"Lura Jsamplees\",\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12869,\n        \"propertyAddress\": \"500 Saturn Court, 074, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215066920\",\n        \"listDate\": \"2015-12-01T00:00:00\",\n        \"expiredDate\": \"2016-07-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-01-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-02-16T00:00:00\",\n        \"processedDate\": \"2016-02-23T00:00:00\",\n        \"closingDate\": \"2016-02-16T00:00:00\",\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12877,\n        \"propertyAddress\": \"821 S Barfield Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215066731\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-12-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-02-04T00:00:00\",\n        \"processedDate\": \"2016-02-05T00:00:00\",\n        \"closingDate\": \"2016-02-04T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12878,\n        \"propertyAddress\": \"354 Sand Hill St, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-12-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-12-22T00:00:00\",\n        \"processedDate\": \"2015-12-21T00:00:00\",\n        \"closingDate\": \"2015-12-17T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Sue Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12890,\n        \"propertyAddress\": \"940 Swallow Ave, 11, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215065029\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-12-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-01-07T00:00:00\",\n        \"processedDate\": \"2016-01-07T00:00:00\",\n        \"closingDate\": \"2016-01-07T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Krystal Bernsamplerdt\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12901,\n        \"propertyAddress\": \"1020 Dill Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215015555\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-12-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-02-04T00:00:00\",\n        \"processedDate\": \"2016-02-05T00:00:00\",\n        \"closingDate\": \"2016-02-04T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12902,\n        \"propertyAddress\": \"320 Seaview Dr, 911, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2152764\",\n        \"listDate\": \"2015-11-20T00:00:00\",\n        \"expiredDate\": \"2016-11-20T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-12-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-05-15T00:00:00\",\n        \"processedDate\": \"2016-05-16T15:50:55\",\n        \"closingDate\": \"2016-05-16T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12937,\n        \"propertyAddress\": \"929 Whiskey Creek Dr , Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"215072152DD\",\n        \"listDate\": \"2015-12-22T00:00:00\",\n        \"expiredDate\": \"2018-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-03-11T00:00:00\",\n        \"cancelDate\": \"2018-04-02T00:00:00\",\n        \"estimatedClosingDate\": \"2018-06-15T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Mark Masamplen\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Bay Village\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12943,\n        \"propertyAddress\": \"756 Whiskey Creek Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215054916\",\n        \"listDate\": \"2015-09-28T00:00:00\",\n        \"expiredDate\": \"2016-09-27T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-11-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-12-18T00:00:00\",\n        \"processedDate\": \"2015-12-23T00:00:00\",\n        \"closingDate\": \"2015-12-22T00:00:00\",\n        \"listAgent\": \"James Bsamplees\",\n        \"sellAgent\": \"Lura Jsamplees\",\n        \"listOffice\": \"Broad Avenue\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12977,\n        \"propertyAddress\": \"212 Angler Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215072738\",\n        \"listDate\": \"2015-12-29T00:00:00\",\n        \"expiredDate\": \"2016-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-04-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-05-30T00:00:00\",\n        \"processedDate\": \"2016-05-31T15:02:53\",\n        \"closingDate\": \"2016-05-27T00:00:00\",\n        \"listAgent\": \"Krystal Bernsamplerdt\",\n        \"sellAgent\": \"Krystal Bernsamplerdt\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12979,\n        \"propertyAddress\": \"835 Willow Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215072805\",\n        \"listDate\": \"2015-12-29T00:00:00\",\n        \"expiredDate\": \"2016-07-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-05-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-06-20T00:00:00\",\n        \"processedDate\": \"2016-06-21T15:25:43\",\n        \"closingDate\": \"2016-06-20T00:00:00\",\n        \"listAgent\": \"Sherrie Pfeffsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12981,\n        \"propertyAddress\": \"6000 Royal Marco Way, PH-B746, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215073180\",\n        \"listDate\": \"2015-12-29T00:00:00\",\n        \"expiredDate\": \"2016-06-23T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-01-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-02-17T00:00:00\",\n        \"processedDate\": \"2016-02-17T00:00:00\",\n        \"closingDate\": \"2016-02-17T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 12991,\n        \"propertyAddress\": \"276 Rockhill Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215071734\",\n        \"listDate\": \"2015-12-30T00:00:00\",\n        \"expiredDate\": \"2016-08-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-12-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-02-18T00:00:00\",\n        \"processedDate\": \"2016-02-18T00:00:00\",\n        \"closingDate\": \"2016-02-17T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13013,\n        \"propertyAddress\": \"681 Partridge Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216000457\",\n        \"listDate\": \"2016-01-04T00:00:00\",\n        \"expiredDate\": \"2016-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13017,\n        \"propertyAddress\": \"990 Caxambas PYMT 2 Drive, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-01-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-01-31T00:00:00\",\n        \"processedDate\": \"2016-01-22T00:00:00\",\n        \"closingDate\": \"2016-01-15T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13027,\n        \"propertyAddress\": \"1100 S Collier Blvd , 1921, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216000706\",\n        \"listDate\": \"2016-01-05T00:00:00\",\n        \"expiredDate\": \"2016-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-03-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-04-01T00:00:00\",\n        \"processedDate\": \"2016-04-07T00:00:00\",\n        \"closingDate\": \"2016-04-01T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13029,\n        \"propertyAddress\": \"690 Club Marco Cir, 202, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215058360\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-01-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-02-12T00:00:00\",\n        \"processedDate\": \"2016-02-16T00:00:00\",\n        \"closingDate\": \"2016-02-16T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cynthia Csampleogin\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13030,\n        \"propertyAddress\": \"581 Barfield Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-01-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-02-02T00:00:00\",\n        \"processedDate\": \"2016-02-03T00:00:00\",\n        \"closingDate\": \"2016-02-02T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13039,\n        \"propertyAddress\": \"861 S Collier Blvd , S-302, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216079321\",\n        \"listDate\": \"2016-01-06T00:00:00\",\n        \"expiredDate\": \"2017-07-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-11-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-12-30T00:00:00\",\n        \"processedDate\": \"2017-01-03T13:50:49\",\n        \"closingDate\": \"2016-12-30T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13042,\n        \"propertyAddress\": \"381 Leatherfern Ln, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2152263\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-12-31T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-01-30T00:00:00\",\n        \"processedDate\": \"2016-01-29T00:00:00\",\n        \"closingDate\": \"2016-01-29T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13048,\n        \"propertyAddress\": \"5000 Royal Marco Way , 635, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215073268\",\n        \"listDate\": \"2016-01-07T00:00:00\",\n        \"expiredDate\": \"2016-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-01-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-04-05T00:00:00\",\n        \"processedDate\": \"2016-04-05T00:00:00\",\n        \"closingDate\": \"2016-04-05T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Helga Wsamplezold\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13064,\n        \"propertyAddress\": \"600 Club Marco Cir , 201, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216001006\",\n        \"listDate\": \"2016-01-08T00:00:00\",\n        \"expiredDate\": \"2016-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-03-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-05-09T00:00:00\",\n        \"processedDate\": \"2016-05-11T00:00:00\",\n        \"closingDate\": \"2016-05-06T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13092,\n        \"propertyAddress\": \"980 Cape Marco Dr , 1305, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216000912\",\n        \"listDate\": \"2016-01-12T00:00:00\",\n        \"expiredDate\": \"2016-06-04T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-01-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-02-26T00:00:00\",\n        \"processedDate\": \"2016-03-01T00:00:00\",\n        \"closingDate\": \"2016-02-26T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13102,\n        \"propertyAddress\": \"601 Hernando Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216000705\",\n        \"listDate\": \"2016-01-12T00:00:00\",\n        \"expiredDate\": \"2018-11-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-02-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-10-22T00:00:00\",\n        \"processedDate\": \"2018-10-23T10:45:23\",\n        \"closingDate\": \"2018-10-22T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13104,\n        \"propertyAddress\": \"661 W Elkcam Circle, 923, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215069621\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-01-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-02-15T00:00:00\",\n        \"processedDate\": \"2016-02-17T00:00:00\",\n        \"closingDate\": \"2016-02-16T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Dave Flowsamples\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13120,\n        \"propertyAddress\": \"140 Seaview Ct , S-903, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216001766\",\n        \"listDate\": \"2016-01-13T00:00:00\",\n        \"expiredDate\": \"2016-09-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-01-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-02-25T00:00:00\",\n        \"processedDate\": \"2016-02-25T00:00:00\",\n        \"closingDate\": \"2016-02-25T00:00:00\",\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13121,\n        \"propertyAddress\": \"1563 Jamaica Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216002672\",\n        \"listDate\": \"2016-01-13T00:00:00\",\n        \"expiredDate\": \"2017-01-04T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Rosemarie Tsampleagni\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13134,\n        \"propertyAddress\": \"443 Balsam Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215024173\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-12-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-03-22T00:00:00\",\n        \"processedDate\": \"2016-02-18T00:00:00\",\n        \"closingDate\": \"2016-02-16T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Blake Owsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Dorchester\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13139,\n        \"propertyAddress\": \"970 Cape Marco Dr , 1906, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216001904\",\n        \"listDate\": \"2016-01-14T00:00:00\",\n        \"expiredDate\": \"2018-01-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-11-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-12-09T00:00:00\",\n        \"processedDate\": \"2016-12-07T09:26:40\",\n        \"closingDate\": \"2016-12-06T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13144,\n        \"propertyAddress\": \"1141 S Collier Blvd , 105, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216003591\",\n        \"listDate\": \"2016-01-14T00:00:00\",\n        \"expiredDate\": \"2016-10-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-01-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-04-15T00:00:00\",\n        \"processedDate\": \"2016-04-19T00:00:00\",\n        \"closingDate\": \"2016-04-15T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13146,\n        \"propertyAddress\": \"4000 Royal Marco Way , 828, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216003665\",\n        \"listDate\": \"2016-01-14T00:00:00\",\n        \"expiredDate\": \"2016-07-11T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-04-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-05-25T00:00:00\",\n        \"processedDate\": \"2016-05-26T14:07:08\",\n        \"closingDate\": \"2016-05-25T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13150,\n        \"propertyAddress\": \"6000 Royal Marco Way , PH-C, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216003607\",\n        \"listDate\": \"2016-01-15T00:00:00\",\n        \"expiredDate\": \"2016-07-12T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-03-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-05-12T00:00:00\",\n        \"processedDate\": \"2016-05-12T00:00:00\",\n        \"closingDate\": \"2016-05-12T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13170,\n        \"propertyAddress\": \"1381 Caxambas Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216000802\",\n        \"listDate\": \"2016-01-14T00:00:00\",\n        \"expiredDate\": \"2017-04-16T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-02-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-03-03T00:00:00\",\n        \"processedDate\": \"2017-02-23T11:17:26\",\n        \"closingDate\": \"2017-02-21T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13179,\n        \"propertyAddress\": \"1035 Admiralty Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215060117\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-01-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-02-03T00:00:00\",\n        \"processedDate\": \"2016-02-04T00:00:00\",\n        \"closingDate\": \"2016-02-03T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cathy Bsampledie\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13180,\n        \"propertyAddress\": \"260 Seaview Ct , 1102, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216004569\",\n        \"listDate\": \"2016-01-20T00:00:00\",\n        \"expiredDate\": \"2017-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-01-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-02-14T00:00:00\",\n        \"processedDate\": \"2017-02-13T15:00:40\",\n        \"closingDate\": \"2017-02-13T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": \"Helga Wsamplezold\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13182,\n        \"propertyAddress\": \"1124 Breakwater Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216005076\",\n        \"listDate\": \"2016-01-20T00:00:00\",\n        \"expiredDate\": \"2016-08-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-07-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-07-26T00:00:00\",\n        \"processedDate\": \"2016-07-27T15:55:56\",\n        \"closingDate\": \"2016-07-27T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13193,\n        \"propertyAddress\": \"1741 Dogwood Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216004715\",\n        \"listDate\": \"2016-01-21T00:00:00\",\n        \"expiredDate\": \"2016-09-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-06-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-07-06T00:00:00\",\n        \"processedDate\": \"2016-07-08T09:52:01\",\n        \"closingDate\": \"2016-07-06T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13200,\n        \"propertyAddress\": \"829 Bluebonnet Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216004619\",\n        \"listDate\": \"2016-01-21T00:00:00\",\n        \"expiredDate\": \"2016-06-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-03-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-05-05T00:00:00\",\n        \"processedDate\": \"2016-05-06T00:00:00\",\n        \"closingDate\": \"2016-05-05T00:00:00\",\n        \"listAgent\": \"Cullen Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13202,\n        \"propertyAddress\": \"530 Tallwood St , 701, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216004900\",\n        \"listDate\": \"2016-01-21T00:00:00\",\n        \"expiredDate\": \"2016-10-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-02-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-04-15T00:00:00\",\n        \"processedDate\": \"2016-04-18T00:00:00\",\n        \"closingDate\": \"2016-04-15T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": \"Vince Cosamplece\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13206,\n        \"propertyAddress\": \"901 S Flamingo Cir , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215063432\",\n        \"listDate\": \"2015-11-12T00:00:00\",\n        \"expiredDate\": \"2016-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-03-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-04-08T00:00:00\",\n        \"processedDate\": \"2016-04-08T00:00:00\",\n        \"closingDate\": \"2016-04-08T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13217,\n        \"propertyAddress\": \"151 Bonita Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216005509\",\n        \"listDate\": \"2016-01-22T00:00:00\",\n        \"expiredDate\": \"2016-07-14T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-02-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-04-14T00:00:00\",\n        \"processedDate\": \"2016-04-15T00:00:00\",\n        \"closingDate\": \"2016-04-14T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13229,\n        \"propertyAddress\": \"500 Saturn Court, 021, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216005615\",\n        \"listDate\": \"2016-01-22T00:00:00\",\n        \"expiredDate\": \"2016-10-13T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-02-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-03-11T00:00:00\",\n        \"processedDate\": \"2016-03-16T00:00:00\",\n        \"closingDate\": \"2016-03-11T00:00:00\",\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13243,\n        \"propertyAddress\": \"485 N Collier Blvd , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216006330\",\n        \"listDate\": \"2016-01-25T00:00:00\",\n        \"expiredDate\": \"2016-10-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-07-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-07-20T00:00:00\",\n        \"processedDate\": \"2016-07-21T14:15:11\",\n        \"closingDate\": \"2016-07-20T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13268,\n        \"propertyAddress\": \"1864 Honduras Ave , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216006844\",\n        \"listDate\": \"2016-01-27T00:00:00\",\n        \"expiredDate\": \"2016-08-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-06-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-07-25T00:00:00\",\n        \"processedDate\": \"2016-07-26T13:05:44\",\n        \"closingDate\": \"2016-07-25T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13271,\n        \"propertyAddress\": \"900 S Collier Blvd , 1007, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216002868\",\n        \"listDate\": \"2016-01-27T00:00:00\",\n        \"expiredDate\": \"2016-10-11T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-04-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-05-16T00:00:00\",\n        \"processedDate\": \"2016-05-16T15:13:29\",\n        \"closingDate\": \"2016-05-16T00:00:00\",\n        \"listAgent\": \"Robin Taylsample\",\n        \"sellAgent\": \"Robin Taylsample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13283,\n        \"propertyAddress\": \"641 Hernando Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": \"2016-01-18T00:00:00\",\n        \"expiredDate\": \"2016-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-01-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-04-15T00:00:00\",\n        \"processedDate\": \"2016-04-13T00:00:00\",\n        \"closingDate\": \"2016-04-13T00:00:00\",\n        \"listAgent\": \"Lori Hollsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13288,\n        \"propertyAddress\": \"172 Richmond Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216005071\",\n        \"listDate\": \"2016-01-28T00:00:00\",\n        \"expiredDate\": \"2017-01-06T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13289,\n        \"propertyAddress\": \"681 Inlet Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216006902\",\n        \"listDate\": \"2016-01-27T00:00:00\",\n        \"expiredDate\": \"2017-01-19T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13301,\n        \"propertyAddress\": \"67 Madagascar Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216004768\",\n        \"listDate\": \"2016-01-29T00:00:00\",\n        \"expiredDate\": \"2016-10-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-04-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-04-29T00:00:00\",\n        \"processedDate\": \"2016-04-29T00:00:00\",\n        \"closingDate\": \"2016-04-29T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13302,\n        \"propertyAddress\": \"320 Seaview Ct , 2-411, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216006543\",\n        \"listDate\": \"2016-01-29T00:00:00\",\n        \"expiredDate\": \"2016-09-24T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-02-29T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-04-13T00:00:00\",\n        \"processedDate\": \"2016-04-14T00:00:00\",\n        \"closingDate\": \"2016-04-13T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13305,\n        \"propertyAddress\": \"1011 Swallow Ave , 504, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216007411\",\n        \"listDate\": \"2016-01-29T00:00:00\",\n        \"expiredDate\": \"2016-10-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-03-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-04-26T00:00:00\",\n        \"processedDate\": \"2016-04-26T00:00:00\",\n        \"closingDate\": \"2016-04-26T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": \"Vince Cosamplece\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13313,\n        \"propertyAddress\": \"376 Live Oak Ln , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216007075\",\n        \"listDate\": \"2016-01-28T00:00:00\",\n        \"expiredDate\": \"2017-01-21T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-08-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-08-16T00:00:00\",\n        \"processedDate\": \"2016-08-16T15:11:06\",\n        \"closingDate\": \"2016-08-16T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13328,\n        \"propertyAddress\": \"140 Seaview Ct , 1802S, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216008419\",\n        \"listDate\": \"2016-02-02T00:00:00\",\n        \"expiredDate\": \"2017-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-02-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-02-25T00:00:00\",\n        \"processedDate\": \"2016-02-25T00:00:00\",\n        \"closingDate\": \"2016-02-25T00:00:00\",\n        \"listAgent\": \"Cynthia Csampleogin\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13334,\n        \"propertyAddress\": \"383 Live Oak Ln , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"216006680WD\",\n        \"listDate\": \"2016-01-20T00:00:00\",\n        \"expiredDate\": \"2018-12-31T00:00:00\",\n        \"withdrawnDate\": \"2018-02-05T11:31:07\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13351,\n        \"propertyAddress\": \"1136 Edington Pl , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216009146\",\n        \"listDate\": \"2016-02-03T00:00:00\",\n        \"expiredDate\": \"2016-10-29T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-04-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-06-02T00:00:00\",\n        \"processedDate\": \"2016-06-03T13:53:16\",\n        \"closingDate\": \"2016-06-02T00:00:00\",\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13352,\n        \"propertyAddress\": \"1405 Collingswood Ave , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216009054\",\n        \"listDate\": \"2016-02-03T00:00:00\",\n        \"expiredDate\": \"2017-05-10T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13369,\n        \"propertyAddress\": \"1375 Bayport Ave , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216009395\",\n        \"listDate\": \"2016-02-04T00:00:00\",\n        \"expiredDate\": \"2016-11-02T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-06-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-07-27T00:00:00\",\n        \"processedDate\": \"2016-07-27T13:46:42\",\n        \"closingDate\": \"2016-07-27T00:00:00\",\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13370,\n        \"propertyAddress\": \"1771 Wavecrest Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216009226\",\n        \"listDate\": \"2016-02-04T00:00:00\",\n        \"expiredDate\": \"2017-12-13T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-03-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-04-28T00:00:00\",\n        \"processedDate\": \"2017-04-28T14:39:16\",\n        \"closingDate\": \"2017-04-28T00:00:00\",\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13371,\n        \"propertyAddress\": \"500 Saturn Court, 026, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216007568\",\n        \"listDate\": \"2016-02-04T00:00:00\",\n        \"expiredDate\": \"2016-10-21T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-06-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-07-19T00:00:00\",\n        \"processedDate\": \"2016-07-20T13:25:45\",\n        \"closingDate\": \"2016-07-19T00:00:00\",\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": \"Cathy Bsampledie\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13372,\n        \"propertyAddress\": \"131 Hollyhock Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216009413\",\n        \"listDate\": \"2016-02-04T00:00:00\",\n        \"expiredDate\": \"2017-11-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13380,\n        \"propertyAddress\": \"440 Seaview Ct , 601, Marco Island, FL 34145-2617\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216009719\",\n        \"listDate\": \"2016-02-05T00:00:00\",\n        \"expiredDate\": \"2018-08-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-06-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-08-30T00:00:00\",\n        \"processedDate\": \"2018-09-04T15:05:55\",\n        \"closingDate\": \"2018-08-30T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13381,\n        \"propertyAddress\": \"1901 Kirk Terrace, Marco Island, FL 34145-5963\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216009695\",\n        \"listDate\": \"2016-02-05T00:00:00\",\n        \"expiredDate\": \"2017-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-11-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-12-15T00:00:00\",\n        \"processedDate\": \"2016-12-16T14:08:16\",\n        \"closingDate\": \"2016-12-15T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13382,\n        \"propertyAddress\": \"1080 Dana Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216009753\",\n        \"listDate\": \"2016-02-05T00:00:00\",\n        \"expiredDate\": \"2017-05-10T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13383,\n        \"propertyAddress\": \"189 Gulfport Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216009565\",\n        \"listDate\": \"2016-02-05T00:00:00\",\n        \"expiredDate\": \"2017-11-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13387,\n        \"propertyAddress\": \"1066 Dill Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216009792\",\n        \"listDate\": \"2016-02-05T00:00:00\",\n        \"expiredDate\": \"2017-05-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13388,\n        \"propertyAddress\": \"1230 Spanish Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216009862\",\n        \"listDate\": \"2016-02-05T00:00:00\",\n        \"expiredDate\": \"2016-10-29T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-05-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-06-30T00:00:00\",\n        \"processedDate\": \"2016-07-01T14:39:49\",\n        \"closingDate\": \"2016-06-30T00:00:00\",\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13393,\n        \"propertyAddress\": \"189 S Collier Blvd , C-204, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216009608\",\n        \"listDate\": \"2016-02-08T00:00:00\",\n        \"expiredDate\": \"2016-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-02-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-03-29T00:00:00\",\n        \"processedDate\": \"2016-03-30T00:00:00\",\n        \"closingDate\": \"2016-03-29T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13394,\n        \"propertyAddress\": \"931 Collier Ct, A401, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-02-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-02-17T00:00:00\",\n        \"processedDate\": \"2016-02-19T00:00:00\",\n        \"closingDate\": \"2016-02-10T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cullen Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13405,\n        \"propertyAddress\": \"1000 Baltic Terrace, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216009480\",\n        \"listDate\": \"2016-02-08T00:00:00\",\n        \"expiredDate\": \"2017-05-10T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13412,\n        \"propertyAddress\": \"291 Flamingo Cir, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-02-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-02-09T00:00:00\",\n        \"processedDate\": \"2016-02-09T00:00:00\",\n        \"closingDate\": \"2016-02-09T00:00:00\",\n        \"listAgent\": \"Johanna Bernsamplerdt\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13415,\n        \"propertyAddress\": \"816 Manor , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216010433\",\n        \"listDate\": \"2016-02-09T00:00:00\",\n        \"expiredDate\": \"2017-04-24T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-11-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-12-06T00:00:00\",\n        \"processedDate\": \"2016-12-07T10:08:37\",\n        \"closingDate\": \"2016-12-06T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13417,\n        \"propertyAddress\": \"510 Mangrove Ct, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216010232\",\n        \"listDate\": \"2016-02-09T00:00:00\",\n        \"expiredDate\": \"2018-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13418,\n        \"propertyAddress\": \"970 Ironwood Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": \"2016-02-02T00:00:00\",\n        \"expiredDate\": \"2016-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-02-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-02-22T00:00:00\",\n        \"processedDate\": \"2016-02-22T00:00:00\",\n        \"closingDate\": \"2016-02-22T00:00:00\",\n        \"listAgent\": \"Cullen Ssampleughnessy\",\n        \"sellAgent\": \"Cullen Ssampleughnessy\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13436,\n        \"propertyAddress\": \"15 Marco Villas Drive, O-3, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216009177\",\n        \"listDate\": \"2016-02-02T00:00:00\",\n        \"expiredDate\": \"2017-02-02T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-03-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-04-08T00:00:00\",\n        \"processedDate\": \"2016-04-08T00:00:00\",\n        \"closingDate\": \"2016-04-06T00:00:00\",\n        \"listAgent\": \"Lura Jsamplees\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13447,\n        \"propertyAddress\": \"1030 Mendel Ave, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": \"2016-02-09T00:00:00\",\n        \"expiredDate\": \"2016-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-02-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-02-25T00:00:00\",\n        \"processedDate\": \"2016-03-01T00:00:00\",\n        \"closingDate\": \"2016-02-25T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13450,\n        \"propertyAddress\": \"Harborview Rentals, Marco Island, FL 34146\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-02-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-02-12T00:00:00\",\n        \"processedDate\": \"2016-02-12T00:00:00\",\n        \"closingDate\": \"2016-02-12T00:00:00\",\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13453,\n        \"propertyAddress\": \"140 Seaview Ct , 1604 N, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216011417\",\n        \"listDate\": \"2016-02-12T00:00:00\",\n        \"expiredDate\": \"2017-05-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-11-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-11-28T00:00:00\",\n        \"processedDate\": \"2016-11-30T13:33:02\",\n        \"closingDate\": \"2016-11-28T00:00:00\",\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13455,\n        \"propertyAddress\": \"840 S Collier Blvd , 705, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216011450\",\n        \"listDate\": \"2016-02-12T00:00:00\",\n        \"expiredDate\": \"2016-08-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-03-31T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-04-28T00:00:00\",\n        \"processedDate\": \"2016-04-29T00:00:00\",\n        \"closingDate\": \"2016-04-28T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": \"Sue Ssampleughnessy\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13459,\n        \"propertyAddress\": \"1823 Osceola Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216009236\",\n        \"listDate\": \"2016-02-12T00:00:00\",\n        \"expiredDate\": \"2017-02-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-06-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-09-02T00:00:00\",\n        \"processedDate\": \"2016-09-06T10:52:24\",\n        \"closingDate\": \"2016-09-02T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13465,\n        \"propertyAddress\": \"440 Seaview Ct , 904, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216011725\",\n        \"listDate\": \"2016-02-15T00:00:00\",\n        \"expiredDate\": \"2016-11-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-07-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-09-13T00:00:00\",\n        \"processedDate\": \"2016-09-14T14:03:30\",\n        \"closingDate\": \"2016-09-13T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13466,\n        \"propertyAddress\": \"866 Sea Dune Ln , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"216011657W\",\n        \"listDate\": \"2016-02-15T00:00:00\",\n        \"expiredDate\": \"2019-05-31T00:00:00\",\n        \"withdrawnDate\": \"2018-07-18T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13470,\n        \"propertyAddress\": \"1007 Anglers Cv , J-202, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216011909\",\n        \"listDate\": \"2016-02-15T00:00:00\",\n        \"expiredDate\": \"2017-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-01-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-03-09T00:00:00\",\n        \"processedDate\": \"2017-03-09T15:29:04\",\n        \"closingDate\": \"2017-02-28T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13476,\n        \"propertyAddress\": \"1382 Bayport Ave, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2151515\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-02-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-03-02T00:00:00\",\n        \"processedDate\": \"2016-03-03T00:00:00\",\n        \"closingDate\": \"2016-02-26T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Lori Hollsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13494,\n        \"propertyAddress\": \"900and 910 Caxambas Drive, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216010796\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-02-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-03-25T00:00:00\",\n        \"processedDate\": \"2016-03-28T00:00:00\",\n        \"closingDate\": \"2016-03-25T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13506,\n        \"propertyAddress\": \"900 N Barfield Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216013031\",\n        \"listDate\": \"2016-02-17T00:00:00\",\n        \"expiredDate\": \"2017-02-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-10-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-12-14T00:00:00\",\n        \"processedDate\": \"2016-12-15T11:43:33\",\n        \"closingDate\": \"2016-12-14T00:00:00\",\n        \"listAgent\": \"Cullen Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13516,\n        \"propertyAddress\": \"240 Waterside Cir , 201, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"216013146\",\n        \"listDate\": \"2016-02-18T00:00:00\",\n        \"expiredDate\": \"2017-01-18T00:00:00\",\n        \"withdrawnDate\": \"2017-01-13T14:01:33\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13522,\n        \"propertyAddress\": \"480 SE Collier Blvd, 802, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216009543\",\n        \"listDate\": \"2016-02-01T00:00:00\",\n        \"expiredDate\": \"2016-03-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-02-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-03-10T00:00:00\",\n        \"processedDate\": \"2016-03-14T00:00:00\",\n        \"closingDate\": \"2016-03-10T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13524,\n        \"propertyAddress\": \"260 Seaview Ct , 1711, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216013057\",\n        \"listDate\": \"2016-02-19T00:00:00\",\n        \"expiredDate\": \"2016-07-24T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-02-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-04-08T00:00:00\",\n        \"processedDate\": \"2016-04-12T00:00:00\",\n        \"closingDate\": \"2016-04-08T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13532,\n        \"propertyAddress\": \"900 Whiskey Creek Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216013257\",\n        \"listDate\": \"2016-02-19T00:00:00\",\n        \"expiredDate\": \"2017-04-16T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13537,\n        \"propertyAddress\": \"1081 Bald Eagle Dr, Slip A-17, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215054387\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-02-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-04-08T00:00:00\",\n        \"processedDate\": \"2016-03-31T00:00:00\",\n        \"closingDate\": \"2016-03-25T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Bill Fsamplentz (Hail Mary Home)\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Broad Avenue\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13578,\n        \"propertyAddress\": \"1010 Coronado Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216010654\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-02-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-07-01T00:00:00\",\n        \"processedDate\": \"2016-07-13T10:05:54\",\n        \"closingDate\": \"2016-07-01T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13584,\n        \"propertyAddress\": \"55 N Barfield Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216014454\",\n        \"listDate\": \"2016-02-22T00:00:00\",\n        \"expiredDate\": \"2017-04-16T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-02-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-03-08T00:00:00\",\n        \"processedDate\": \"2017-03-08T14:43:25\",\n        \"closingDate\": \"2017-03-08T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13585,\n        \"propertyAddress\": \"6000 Royal Marco Way , 457, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216014497\",\n        \"listDate\": \"2016-02-23T00:00:00\",\n        \"expiredDate\": \"2016-08-16T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-02-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-04-28T00:00:00\",\n        \"processedDate\": \"2016-04-28T00:00:00\",\n        \"closingDate\": \"2016-04-27T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13593,\n        \"propertyAddress\": \"1886 Woodbine Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216014192\",\n        \"listDate\": \"2016-02-25T00:00:00\",\n        \"expiredDate\": \"2016-11-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-04-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-05-31T00:00:00\",\n        \"processedDate\": \"2016-06-06T15:26:45\",\n        \"closingDate\": \"2016-05-24T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Michael Palmsampleano\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Somerville\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13597,\n        \"propertyAddress\": \"1100 S Collier Blvd , 1922, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216015183\",\n        \"listDate\": \"2016-02-25T00:00:00\",\n        \"expiredDate\": \"2016-08-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-03-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-04-01T00:00:00\",\n        \"processedDate\": \"2016-04-06T00:00:00\",\n        \"closingDate\": \"2016-04-01T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13602,\n        \"propertyAddress\": \"500 Saturn Ct, 63, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215002736\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-02-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-03-03T00:00:00\",\n        \"processedDate\": \"2016-03-04T00:00:00\",\n        \"closingDate\": \"2016-03-03T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Sue Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13627,\n        \"propertyAddress\": \"1442 Biscayne Way , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216015979\",\n        \"listDate\": \"2016-02-29T00:00:00\",\n        \"expiredDate\": \"2016-09-29T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-03-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-04-30T00:00:00\",\n        \"processedDate\": \"2016-05-02T00:00:00\",\n        \"closingDate\": \"2016-04-27T00:00:00\",\n        \"listAgent\": \"Sue Ssampleughnessy\",\n        \"sellAgent\": \"Sue Ssampleughnessy\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13629,\n        \"propertyAddress\": \"1320 Riverhead Ave , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216015553\",\n        \"listDate\": \"2016-02-29T00:00:00\",\n        \"expiredDate\": \"2016-12-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-08-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-09-20T00:00:00\",\n        \"processedDate\": \"2016-09-20T15:33:37\",\n        \"closingDate\": \"2016-09-20T00:00:00\",\n        \"listAgent\": \"Lori Hollsample\",\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13639,\n        \"propertyAddress\": \"1060 Caxambas Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216014802\",\n        \"listDate\": \"2016-02-26T00:00:00\",\n        \"expiredDate\": \"2018-04-21T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-12-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-12-18T00:00:00\",\n        \"processedDate\": \"2017-12-18T14:09:30\",\n        \"closingDate\": \"2017-12-18T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13645,\n        \"propertyAddress\": \"931 Sycamore, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-01-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-03-02T00:00:00\",\n        \"processedDate\": \"2016-03-02T00:00:00\",\n        \"closingDate\": \"2016-03-02T00:00:00\",\n        \"listAgent\": \"Robin Taylsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13659,\n        \"propertyAddress\": \"910 Sycamore Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216016789\",\n        \"listDate\": \"2015-09-22T00:00:00\",\n        \"expiredDate\": \"2017-10-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13685,\n        \"propertyAddress\": \"1860 Dogwood Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216017369\",\n        \"listDate\": \"2016-03-04T00:00:00\",\n        \"expiredDate\": \"2017-03-16T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13690,\n        \"propertyAddress\": \"430 S Barfield Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216012801\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-02-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-03-11T00:00:00\",\n        \"processedDate\": \"2016-03-11T00:00:00\",\n        \"closingDate\": \"2016-03-10T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cullen Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13692,\n        \"propertyAddress\": \"156 Richmond Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216016721\",\n        \"listDate\": \"2016-03-07T00:00:00\",\n        \"expiredDate\": \"2016-12-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-08-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-10-07T00:00:00\",\n        \"processedDate\": \"2016-10-07T12:59:51\",\n        \"closingDate\": \"2016-10-07T00:00:00\",\n        \"listAgent\": \"Robin Taylsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13710,\n        \"propertyAddress\": \"165 S Collier Boulevard, B104, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2162331\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-03-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-04-11T00:00:00\",\n        \"processedDate\": \"2016-04-12T00:00:00\",\n        \"closingDate\": \"2016-04-11T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13720,\n        \"propertyAddress\": \"Clausen Properties, 19781 Inc., Marco Island, FL 34146\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-03-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-03-10T00:00:00\",\n        \"processedDate\": \"2016-03-10T00:00:00\",\n        \"closingDate\": \"2016-03-10T00:00:00\",\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13725,\n        \"propertyAddress\": \"4000 Royal Marco Way , 829, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216018374\",\n        \"listDate\": \"2016-03-10T00:00:00\",\n        \"expiredDate\": \"2018-05-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-06-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-07-21T00:00:00\",\n        \"processedDate\": \"2017-07-21T13:21:02\",\n        \"closingDate\": \"2017-07-21T00:00:00\",\n        \"listAgent\": \"Lura Jsamplees\",\n        \"sellAgent\": \"Cullen Ssampleughnessy\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13726,\n        \"propertyAddress\": \"970 Ironwood Ct , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"216018812WD\",\n        \"listDate\": \"2016-03-07T00:00:00\",\n        \"expiredDate\": \"2017-08-31T00:00:00\",\n        \"withdrawnDate\": \"2017-07-27T09:14:10\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13731,\n        \"propertyAddress\": \"439 Marquesas Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216017104\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-03-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-05-06T00:00:00\",\n        \"processedDate\": \"2016-05-09T00:00:00\",\n        \"closingDate\": \"2016-05-06T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Steve Shocksampley\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13741,\n        \"propertyAddress\": \"1515 Leland Way , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216019060\",\n        \"listDate\": \"2016-03-11T00:00:00\",\n        \"expiredDate\": \"2017-11-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13767,\n        \"propertyAddress\": \"221 Landmark St , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216010411\",\n        \"listDate\": \"2016-03-15T00:00:00\",\n        \"expiredDate\": \"2016-10-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-03-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-05-10T00:00:00\",\n        \"processedDate\": \"2016-05-11T00:00:00\",\n        \"closingDate\": \"2016-05-10T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13787,\n        \"propertyAddress\": \"409 Waterleaf Ct , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"216018207WD1\",\n        \"listDate\": \"2016-03-07T00:00:00\",\n        \"expiredDate\": \"2018-12-31T00:00:00\",\n        \"withdrawnDate\": \"2018-01-15T09:57:38\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13789,\n        \"propertyAddress\": \"155 Tahiti Rd , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216020065\",\n        \"listDate\": \"2016-03-15T00:00:00\",\n        \"expiredDate\": \"2016-12-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-06-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-06-24T00:00:00\",\n        \"processedDate\": \"2016-06-27T11:22:16\",\n        \"closingDate\": \"2016-06-24T00:00:00\",\n        \"listAgent\": \"Lori Hollsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13809,\n        \"propertyAddress\": \"75 Templewood Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216019076\",\n        \"listDate\": \"2016-03-18T00:00:00\",\n        \"expiredDate\": \"2017-02-06T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-06-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-08-22T00:00:00\",\n        \"processedDate\": \"2016-08-23T12:45:49\",\n        \"closingDate\": \"2016-08-22T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13810,\n        \"propertyAddress\": \"850 S Collier Blvd , 603, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216020600\",\n        \"listDate\": \"2016-03-18T00:00:00\",\n        \"expiredDate\": \"2017-03-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-11-29T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-12-29T00:00:00\",\n        \"processedDate\": \"2016-12-30T14:52:06\",\n        \"closingDate\": \"2016-12-29T00:00:00\",\n        \"listAgent\": \"Cynthia Csampleogin\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13812,\n        \"propertyAddress\": \"260 Seaview Ct, 1709, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216011166\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-03-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-04-28T00:00:00\",\n        \"processedDate\": \"2016-05-05T00:00:00\",\n        \"closingDate\": \"2016-04-28T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Helga Wsamplezold\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13818,\n        \"propertyAddress\": \"140 Seaview Ct , 1406, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216020096\",\n        \"listDate\": \"2016-03-21T00:00:00\",\n        \"expiredDate\": \"2017-01-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-03-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-04-29T00:00:00\",\n        \"processedDate\": \"2016-05-02T00:00:00\",\n        \"closingDate\": \"2016-04-29T00:00:00\",\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13840,\n        \"propertyAddress\": \"336 Marquesas Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216021435\",\n        \"listDate\": \"2016-03-23T00:00:00\",\n        \"expiredDate\": \"2016-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-07-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-08-12T00:00:00\",\n        \"processedDate\": \"2016-08-15T14:42:02\",\n        \"closingDate\": \"2016-08-12T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13848,\n        \"propertyAddress\": \"140 Seaview Ct , S-205, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216021740\",\n        \"listDate\": \"2016-03-23T00:00:00\",\n        \"expiredDate\": \"2017-04-17T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-11-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-12-20T00:00:00\",\n        \"processedDate\": \"2016-12-21T15:02:35\",\n        \"closingDate\": \"2016-12-20T00:00:00\",\n        \"listAgent\": \"Cynthia Csampleogin\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13851,\n        \"propertyAddress\": \"320 Seaview Ct, 403, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215063352\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-03-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-05-26T00:00:00\",\n        \"processedDate\": \"2016-05-27T15:23:12\",\n        \"closingDate\": \"2016-05-26T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Helga Wsamplezold\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13853,\n        \"propertyAddress\": \"161 S Collier Blvd , A202, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215070567\",\n        \"listDate\": \"2015-12-14T00:00:00\",\n        \"expiredDate\": \"2016-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-03-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-05-20T00:00:00\",\n        \"processedDate\": \"2016-05-16T15:45:14\",\n        \"closingDate\": \"2016-05-16T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": \"Lura Jsamplees\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13855,\n        \"propertyAddress\": \"465 Bald Eagle Drive, Unit 9, Marco Island, FL 34145-2770\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216021336\",\n        \"listDate\": \"2016-03-24T00:00:00\",\n        \"expiredDate\": \"2017-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-12-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-12-21T00:00:00\",\n        \"processedDate\": \"2016-12-21T14:57:49\",\n        \"closingDate\": \"2016-12-20T00:00:00\",\n        \"listAgent\": \"Angelica samplerews\",\n        \"sellAgent\": \"Angelica samplerews\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13862,\n        \"propertyAddress\": \"58 N Collier Blvd , 1506, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216007701\",\n        \"listDate\": \"2016-03-25T00:00:00\",\n        \"expiredDate\": \"2016-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-05-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-05-13T00:00:00\",\n        \"processedDate\": \"2016-05-26T13:00:37\",\n        \"closingDate\": \"2016-05-13T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13867,\n        \"propertyAddress\": \"840 S Collier Blvd, 1805, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2152910\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-03-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-05-05T00:00:00\",\n        \"processedDate\": \"2016-05-06T00:00:00\",\n        \"closingDate\": \"2016-05-05T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13877,\n        \"propertyAddress\": \"RE/MAX Affinity Plus, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-03-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-03-29T00:00:00\",\n        \"processedDate\": \"2016-03-29T00:00:00\",\n        \"closingDate\": \"2016-03-29T00:00:00\",\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13883,\n        \"propertyAddress\": \"1002 Royal Marco Way , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216022322\",\n        \"listDate\": \"2016-03-29T00:00:00\",\n        \"expiredDate\": \"2018-04-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-02-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-04-12T00:00:00\",\n        \"processedDate\": \"2018-04-16T12:41:25\",\n        \"closingDate\": \"2018-04-12T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13906,\n        \"propertyAddress\": \"617 Spinnaker Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216007750\",\n        \"listDate\": \"2016-02-12T00:00:00\",\n        \"expiredDate\": \"2016-09-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-04-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-05-10T00:00:00\",\n        \"processedDate\": \"2016-05-11T00:00:00\",\n        \"closingDate\": \"2016-05-10T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13921,\n        \"propertyAddress\": \"650 N Barfield Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216021673\",\n        \"listDate\": \"2016-04-01T00:00:00\",\n        \"expiredDate\": \"2016-12-17T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-04-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-05-18T00:00:00\",\n        \"processedDate\": \"2016-05-19T11:19:16\",\n        \"closingDate\": \"2016-05-18T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13927,\n        \"propertyAddress\": \"361 Wild Coffee Ln , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215065367\",\n        \"listDate\": \"2015-11-24T00:00:00\",\n        \"expiredDate\": \"2016-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-06-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-09-15T00:00:00\",\n        \"processedDate\": \"2016-09-16T11:25:33\",\n        \"closingDate\": \"2016-09-15T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13938,\n        \"propertyAddress\": \"180 Waterside Cir, 202, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2152553\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-04-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-04-13T00:00:00\",\n        \"processedDate\": \"2016-04-14T00:00:00\",\n        \"closingDate\": \"2016-04-13T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Darlene sampleddy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13957,\n        \"propertyAddress\": \"580 S Barfield Drive, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216024970\",\n        \"listDate\": \"2016-04-06T00:00:00\",\n        \"expiredDate\": \"2017-04-05T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Paul Strsampleg\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13958,\n        \"propertyAddress\": \"1000 S Collier Blvd , 407, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216024770\",\n        \"listDate\": \"2016-04-06T00:00:00\",\n        \"expiredDate\": \"2017-04-03T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-04-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-06-01T00:00:00\",\n        \"processedDate\": \"2016-06-03T13:36:24\",\n        \"closingDate\": \"2016-06-01T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13963,\n        \"propertyAddress\": \"59 Tahiti Rd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-03-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-04-07T00:00:00\",\n        \"processedDate\": \"2016-04-07T00:00:00\",\n        \"closingDate\": \"2016-04-07T00:00:00\",\n        \"listAgent\": \"Polly samplemmel\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Dorchester\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13968,\n        \"propertyAddress\": \"1820 S Inlet Drive, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216023494\",\n        \"listDate\": \"2016-04-07T00:00:00\",\n        \"expiredDate\": \"2019-04-21T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13978,\n        \"propertyAddress\": \"668 Thrush Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216025509\",\n        \"listDate\": \"2016-04-08T00:00:00\",\n        \"expiredDate\": \"2016-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-05-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-06-30T00:00:00\",\n        \"processedDate\": \"2016-07-01T11:11:55\",\n        \"closingDate\": \"2016-06-30T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Michael samplewler\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Lexington\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 13990,\n        \"propertyAddress\": \"1108 Bond Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216002288\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-04-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-04-26T00:00:00\",\n        \"processedDate\": \"2016-04-22T00:00:00\",\n        \"closingDate\": \"2016-04-22T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Sue Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14030,\n        \"propertyAddress\": \"870 Collier Court, 403, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216027148\",\n        \"listDate\": \"2016-04-15T00:00:00\",\n        \"expiredDate\": \"2016-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Sue Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14032,\n        \"propertyAddress\": \"140 Seaview Ct , N-506, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"216027183\",\n        \"listDate\": \"2016-04-15T00:00:00\",\n        \"expiredDate\": \"2017-10-30T00:00:00\",\n        \"withdrawnDate\": \"2017-04-27T13:53:44\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14036,\n        \"propertyAddress\": \"789 Caribbean Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216026804\",\n        \"listDate\": \"2016-04-15T00:00:00\",\n        \"expiredDate\": \"2017-04-14T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-07-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-07-26T00:00:00\",\n        \"processedDate\": \"2016-07-29T11:58:50\",\n        \"closingDate\": \"2016-07-26T00:00:00\",\n        \"listAgent\": \"Lura Jsamplees\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14039,\n        \"propertyAddress\": \"1191 Osprey Court, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2016-04-18T00:00:00\",\n        \"closingDate\": \"2016-04-18T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14042,\n        \"propertyAddress\": \"Harborview Rentals, Marco Island, FL 34146\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-04-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-04-18T00:00:00\",\n        \"processedDate\": \"2016-04-18T00:00:00\",\n        \"closingDate\": \"2016-04-18T00:00:00\",\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14063,\n        \"propertyAddress\": \"15 Marco Villas Drive, Unit 15, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-04-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-04-20T00:00:00\",\n        \"processedDate\": \"2016-05-20T15:24:47\",\n        \"closingDate\": \"2016-04-20T00:00:00\",\n        \"listAgent\": \"Johanna Bernsamplerdt\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14066,\n        \"propertyAddress\": \"1050 San Marco Rd , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"216027946\",\n        \"listDate\": \"2016-04-20T00:00:00\",\n        \"expiredDate\": \"2017-05-31T00:00:00\",\n        \"withdrawnDate\": \"2017-05-15T17:18:32\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14068,\n        \"propertyAddress\": \"530 S Collier Blvd , 603, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216028007\",\n        \"listDate\": \"2016-04-20T00:00:00\",\n        \"expiredDate\": \"2017-05-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-11-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-12-12T00:00:00\",\n        \"processedDate\": \"2016-12-13T14:10:12\",\n        \"closingDate\": \"2016-12-12T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14072,\n        \"propertyAddress\": \"291 S Collier Blvd, 105, 106, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": \"2016-03-30T00:00:00\",\n        \"expiredDate\": \"2016-10-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-03-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-09-20T00:00:00\",\n        \"processedDate\": \"2016-09-20T15:27:16\",\n        \"closingDate\": \"2016-09-15T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14081,\n        \"propertyAddress\": \"440 Sandhill Street, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215057863\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-04-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-06-14T00:00:00\",\n        \"processedDate\": \"2016-06-17T09:30:00\",\n        \"closingDate\": \"2016-06-14T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14084,\n        \"propertyAddress\": \"280 S Collier Blvd , 802, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216025473\",\n        \"listDate\": \"2016-04-22T00:00:00\",\n        \"expiredDate\": \"2017-05-02T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14088,\n        \"propertyAddress\": \"3000 Royal Marco Way , 3-615, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216028192\",\n        \"listDate\": \"2016-04-22T00:00:00\",\n        \"expiredDate\": \"2016-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-06-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-07-31T00:00:00\",\n        \"processedDate\": \"2016-07-22T14:38:31\",\n        \"closingDate\": \"2016-07-21T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14111,\n        \"propertyAddress\": \"Sunshine Resort Rentals, LLC, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-04-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-04-26T00:00:00\",\n        \"processedDate\": \"2016-04-26T00:00:00\",\n        \"closingDate\": \"2016-04-26T00:00:00\",\n        \"listAgent\": \"Lura Jsamplees\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14129,\n        \"propertyAddress\": \"579 Seaview Court, 0C4, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215072265\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-04-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-06-07T00:00:00\",\n        \"processedDate\": \"2016-06-13T11:55:59\",\n        \"closingDate\": \"2016-06-07T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cathy Bsampledie\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14151,\n        \"propertyAddress\": \"1738 Dogwood Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216030630\",\n        \"listDate\": \"2016-04-28T00:00:00\",\n        \"expiredDate\": \"2019-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14154,\n        \"propertyAddress\": \"672 Crescent St , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216030958\",\n        \"listDate\": \"2016-05-03T00:00:00\",\n        \"expiredDate\": \"2017-02-28T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-06-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-06-24T00:00:00\",\n        \"processedDate\": \"2016-06-27T15:45:00\",\n        \"closingDate\": \"2016-06-24T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14167,\n        \"propertyAddress\": \"1225 Orange Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216025489\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-04-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-06-14T00:00:00\",\n        \"processedDate\": \"2016-06-14T14:32:01\",\n        \"closingDate\": \"2016-06-14T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14171,\n        \"propertyAddress\": \"305 Grapewood Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216031350\",\n        \"listDate\": \"2016-05-04T00:00:00\",\n        \"expiredDate\": \"2017-01-23T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14174,\n        \"propertyAddress\": \"1144 Blue Hill Creek Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215068293\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-05-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-07-14T00:00:00\",\n        \"processedDate\": \"2016-07-18T12:13:15\",\n        \"closingDate\": \"2016-07-14T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14179,\n        \"propertyAddress\": \"945 Caxambas Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216031598\",\n        \"listDate\": \"2016-05-05T00:00:00\",\n        \"expiredDate\": \"2016-11-28T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-11-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-12-16T00:00:00\",\n        \"processedDate\": \"2016-12-16T13:05:54\",\n        \"closingDate\": \"2016-12-14T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14185,\n        \"propertyAddress\": \"900 S Collier Blvd , 401, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216031653\",\n        \"listDate\": \"2016-05-06T00:00:00\",\n        \"expiredDate\": \"2017-05-02T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-06-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-07-29T00:00:00\",\n        \"processedDate\": \"2016-07-29T15:04:45\",\n        \"closingDate\": \"2016-07-28T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14186,\n        \"propertyAddress\": \"970 Cape Marco Dr , 1402, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216031793\",\n        \"listDate\": \"2016-05-06T00:00:00\",\n        \"expiredDate\": \"2017-12-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-06-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-07-17T00:00:00\",\n        \"processedDate\": \"2017-07-17T14:07:45\",\n        \"closingDate\": \"2017-07-17T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14208,\n        \"propertyAddress\": \"341 Regatta St , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216032532\",\n        \"listDate\": \"2016-05-10T00:00:00\",\n        \"expiredDate\": \"2016-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-06-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-07-28T00:00:00\",\n        \"processedDate\": \"2016-07-28T14:43:00\",\n        \"closingDate\": \"2016-07-28T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14217,\n        \"propertyAddress\": \"480 S Collier Blvd, 903, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": \"2016-05-01T00:00:00\",\n        \"expiredDate\": \"2017-05-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-05-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-05-31T00:00:00\",\n        \"processedDate\": \"2016-05-31T15:36:55\",\n        \"closingDate\": \"2016-05-27T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14222,\n        \"propertyAddress\": \"891 Huron Ct , 201, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216032774\",\n        \"listDate\": \"2016-05-11T00:00:00\",\n        \"expiredDate\": \"2017-04-28T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Lura Jsamplees\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14236,\n        \"propertyAddress\": \"1234 Shenandoah Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216032791\",\n        \"listDate\": \"2016-05-12T00:00:00\",\n        \"expiredDate\": \"2016-11-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-07-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-08-19T00:00:00\",\n        \"processedDate\": \"2016-08-22T13:38:40\",\n        \"closingDate\": \"2016-08-19T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14243,\n        \"propertyAddress\": \"940 Tulip Ct , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"SHEB041717IHE\",\n        \"listDate\": \"2016-05-13T00:00:00\",\n        \"expiredDate\": \"2018-05-01T00:00:00\",\n        \"withdrawnDate\": \"2017-10-05T09:59:38\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14244,\n        \"propertyAddress\": \"110 Channel Ct , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"216033278W\",\n        \"listDate\": \"2016-05-13T00:00:00\",\n        \"expiredDate\": \"2017-05-05T00:00:00\",\n        \"withdrawnDate\": \"2017-04-24T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Barbi Lsamplee\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Bay Village\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14255,\n        \"propertyAddress\": \"809 Amazon Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215054318\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-05-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-06-28T00:00:00\",\n        \"processedDate\": \"2016-06-28T15:53:37\",\n        \"closingDate\": \"2016-06-28T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14256,\n        \"propertyAddress\": \"900 S Collier Blvd, 409, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2152791\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-05-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-06-17T00:00:00\",\n        \"processedDate\": \"2016-06-15T10:37:58\",\n        \"closingDate\": \"2016-06-14T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Helga Wsamplezold\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14257,\n        \"propertyAddress\": \"741 S Collier Blvd, 512, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-05-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-06-02T00:00:00\",\n        \"processedDate\": \"2016-06-06T13:40:21\",\n        \"closingDate\": \"2016-06-02T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14258,\n        \"propertyAddress\": \"1421 Forrest Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216033605\",\n        \"listDate\": \"2016-05-17T00:00:00\",\n        \"expiredDate\": \"2018-02-28T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-11-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-01-29T00:00:00\",\n        \"processedDate\": \"2018-01-26T12:53:35\",\n        \"closingDate\": \"2018-01-26T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": \"Darlene sampleddy\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14261,\n        \"propertyAddress\": \"780 S Collier Blvd , 311, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216034150\",\n        \"listDate\": \"2016-05-17T00:00:00\",\n        \"expiredDate\": \"2017-05-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-12-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-01-05T00:00:00\",\n        \"processedDate\": \"2017-01-06T11:47:47\",\n        \"closingDate\": \"2017-01-05T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14264,\n        \"propertyAddress\": \"1066 Blue Hill Creek Dr , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"216033916\",\n        \"listDate\": \"2016-05-17T00:00:00\",\n        \"expiredDate\": \"2017-05-16T00:00:00\",\n        \"withdrawnDate\": \"2017-01-23T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14268,\n        \"propertyAddress\": \"140 Seaview Ct, 1804S, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2162344\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-05-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-06-16T00:00:00\",\n        \"processedDate\": \"2016-06-17T17:44:23\",\n        \"closingDate\": \"2016-06-16T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cathy Bsampledie\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14269,\n        \"propertyAddress\": \"411 Battersea Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216034025\",\n        \"listDate\": \"2016-05-18T00:00:00\",\n        \"expiredDate\": \"2018-05-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-04-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-06-07T00:00:00\",\n        \"processedDate\": \"2017-06-09T11:08:53\",\n        \"closingDate\": \"2017-06-07T00:00:00\",\n        \"listAgent\": \"Lori Hollsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14277,\n        \"propertyAddress\": \"335 S Hideaway Circle, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216032634\",\n        \"listDate\": \"2016-05-18T00:00:00\",\n        \"expiredDate\": \"2017-05-09T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14283,\n        \"propertyAddress\": \"1620 Winterberry Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216034598\",\n        \"listDate\": \"2016-05-19T00:00:00\",\n        \"expiredDate\": \"2017-02-28T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-05-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-05-27T00:00:00\",\n        \"processedDate\": \"2016-05-31T14:34:58\",\n        \"closingDate\": \"2016-05-27T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14290,\n        \"propertyAddress\": \"498 Fieldstone Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216034547\",\n        \"listDate\": \"2016-05-20T00:00:00\",\n        \"expiredDate\": \"2017-10-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14291,\n        \"propertyAddress\": \"930 Sycamore Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216034546\",\n        \"listDate\": \"2016-05-20T00:00:00\",\n        \"expiredDate\": \"2017-10-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14319,\n        \"propertyAddress\": \"140 Seaview Ct , S-906, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216035314\",\n        \"listDate\": \"2016-05-24T00:00:00\",\n        \"expiredDate\": \"2017-05-09T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14321,\n        \"propertyAddress\": \"850 S Collier Blvd , 504, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216035598\",\n        \"listDate\": \"2016-05-24T00:00:00\",\n        \"expiredDate\": \"2017-04-10T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-07-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-09-16T00:00:00\",\n        \"processedDate\": \"2016-09-19T12:53:24\",\n        \"closingDate\": \"2016-09-16T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14332,\n        \"propertyAddress\": \"2044 Sheffield Ave , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216035979\",\n        \"listDate\": \"2016-05-05T00:00:00\",\n        \"expiredDate\": \"2019-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14339,\n        \"propertyAddress\": \"720 S Collier Blvd , 605, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216034062\",\n        \"listDate\": \"2016-05-26T00:00:00\",\n        \"expiredDate\": \"2017-03-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-06-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-06-30T00:00:00\",\n        \"processedDate\": \"2016-07-01T13:25:13\",\n        \"closingDate\": \"2016-06-30T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14340,\n        \"propertyAddress\": \"140 Seaview Ct , 1501N, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216036076\",\n        \"listDate\": \"2016-05-26T00:00:00\",\n        \"expiredDate\": \"2016-11-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-10-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-11-29T00:00:00\",\n        \"processedDate\": \"2016-11-28T15:29:33\",\n        \"closingDate\": \"2016-11-23T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14341,\n        \"propertyAddress\": \"870 Robin Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215071296\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-05-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-06-30T00:00:00\",\n        \"processedDate\": \"2016-07-01T11:04:19\",\n        \"closingDate\": \"2016-06-30T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Michael samplewler\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Lexington\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14361,\n        \"propertyAddress\": \"1036 S Collier Boulevard , B602, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216034619\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-05-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-07-27T00:00:00\",\n        \"processedDate\": \"2016-07-28T11:22:41\",\n        \"closingDate\": \"2016-07-27T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14385,\n        \"propertyAddress\": \"1287 6th Ave , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216036932\",\n        \"listDate\": \"2016-06-01T00:00:00\",\n        \"expiredDate\": \"2017-03-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-07-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-09-09T00:00:00\",\n        \"processedDate\": \"2016-09-12T14:24:56\",\n        \"closingDate\": \"2016-09-09T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14391,\n        \"propertyAddress\": \"Marco Island Vacation 21079 , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-04-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-06-01T00:00:00\",\n        \"processedDate\": \"2016-06-01T15:00:29\",\n        \"closingDate\": \"2016-06-01T00:00:00\",\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14392,\n        \"propertyAddress\": \"Marco Island Vacation 21080 , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-04-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-06-01T00:00:00\",\n        \"processedDate\": \"2016-06-01T15:12:27\",\n        \"closingDate\": \"2016-06-01T00:00:00\",\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14393,\n        \"propertyAddress\": \"Marco Island Vacation 21081 , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-04-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-06-01T00:00:00\",\n        \"processedDate\": \"2016-06-01T15:21:40\",\n        \"closingDate\": \"2016-06-01T00:00:00\",\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14402,\n        \"propertyAddress\": \"367 Live Oak Ln , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216036994\",\n        \"listDate\": \"2016-06-01T00:00:00\",\n        \"expiredDate\": \"2017-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-10-31T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-12-27T00:00:00\",\n        \"processedDate\": \"2016-12-28T14:04:27\",\n        \"closingDate\": \"2016-12-27T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14404,\n        \"propertyAddress\": \"900 Collier Ct, 403, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215073461\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-05-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-07-12T00:00:00\",\n        \"processedDate\": \"2016-07-12T14:53:43\",\n        \"closingDate\": \"2016-07-12T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14411,\n        \"propertyAddress\": \"1060 Borghese Lane, Unit 701, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-05-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-06-02T00:00:00\",\n        \"processedDate\": \"2016-06-07T08:08:09\",\n        \"closingDate\": \"2016-06-02T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14434,\n        \"propertyAddress\": \"275 Waterside Cir, 102, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2163222\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-06-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-06-14T00:00:00\",\n        \"processedDate\": \"2016-06-20T08:49:23\",\n        \"closingDate\": \"2016-06-14T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14438,\n        \"propertyAddress\": \"320 Seaview Ct , 1202, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216038065\",\n        \"listDate\": \"2016-06-06T00:00:00\",\n        \"expiredDate\": \"2017-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-03-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-04-21T00:00:00\",\n        \"processedDate\": \"2017-04-21T14:36:12\",\n        \"closingDate\": \"2017-04-21T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14464,\n        \"propertyAddress\": \"260 Seaview Ct , 1210, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216038334\",\n        \"listDate\": \"2016-06-07T00:00:00\",\n        \"expiredDate\": \"2017-05-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-10-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-12-11T00:00:00\",\n        \"processedDate\": \"2016-12-01T13:58:31\",\n        \"closingDate\": \"2016-12-01T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14469,\n        \"propertyAddress\": \"149 S Seas Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216038585\",\n        \"listDate\": \"2016-06-08T00:00:00\",\n        \"expiredDate\": \"2017-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-09-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-10-04T00:00:00\",\n        \"processedDate\": \"2016-10-07T12:27:08\",\n        \"closingDate\": \"2016-10-04T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14472,\n        \"propertyAddress\": \"2235 Island Cove Cir , Naples, FL 34109\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216038719\",\n        \"listDate\": \"2016-06-08T00:00:00\",\n        \"expiredDate\": \"2017-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-02-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-05-26T00:00:00\",\n        \"processedDate\": \"2017-05-30T12:36:07\",\n        \"closingDate\": \"2017-05-26T00:00:00\",\n        \"listAgent\": \"Roya Nousample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Dorchester\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14473,\n        \"propertyAddress\": \"200 Stevens Landing Dr, B302, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"21505611\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-06-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-06-17T00:00:00\",\n        \"processedDate\": \"2016-06-17T17:47:41\",\n        \"closingDate\": \"2016-06-16T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Sue Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14480,\n        \"propertyAddress\": \"118 Hollyhook Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216004713\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-06-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-10-28T00:00:00\",\n        \"processedDate\": \"2016-10-31T11:19:26\",\n        \"closingDate\": \"2016-10-28T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14483,\n        \"propertyAddress\": \"930 E Inlet Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216038505\",\n        \"listDate\": \"2016-06-09T00:00:00\",\n        \"expiredDate\": \"2017-09-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14486,\n        \"propertyAddress\": \"Harborview Rentals 21621 , Marco Island, FL 34146\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-06-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-06-10T00:00:00\",\n        \"processedDate\": \"2016-06-10T14:48:09\",\n        \"closingDate\": \"2016-06-10T00:00:00\",\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14488,\n        \"propertyAddress\": \"180 Seaview Ct , 703, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216038518\",\n        \"listDate\": \"2016-06-10T00:00:00\",\n        \"expiredDate\": \"2016-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-11-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-12-08T00:00:00\",\n        \"processedDate\": \"2016-12-05T12:46:17\",\n        \"closingDate\": \"2016-12-02T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14533,\n        \"propertyAddress\": \"756 Whiskey Creek Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216039878\",\n        \"listDate\": \"2016-06-21T00:00:00\",\n        \"expiredDate\": \"2018-06-13T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-12-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-12-28T00:00:00\",\n        \"processedDate\": \"2017-12-28T15:41:23\",\n        \"closingDate\": \"2017-12-28T00:00:00\",\n        \"listAgent\": \"Lura Jsamplees\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14574,\n        \"propertyAddress\": \"433 S Barfield Drive , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-06-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-06-28T00:00:00\",\n        \"processedDate\": \"2016-06-30T15:17:33\",\n        \"closingDate\": \"2016-06-28T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14577,\n        \"propertyAddress\": \"812 Hideaway Cir E, 133, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216034311\",\n        \"listDate\": \"2016-05-20T00:00:00\",\n        \"expiredDate\": \"2017-02-03T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-07-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-07-27T00:00:00\",\n        \"processedDate\": \"2016-07-29T11:07:30\",\n        \"closingDate\": \"2016-07-27T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14595,\n        \"propertyAddress\": \"210 Waterway Ct , 2-202, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"216042808\",\n        \"listDate\": \"2016-06-30T00:00:00\",\n        \"expiredDate\": \"2017-06-29T00:00:00\",\n        \"withdrawnDate\": \"2017-06-08T13:39:35\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cullen Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14630,\n        \"propertyAddress\": \"1070 S Collier Blvd , 304, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"216038652DD\",\n        \"listDate\": \"2016-07-07T00:00:00\",\n        \"expiredDate\": \"2017-09-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-08-21T00:00:00\",\n        \"cancelDate\": \"2017-08-28T00:00:00\",\n        \"estimatedClosingDate\": \"2017-09-15T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": \"Cullen Ssampleughnessy\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14634,\n        \"propertyAddress\": \"818 Magnolia Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216044122\",\n        \"listDate\": \"2016-07-07T00:00:00\",\n        \"expiredDate\": \"2017-04-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-07-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-08-01T00:00:00\",\n        \"processedDate\": \"2016-08-03T14:10:57\",\n        \"closingDate\": \"2016-08-01T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14702,\n        \"propertyAddress\": \"650 Rockport Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216045419\",\n        \"listDate\": \"2016-07-14T00:00:00\",\n        \"expiredDate\": \"2017-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-07-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-09-29T00:00:00\",\n        \"processedDate\": \"2016-09-29T14:10:55\",\n        \"closingDate\": \"2016-09-28T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Cullen Ssampleughnessy\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14711,\n        \"propertyAddress\": \"1109 Blue Hill Creek Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216045388\",\n        \"listDate\": \"2016-07-15T00:00:00\",\n        \"expiredDate\": \"2017-07-09T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Dave Flowsamples\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14714,\n        \"propertyAddress\": \"140 Seaview Ct , 1101 S, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216045166\",\n        \"listDate\": \"2016-07-15T00:00:00\",\n        \"expiredDate\": \"2017-06-07T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-07-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-09-09T00:00:00\",\n        \"processedDate\": \"2016-09-12T12:48:55\",\n        \"closingDate\": \"2016-09-09T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14720,\n        \"propertyAddress\": \"780 S Collier Blvd, 206, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216032725\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-07-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-08-24T00:00:00\",\n        \"processedDate\": \"2016-08-25T14:15:44\",\n        \"closingDate\": \"2016-08-23T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Sue Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14721,\n        \"propertyAddress\": \"1080 Caxambas Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2142665\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-07-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-01-04T00:00:00\",\n        \"processedDate\": \"2017-01-04T11:48:51\",\n        \"closingDate\": \"2017-01-04T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Sue Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14723,\n        \"propertyAddress\": \"775 Milan Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216040319\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-07-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-09-30T00:00:00\",\n        \"processedDate\": \"2016-10-06T14:53:11\",\n        \"closingDate\": \"2016-09-30T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Lura Jsamplees\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14734,\n        \"propertyAddress\": \"1829 S Inlet Drive, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216046690\",\n        \"listDate\": \"2016-07-20T00:00:00\",\n        \"expiredDate\": \"2017-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14744,\n        \"propertyAddress\": \"911 Ruby Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216046957\",\n        \"listDate\": \"2016-07-20T00:00:00\",\n        \"expiredDate\": \"2016-08-11T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-07-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-08-04T00:00:00\",\n        \"processedDate\": \"2016-08-08T15:19:12\",\n        \"closingDate\": \"2016-08-04T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14748,\n        \"propertyAddress\": \"840 S Collier Blvd, 1602, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2152218\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-07-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-08-26T00:00:00\",\n        \"processedDate\": \"2016-08-26T15:39:21\",\n        \"closingDate\": \"2016-08-26T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cynthia Csampleogin\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14749,\n        \"propertyAddress\": \"940 Cape Marco Dr, 1402, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2162258\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-07-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-08-31T00:00:00\",\n        \"processedDate\": \"2016-09-07T12:23:22\",\n        \"closingDate\": \"2016-08-31T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Robin Taylsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14755,\n        \"propertyAddress\": \"390 Century Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216046691\",\n        \"listDate\": \"2016-07-25T00:00:00\",\n        \"expiredDate\": \"2018-05-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-02-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-03-30T00:00:00\",\n        \"processedDate\": \"2018-04-02T14:35:34\",\n        \"closingDate\": \"2018-03-29T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14756,\n        \"propertyAddress\": \"561 Somerset Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-07-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-08-23T00:00:00\",\n        \"processedDate\": \"2016-08-25T14:42:43\",\n        \"closingDate\": \"2016-08-23T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14765,\n        \"propertyAddress\": \"321 Turnbury Way, 16-407, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-07-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-07-26T00:00:00\",\n        \"processedDate\": \"2016-07-26T14:21:01\",\n        \"closingDate\": \"2016-07-26T00:00:00\",\n        \"listAgent\": \"Barbara Massample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14778,\n        \"propertyAddress\": \"1011 Swallow Ave, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2162649\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-07-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-09-15T00:00:00\",\n        \"processedDate\": \"2016-09-21T11:41:34\",\n        \"closingDate\": \"2016-09-15T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Dave Flowsamples\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14782,\n        \"propertyAddress\": \"411 Elk Cir , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216047938\",\n        \"listDate\": \"2016-07-20T00:00:00\",\n        \"expiredDate\": \"2017-10-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-08-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-09-08T00:00:00\",\n        \"processedDate\": \"2017-09-20T12:41:35\",\n        \"closingDate\": \"2017-09-07T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14788,\n        \"propertyAddress\": \"4000  Royal Marco Way  629 , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216048344\",\n        \"listDate\": \"2016-07-29T00:00:00\",\n        \"expiredDate\": \"2017-08-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14792,\n        \"propertyAddress\": \"8888 Lely Island Cir, Naples, FL 34113\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215066656\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-07-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-09-15T00:00:00\",\n        \"processedDate\": \"2016-09-15T13:47:46\",\n        \"closingDate\": \"2016-09-15T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Connie Lsampleg\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Dorchester\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14794,\n        \"propertyAddress\": \"639 Century Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216048862\",\n        \"listDate\": \"2016-08-01T00:00:00\",\n        \"expiredDate\": \"2017-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-03-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-04-24T00:00:00\",\n        \"processedDate\": \"2017-04-25T12:32:23\",\n        \"closingDate\": \"2017-04-24T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14809,\n        \"propertyAddress\": \"940 Cape Marco Dr , 1501, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216049126\",\n        \"listDate\": \"2016-08-04T00:00:00\",\n        \"expiredDate\": \"2017-05-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Robin Taylsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14815,\n        \"propertyAddress\": \"740 N Collier Blvd , 2-309, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216049617\",\n        \"listDate\": \"2016-08-04T00:00:00\",\n        \"expiredDate\": \"2017-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-08-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-09-29T00:00:00\",\n        \"processedDate\": \"2016-09-29T13:21:12\",\n        \"closingDate\": \"2016-09-29T00:00:00\",\n        \"listAgent\": \"Sue Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14840,\n        \"propertyAddress\": \"816 W Elkcam Cir , 301, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216049592\",\n        \"listDate\": \"2016-08-08T00:00:00\",\n        \"expiredDate\": \"2017-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14843,\n        \"propertyAddress\": \"866 Elm Ct, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216049116\",\n        \"listDate\": \"2016-08-09T00:00:00\",\n        \"expiredDate\": \"2019-07-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14844,\n        \"propertyAddress\": \"741 Barfield Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216049647\",\n        \"listDate\": \"2016-08-09T00:00:00\",\n        \"expiredDate\": \"2017-07-25T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-10-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-11-15T00:00:00\",\n        \"processedDate\": \"2016-11-18T11:03:32\",\n        \"closingDate\": \"2016-11-15T00:00:00\",\n        \"listAgent\": \"Paul Strsampleg\",\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14858,\n        \"propertyAddress\": \"58 N Collier Blvd , 402, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216051087\",\n        \"listDate\": \"2016-08-11T00:00:00\",\n        \"expiredDate\": \"2017-02-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-09-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-10-17T00:00:00\",\n        \"processedDate\": \"2016-10-17T18:40:43\",\n        \"closingDate\": \"2016-10-17T00:00:00\",\n        \"listAgent\": \"Cynthia Csampleogin\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14859,\n        \"propertyAddress\": \"1121 Swallow Avenue, 302, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216051006\",\n        \"listDate\": \"2016-08-11T00:00:00\",\n        \"expiredDate\": \"2017-08-05T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-03-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-03-23T00:00:00\",\n        \"processedDate\": \"2017-03-23T14:48:03\",\n        \"closingDate\": \"2017-03-23T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14860,\n        \"propertyAddress\": \"730 Hull Ct , Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"216051093DD\",\n        \"listDate\": \"2016-08-11T00:00:00\",\n        \"expiredDate\": \"2018-06-01T00:00:00\",\n        \"withdrawnDate\": \"2018-01-15T00:00:00\",\n        \"pendingDate\": \"2018-01-09T00:00:00\",\n        \"cancelDate\": \"2018-01-15T00:00:00\",\n        \"estimatedClosingDate\": \"2018-02-07T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14870,\n        \"propertyAddress\": \"421 Elk Cir , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216051335\",\n        \"listDate\": \"2016-08-12T00:00:00\",\n        \"expiredDate\": \"2017-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-12-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-01-12T00:00:00\",\n        \"processedDate\": \"2017-01-12T14:30:25\",\n        \"closingDate\": \"2017-01-12T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": \"Cullen Ssampleughnessy\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14874,\n        \"propertyAddress\": \"261 Hideaway Cir S, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216051683\",\n        \"listDate\": \"2016-08-15T00:00:00\",\n        \"expiredDate\": \"2018-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-11-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-12-29T00:00:00\",\n        \"processedDate\": \"2017-12-29T10:05:29\",\n        \"closingDate\": \"2017-12-29T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14876,\n        \"propertyAddress\": \"190 N Collier Blvd, V09, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-08-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-09-28T00:00:00\",\n        \"processedDate\": \"2016-09-22T13:30:00\",\n        \"closingDate\": \"2016-09-22T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14893,\n        \"propertyAddress\": \"900 N Collier 22133 Boulevard , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-08-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-08-18T00:00:00\",\n        \"processedDate\": \"2016-08-18T14:32:37\",\n        \"closingDate\": \"2016-08-18T00:00:00\",\n        \"listAgent\": \"Barbara Massample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14898,\n        \"propertyAddress\": \"522 Bradford Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216050549\",\n        \"listDate\": \"2016-08-18T00:00:00\",\n        \"expiredDate\": \"2017-07-14T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-10-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-10-31T00:00:00\",\n        \"processedDate\": \"2016-11-01T12:05:21\",\n        \"closingDate\": \"2016-10-31T00:00:00\",\n        \"listAgent\": \"Lori Hollsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14901,\n        \"propertyAddress\": \"4000 Royal Marco Way , 628, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216052501\",\n        \"listDate\": \"2016-08-19T00:00:00\",\n        \"expiredDate\": \"2018-06-20T00:00:00\",\n        \"withdrawnDate\": \"2017-06-08T00:00:00\",\n        \"pendingDate\": \"2017-11-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-04-05T00:00:00\",\n        \"processedDate\": \"2018-04-06T14:32:52\",\n        \"closingDate\": \"2018-04-05T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14904,\n        \"propertyAddress\": \"1221 Ludlam Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216052032\",\n        \"listDate\": \"2016-08-19T00:00:00\",\n        \"expiredDate\": \"2017-08-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-06-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-07-31T00:00:00\",\n        \"processedDate\": \"2017-07-24T15:28:10\",\n        \"closingDate\": \"2017-07-21T00:00:00\",\n        \"listAgent\": \"Cynthia Csampleogin\",\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14907,\n        \"propertyAddress\": \"1170 Edington Pl , A10, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216052744\",\n        \"listDate\": \"2016-08-19T00:00:00\",\n        \"expiredDate\": \"2017-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-08-29T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-09-07T00:00:00\",\n        \"processedDate\": \"2016-09-08T09:46:12\",\n        \"closingDate\": \"2016-09-07T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14913,\n        \"propertyAddress\": \"794 W Elkcam Cir , 4004, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216051718\",\n        \"listDate\": \"2016-08-22T00:00:00\",\n        \"expiredDate\": \"2017-08-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-04-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-05-31T00:00:00\",\n        \"processedDate\": \"2017-05-31T10:56:13\",\n        \"closingDate\": \"2017-05-30T00:00:00\",\n        \"listAgent\": \"Dave Flowsamples\",\n        \"sellAgent\": \"Dave Flowsamples\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14926,\n        \"propertyAddress\": \"1270 Lily Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216053461\",\n        \"listDate\": \"2016-08-23T00:00:00\",\n        \"expiredDate\": \"2017-04-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-12-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-01-18T00:00:00\",\n        \"processedDate\": \"2017-01-18T14:36:57\",\n        \"closingDate\": \"2017-01-18T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14933,\n        \"propertyAddress\": \"741 S Collier Blvd, 301, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216050422\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-08-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-09-30T00:00:00\",\n        \"processedDate\": \"2016-09-27T15:40:05\",\n        \"closingDate\": \"2016-09-27T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14939,\n        \"propertyAddress\": \"1266 Jamaica Rd , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216051020\",\n        \"listDate\": \"2016-08-24T00:00:00\",\n        \"expiredDate\": \"2017-07-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14946,\n        \"propertyAddress\": \"2823 Jude Island Way , Naples, FL 34119\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216052930\",\n        \"listDate\": \"2016-08-24T00:00:00\",\n        \"expiredDate\": \"2017-04-17T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-01-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-03-22T00:00:00\",\n        \"processedDate\": \"2017-03-23T11:36:21\",\n        \"closingDate\": \"2017-03-17T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14947,\n        \"propertyAddress\": \"130 N Collier Boulevard, A06, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216053503\",\n        \"listDate\": \"2016-08-19T00:00:00\",\n        \"expiredDate\": \"2017-05-04T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-08-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-10-07T00:00:00\",\n        \"processedDate\": \"2016-10-07T12:52:56\",\n        \"closingDate\": \"2016-10-07T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14951,\n        \"propertyAddress\": \"9202 Palm Island Cir, Fort Myers, FL 33903\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216001315\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-08-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-09-16T00:00:00\",\n        \"processedDate\": \"2016-09-20T14:57:48\",\n        \"closingDate\": \"2016-09-16T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Vanya Demisampleva\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Boston\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14953,\n        \"propertyAddress\": \"940 Cape Marco Dr , 1802, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216052180\",\n        \"listDate\": \"2016-08-25T00:00:00\",\n        \"expiredDate\": \"2017-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-11-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-01-18T00:00:00\",\n        \"processedDate\": \"2017-01-18T15:02:16\",\n        \"closingDate\": \"2017-01-18T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14964,\n        \"propertyAddress\": \"1780 Devon Ct , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"216054074\",\n        \"listDate\": \"2016-08-26T00:00:00\",\n        \"expiredDate\": \"2017-08-27T00:00:00\",\n        \"withdrawnDate\": \"2017-08-16T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14970,\n        \"propertyAddress\": \"260 Seaview Ct , 1011, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216054093\",\n        \"listDate\": \"2016-08-26T00:00:00\",\n        \"expiredDate\": \"2017-08-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-08-29T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-10-14T00:00:00\",\n        \"processedDate\": \"2016-10-14T14:08:09\",\n        \"closingDate\": \"2016-10-13T00:00:00\",\n        \"listAgent\": \"Lura Jsamplees\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14972,\n        \"propertyAddress\": \"439 Waterleaf Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216054494\",\n        \"listDate\": \"2016-08-29T00:00:00\",\n        \"expiredDate\": \"2017-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-11-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-12-06T00:00:00\",\n        \"processedDate\": \"2016-12-07T10:01:57\",\n        \"closingDate\": \"2016-12-06T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": \"Sue Ssampleughnessy\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14976,\n        \"propertyAddress\": \"152 Leland Way , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216053990\",\n        \"listDate\": \"2016-08-29T00:00:00\",\n        \"expiredDate\": \"2017-08-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-03-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-05-30T00:00:00\",\n        \"processedDate\": \"2017-05-30T12:40:26\",\n        \"closingDate\": \"2017-05-26T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14981,\n        \"propertyAddress\": \"750 Partridge Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216054602\",\n        \"listDate\": \"2016-08-30T00:00:00\",\n        \"expiredDate\": \"2017-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-01-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-04-10T00:00:00\",\n        \"processedDate\": \"2017-04-10T13:57:59\",\n        \"closingDate\": \"2017-04-07T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14982,\n        \"propertyAddress\": \"1069 N Collier Blvd, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"216029208DD\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": \"2016-09-06T00:00:00\",\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14984,\n        \"propertyAddress\": \"494 Yellowbird St, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216042917\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-08-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-09-28T00:00:00\",\n        \"processedDate\": \"2016-09-28T16:33:51\",\n        \"closingDate\": \"2016-09-28T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 14988,\n        \"propertyAddress\": \"1695 Ludlow Rd , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216049839\",\n        \"listDate\": \"2016-08-30T00:00:00\",\n        \"expiredDate\": \"2017-08-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15000,\n        \"propertyAddress\": \"970 Cape Marco Dr , 1104, Marco Island, FL 34145-6655\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216055038\",\n        \"listDate\": \"2016-08-31T00:00:00\",\n        \"expiredDate\": \"2017-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-04-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-05-30T00:00:00\",\n        \"processedDate\": \"2017-05-31T11:30:41\",\n        \"closingDate\": \"2017-05-30T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15003,\n        \"propertyAddress\": \"1767 Watson Rd , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"216055023WD\",\n        \"listDate\": \"2016-08-30T00:00:00\",\n        \"expiredDate\": \"2018-12-31T00:00:00\",\n        \"withdrawnDate\": \"2017-12-11T11:46:41\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15011,\n        \"propertyAddress\": \"1066 Ruppert Rd , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216055291\",\n        \"listDate\": \"2016-09-01T00:00:00\",\n        \"expiredDate\": \"2017-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-10-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-03-22T00:00:00\",\n        \"processedDate\": \"2017-03-03T14:21:09\",\n        \"closingDate\": \"2017-03-03T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15012,\n        \"propertyAddress\": \"332 Bald Eagle Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216055306\",\n        \"listDate\": \"2016-09-01T00:00:00\",\n        \"expiredDate\": \"2017-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-12-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-01-09T00:00:00\",\n        \"processedDate\": \"2017-01-09T15:07:51\",\n        \"closingDate\": \"2017-01-09T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15031,\n        \"propertyAddress\": \"786 Whiskey Creek Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216055561\",\n        \"listDate\": \"2016-09-02T00:00:00\",\n        \"expiredDate\": \"2017-08-25T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-04-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-07-21T00:00:00\",\n        \"processedDate\": \"2017-07-21T13:27:31\",\n        \"closingDate\": \"2017-07-21T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15032,\n        \"propertyAddress\": \"320 Seaview Ct , 2-905, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216055607\",\n        \"listDate\": \"2016-09-02T00:00:00\",\n        \"expiredDate\": \"2018-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-04-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-06-01T00:00:00\",\n        \"processedDate\": \"2018-06-04T10:35:45\",\n        \"closingDate\": \"2018-06-01T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15040,\n        \"propertyAddress\": \"451 Battersea Ct, Marco Island, FL 34146\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216042857\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-09-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-11-03T00:00:00\",\n        \"processedDate\": \"2016-11-09T13:27:52\",\n        \"closingDate\": \"2016-11-04T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15045,\n        \"propertyAddress\": \"140 Seaview Ct S, 1104S, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216056084\",\n        \"listDate\": \"2016-09-06T00:00:00\",\n        \"expiredDate\": \"2017-08-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15056,\n        \"propertyAddress\": \"1635 Ludlow Rd , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216054517\",\n        \"listDate\": \"2016-09-07T00:00:00\",\n        \"expiredDate\": \"2017-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15058,\n        \"propertyAddress\": \"180 Coral Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216056376\",\n        \"listDate\": \"2016-09-07T00:00:00\",\n        \"expiredDate\": \"2017-04-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15062,\n        \"propertyAddress\": \"168 Shorecrest Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216056303\",\n        \"listDate\": \"2016-09-08T00:00:00\",\n        \"expiredDate\": \"2017-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-12-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-01-31T00:00:00\",\n        \"processedDate\": \"2017-02-02T11:15:17\",\n        \"closingDate\": \"2017-01-31T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15063,\n        \"propertyAddress\": \"760 Inlet Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216055410\",\n        \"listDate\": \"2016-09-08T00:00:00\",\n        \"expiredDate\": \"2017-05-12T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15075,\n        \"propertyAddress\": \"608 Waterside Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216056566\",\n        \"listDate\": \"2016-09-08T00:00:00\",\n        \"expiredDate\": \"2017-08-24T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15076,\n        \"propertyAddress\": \"1110 Abbeville Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216056193\",\n        \"listDate\": \"2016-09-09T00:00:00\",\n        \"expiredDate\": \"2017-02-28T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15106,\n        \"propertyAddress\": \"970 Cape Marco Dr, G02, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": \"2016-09-05T00:00:00\",\n        \"expiredDate\": \"2016-10-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-09-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-10-07T00:00:00\",\n        \"processedDate\": \"2016-10-07T14:13:23\",\n        \"closingDate\": \"2016-10-07T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15109,\n        \"propertyAddress\": \"1258 Treasure Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216031802\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-09-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-10-14T00:00:00\",\n        \"processedDate\": \"2016-10-11T13:14:51\",\n        \"closingDate\": \"2016-10-11T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Lori Hollsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15118,\n        \"propertyAddress\": \"140 Seaview Ct , S-902, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216058012\",\n        \"listDate\": \"2016-09-13T00:00:00\",\n        \"expiredDate\": \"2020-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15121,\n        \"propertyAddress\": \"404 Nassau Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216047084\",\n        \"listDate\": \"2016-07-27T00:00:00\",\n        \"expiredDate\": \"2017-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-11-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-12-29T00:00:00\",\n        \"processedDate\": \"2016-12-29T15:52:03\",\n        \"closingDate\": \"2016-12-29T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15128,\n        \"propertyAddress\": \"460 Century Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216057399\",\n        \"listDate\": \"2016-09-16T00:00:00\",\n        \"expiredDate\": \"2017-08-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15129,\n        \"propertyAddress\": \"1190 Abbeville Ct , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"216058154WD\",\n        \"listDate\": \"2016-09-15T00:00:00\",\n        \"expiredDate\": \"2017-11-30T00:00:00\",\n        \"withdrawnDate\": \"2017-03-14T09:31:03\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15133,\n        \"propertyAddress\": \"5520 Islandwalk Cir , Naples, FL 34119\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216057490\",\n        \"listDate\": \"2016-09-16T00:00:00\",\n        \"expiredDate\": \"2017-02-14T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Christopher Hsamplebsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Fairfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15152,\n        \"propertyAddress\": \"1629 Mcilvaine Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216056690\",\n        \"listDate\": \"2016-09-20T00:00:00\",\n        \"expiredDate\": \"2021-08-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-03-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-05-01T00:00:00\",\n        \"processedDate\": \"2018-05-01T12:21:44\",\n        \"closingDate\": \"2018-05-01T00:00:00\",\n        \"listAgent\": \"Johanna Bernsamplerdt\",\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15159,\n        \"propertyAddress\": \"930 Scott Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2151985\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-09-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-10-07T00:00:00\",\n        \"processedDate\": \"2016-10-06T15:00:39\",\n        \"closingDate\": \"2016-10-06T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15183,\n        \"propertyAddress\": \"1501 Honeysuckle Ave , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216034543\",\n        \"listDate\": \"2016-05-20T00:00:00\",\n        \"expiredDate\": \"2017-04-28T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15208,\n        \"propertyAddress\": \"995 Anglers Cv, N501, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": \"2016-09-24T00:00:00\",\n        \"expiredDate\": \"2016-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-09-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-12-01T00:00:00\",\n        \"processedDate\": \"2016-12-07T14:54:33\",\n        \"closingDate\": \"2016-12-01T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15223,\n        \"propertyAddress\": \"6000 Royal Marco Way , 445, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216059567\",\n        \"listDate\": \"2016-09-27T00:00:00\",\n        \"expiredDate\": \"2017-06-19T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-10-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-12-22T00:00:00\",\n        \"processedDate\": \"2016-12-27T15:07:06\",\n        \"closingDate\": \"2016-12-22T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15224,\n        \"propertyAddress\": \"900 S Collier Boulevard, 607, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216060230\",\n        \"listDate\": \"2016-09-27T00:00:00\",\n        \"expiredDate\": \"2017-07-20T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Robin Taylsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15228,\n        \"propertyAddress\": \"1080 S Collier Blvd , 201, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216060527\",\n        \"listDate\": \"2016-09-27T00:00:00\",\n        \"expiredDate\": \"2017-10-27T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-01-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-03-02T00:00:00\",\n        \"processedDate\": \"2017-03-03T11:08:42\",\n        \"closingDate\": \"2017-03-02T00:00:00\",\n        \"listAgent\": \"Gwen Tolssample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15234,\n        \"propertyAddress\": \"180 Seaview Ct , 415, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216060781\",\n        \"listDate\": \"2016-09-28T00:00:00\",\n        \"expiredDate\": \"2016-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-11-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-12-28T00:00:00\",\n        \"processedDate\": \"2016-12-28T14:55:04\",\n        \"closingDate\": \"2016-12-28T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15259,\n        \"propertyAddress\": \"1210 Osprey Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216061369\",\n        \"listDate\": \"2016-09-30T00:00:00\",\n        \"expiredDate\": \"2017-07-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-10-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-12-15T00:00:00\",\n        \"processedDate\": \"2016-12-16T11:02:43\",\n        \"closingDate\": \"2016-12-15T00:00:00\",\n        \"listAgent\": \"Cindy sampleyf\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Brighton\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15266,\n        \"propertyAddress\": \"20 Covewood Ct, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216060594\",\n        \"listDate\": \"2016-09-27T00:00:00\",\n        \"expiredDate\": \"2018-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Janice samplegel\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15270,\n        \"propertyAddress\": \"300 S Collier Blvd, 1905, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216043226\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-09-29T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-12-02T00:00:00\",\n        \"processedDate\": \"2016-12-12T15:42:34\",\n        \"closingDate\": \"2016-11-17T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Vince Cosamplece\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15271,\n        \"propertyAddress\": \"300 S Collier Blvd, 1606, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216032874\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-09-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-10-19T00:00:00\",\n        \"processedDate\": \"2016-10-20T12:56:37\",\n        \"closingDate\": \"2016-10-19T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15274,\n        \"propertyAddress\": \"900 N Collier Blvd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-09-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-10-03T00:00:00\",\n        \"processedDate\": \"2016-10-03T15:14:30\",\n        \"closingDate\": \"2016-10-03T00:00:00\",\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15275,\n        \"propertyAddress\": \"530 S Collier Boulevard, 402, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216057647\",\n        \"listDate\": \"2016-10-03T00:00:00\",\n        \"expiredDate\": \"2017-06-07T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15290,\n        \"propertyAddress\": \"490 Tarpon Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216062081\",\n        \"listDate\": \"2016-10-04T00:00:00\",\n        \"expiredDate\": \"2017-05-10T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15310,\n        \"propertyAddress\": \"493 Tallwood St, A103, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2162896\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-09-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-09-30T00:00:00\",\n        \"processedDate\": \"2016-10-05T10:02:51\",\n        \"closingDate\": \"2016-09-30T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15314,\n        \"propertyAddress\": \"828 Whiskey Creek Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216060871\",\n        \"listDate\": \"2016-10-05T00:00:00\",\n        \"expiredDate\": \"2019-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15357,\n        \"propertyAddress\": \"22614 Island Lakes Dr, Estero, FL 33928\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216057957\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-10-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-11-16T00:00:00\",\n        \"processedDate\": \"2016-11-17T13:14:00\",\n        \"closingDate\": \"2016-11-16T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Peter samplent\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Boston\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15359,\n        \"propertyAddress\": \"908 Panama Ct , 201, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216063667\",\n        \"listDate\": \"2016-10-11T00:00:00\",\n        \"expiredDate\": \"2018-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-04-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-06-18T00:00:00\",\n        \"processedDate\": \"2018-06-19T15:12:55\",\n        \"closingDate\": \"2018-06-18T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15362,\n        \"propertyAddress\": \"351 Barfield Dr , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"216062563w\",\n        \"listDate\": \"2016-10-05T00:00:00\",\n        \"expiredDate\": \"2018-04-30T00:00:00\",\n        \"withdrawnDate\": \"2017-01-07T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15369,\n        \"propertyAddress\": \"865 Sea Dune Ln, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2141513\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-10-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-11-04T00:00:00\",\n        \"processedDate\": \"2016-11-07T12:41:46\",\n        \"closingDate\": \"2016-11-04T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15373,\n        \"propertyAddress\": \"940 Cape Marco Dr , 1402, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"216063560WD1\",\n        \"listDate\": \"2016-10-06T00:00:00\",\n        \"expiredDate\": \"2018-12-31T00:00:00\",\n        \"withdrawnDate\": \"2018-09-11T12:47:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15377,\n        \"propertyAddress\": \"380 Seaview Ct, 1801, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216059640\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-10-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-01-04T00:00:00\",\n        \"processedDate\": \"2017-01-05T16:17:55\",\n        \"closingDate\": \"2017-01-04T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Dave Flowsamples\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15379,\n        \"propertyAddress\": \"980 Huron Ct , 302, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216063684\",\n        \"listDate\": \"2016-10-06T00:00:00\",\n        \"expiredDate\": \"2020-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15390,\n        \"propertyAddress\": \"520 S Collier Blvd , 904, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216064250\",\n        \"listDate\": \"2016-10-13T00:00:00\",\n        \"expiredDate\": \"2017-08-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-05-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-06-08T00:00:00\",\n        \"processedDate\": \"2017-06-09T11:12:09\",\n        \"closingDate\": \"2017-06-08T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15409,\n        \"propertyAddress\": \"500 Saturn Court, 065, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216064119\",\n        \"listDate\": \"2016-10-17T00:00:00\",\n        \"expiredDate\": \"2017-07-10T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-12-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-03-09T00:00:00\",\n        \"processedDate\": \"2017-03-10T09:54:07\",\n        \"closingDate\": \"2017-03-09T00:00:00\",\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15410,\n        \"propertyAddress\": \"1440 Caxambas Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215069638\",\n        \"listDate\": \"2016-01-14T00:00:00\",\n        \"expiredDate\": \"2017-12-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-07-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-11-17T00:00:00\",\n        \"processedDate\": \"2017-11-17T14:37:34\",\n        \"closingDate\": \"2017-11-15T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15438,\n        \"propertyAddress\": \"315 S Hideaway Circle , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"214059965\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-10-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-11-01T00:00:00\",\n        \"processedDate\": \"2016-11-08T12:52:56\",\n        \"closingDate\": \"2016-11-04T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cullen Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15497,\n        \"propertyAddress\": \"100 N Collier Blvd, 1002, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2164144\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-10-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-12-29T00:00:00\",\n        \"processedDate\": \"2016-12-29T09:56:39\",\n        \"closingDate\": \"2016-12-29T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cynthia Csampleogin\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15520,\n        \"propertyAddress\": \"860 Panama Ct , 209, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216067040\",\n        \"listDate\": \"2016-10-27T00:00:00\",\n        \"expiredDate\": \"2017-10-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15536,\n        \"propertyAddress\": \"4000 Royal Marco Way , PH927, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216067571\",\n        \"listDate\": \"2016-10-28T00:00:00\",\n        \"expiredDate\": \"2017-04-28T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15563,\n        \"propertyAddress\": \"740 N Collier Boulevard, 305, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216068037\",\n        \"listDate\": \"2016-10-31T00:00:00\",\n        \"expiredDate\": \"2017-06-17T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-03-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-03-15T00:00:00\",\n        \"processedDate\": \"2017-03-15T13:20:42\",\n        \"closingDate\": \"2017-03-15T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": \"Rosemarie Tsampleagni\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15569,\n        \"propertyAddress\": \"370 Cottage Ct , Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"216061961DD\",\n        \"listDate\": \"2016-11-01T00:00:00\",\n        \"expiredDate\": \"2017-07-31T00:00:00\",\n        \"withdrawnDate\": \"2017-05-10T00:00:00\",\n        \"pendingDate\": \"2017-03-16T00:00:00\",\n        \"cancelDate\": \"2017-05-10T00:00:00\",\n        \"estimatedClosingDate\": \"2017-05-15T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15574,\n        \"propertyAddress\": \"87 Collier Blvd , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"216054766WD\",\n        \"listDate\": \"2016-08-29T00:00:00\",\n        \"expiredDate\": \"2019-12-31T00:00:00\",\n        \"withdrawnDate\": \"2018-04-09T16:22:05\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15575,\n        \"propertyAddress\": \"179 Dan River Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216067582\",\n        \"listDate\": \"2016-10-28T00:00:00\",\n        \"expiredDate\": \"2017-07-28T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-06-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-08-10T00:00:00\",\n        \"processedDate\": \"2017-08-10T15:10:10\",\n        \"closingDate\": \"2017-08-10T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15579,\n        \"propertyAddress\": \"62 Gulfport Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216068202\",\n        \"listDate\": \"2016-11-01T00:00:00\",\n        \"expiredDate\": \"2017-05-28T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-01-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-02-23T00:00:00\",\n        \"processedDate\": \"2017-02-24T15:32:59\",\n        \"closingDate\": \"2017-02-16T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15580,\n        \"propertyAddress\": \"490 Balsam Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216068367\",\n        \"listDate\": \"2016-11-01T00:00:00\",\n        \"expiredDate\": \"2017-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-02-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-03-28T00:00:00\",\n        \"processedDate\": \"2017-03-28T15:56:47\",\n        \"closingDate\": \"2017-03-28T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Robin Taylsample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15584,\n        \"propertyAddress\": \"760 Partridge Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216067262\",\n        \"listDate\": \"2016-11-02T00:00:00\",\n        \"expiredDate\": \"2017-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-12-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-04-18T00:00:00\",\n        \"processedDate\": \"2017-04-18T14:45:08\",\n        \"closingDate\": \"2017-04-18T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15585,\n        \"propertyAddress\": \"465 Bald Eagle Drive, 013, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216062411\",\n        \"listDate\": \"2016-11-02T00:00:00\",\n        \"expiredDate\": \"2017-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-12-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-12-21T00:00:00\",\n        \"processedDate\": \"2016-12-22T13:43:13\",\n        \"closingDate\": \"2016-12-21T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15597,\n        \"propertyAddress\": \"850 S Collier Blvd , 1702, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216066675\",\n        \"listDate\": \"2016-11-03T00:00:00\",\n        \"expiredDate\": \"2017-10-14T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-12-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-01-18T00:00:00\",\n        \"processedDate\": \"2017-01-20T16:21:22\",\n        \"closingDate\": \"2017-01-18T00:00:00\",\n        \"listAgent\": \"Cynthia Csampleogin\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15609,\n        \"propertyAddress\": \"33 Copperfield Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216068926\",\n        \"listDate\": \"2016-11-03T00:00:00\",\n        \"expiredDate\": \"2017-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-12-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-02-28T00:00:00\",\n        \"processedDate\": \"2017-03-01T14:51:07\",\n        \"closingDate\": \"2017-02-28T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15630,\n        \"propertyAddress\": \"482 Tarpon Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216068680\",\n        \"listDate\": \"2016-11-04T00:00:00\",\n        \"expiredDate\": \"2017-08-11T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-02-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-02-28T00:00:00\",\n        \"processedDate\": \"2017-02-22T11:36:43\",\n        \"closingDate\": \"2017-02-22T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15645,\n        \"propertyAddress\": \"140 Seaview Court, 103N, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216069282\",\n        \"listDate\": \"2016-11-07T00:00:00\",\n        \"expiredDate\": \"2017-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15646,\n        \"propertyAddress\": \"5000 Royal Marco Way , 535, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216069000\",\n        \"listDate\": \"2016-11-07T00:00:00\",\n        \"expiredDate\": \"2017-11-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-06-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-07-31T00:00:00\",\n        \"processedDate\": \"2017-07-31T17:31:31\",\n        \"closingDate\": \"2017-07-31T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Darlene sampleddy\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15657,\n        \"propertyAddress\": \"870 S Collier Blvd , 401, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216069625\",\n        \"listDate\": \"2016-11-07T00:00:00\",\n        \"expiredDate\": \"2017-05-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-02-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-02-27T00:00:00\",\n        \"processedDate\": \"2017-02-28T14:49:12\",\n        \"closingDate\": \"2017-02-27T00:00:00\",\n        \"listAgent\": \"Cullen Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15662,\n        \"propertyAddress\": \"213 S Collier Blvd , 2-104, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216069928\",\n        \"listDate\": \"2016-11-08T00:00:00\",\n        \"expiredDate\": \"2017-05-07T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jacki Stsampletegos\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15669,\n        \"propertyAddress\": \"6000 Royal Marco Way , 557, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"216068950\",\n        \"listDate\": \"2016-11-08T00:00:00\",\n        \"expiredDate\": \"2017-10-31T00:00:00\",\n        \"withdrawnDate\": \"2017-09-26T14:28:16\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15674,\n        \"propertyAddress\": \"632 Waterside Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-11-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-11-30T00:00:00\",\n        \"processedDate\": \"2016-11-30T12:58:46\",\n        \"closingDate\": \"2016-11-30T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15683,\n        \"propertyAddress\": \"987 Hunt Ct, Marco Island, FL 33937\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2160385\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-11-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-11-28T00:00:00\",\n        \"processedDate\": \"2016-11-28T17:03:44\",\n        \"closingDate\": \"2016-11-23T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Dave Flowsamples\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15684,\n        \"propertyAddress\": \"1281 Mimosa Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216070320\",\n        \"listDate\": \"2016-11-09T00:00:00\",\n        \"expiredDate\": \"2017-11-03T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-12-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-01-13T00:00:00\",\n        \"processedDate\": \"2016-12-28T15:06:04\",\n        \"closingDate\": \"2016-12-27T00:00:00\",\n        \"listAgent\": \"Cynthia Csampleogin\",\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15686,\n        \"propertyAddress\": \"1153 Whiteheart Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216070258\",\n        \"listDate\": \"2016-11-09T00:00:00\",\n        \"expiredDate\": \"2018-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-02-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-03-16T00:00:00\",\n        \"processedDate\": \"2018-03-16T14:08:30\",\n        \"closingDate\": \"2018-03-16T00:00:00\",\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15716,\n        \"propertyAddress\": \"1061 S Collier Blvd , 401, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216070921\",\n        \"listDate\": \"2016-11-11T00:00:00\",\n        \"expiredDate\": \"2017-01-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15717,\n        \"propertyAddress\": \"140 Seaview Ct , 1806S, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216070821\",\n        \"listDate\": \"2016-11-11T00:00:00\",\n        \"expiredDate\": \"2017-06-01T00:00:00\",\n        \"withdrawnDate\": \"2017-04-07T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15747,\n        \"propertyAddress\": \"890 S Collier Blvd, Unit 906, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-11-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-11-15T00:00:00\",\n        \"processedDate\": \"2016-11-15T11:40:27\",\n        \"closingDate\": \"2016-11-15T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15750,\n        \"propertyAddress\": \"1470 Caxambas Ct , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"216071716\",\n        \"listDate\": \"2016-11-15T00:00:00\",\n        \"expiredDate\": \"2017-11-15T00:00:00\",\n        \"withdrawnDate\": \"2017-09-26T14:42:35\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15757,\n        \"propertyAddress\": \"215 Seahorse Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216066674\",\n        \"listDate\": \"2016-11-15T00:00:00\",\n        \"expiredDate\": \"2017-10-17T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-05-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-05-31T00:00:00\",\n        \"processedDate\": \"2017-05-31T16:16:05\",\n        \"closingDate\": \"2017-05-31T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15760,\n        \"propertyAddress\": \"61 Peach Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216040614\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-11-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-12-15T00:00:00\",\n        \"processedDate\": \"2016-12-16T11:17:53\",\n        \"closingDate\": \"2016-12-15T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cindy sampleyf\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Brighton\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15770,\n        \"propertyAddress\": \"1071 Winterberry Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216070359\",\n        \"listDate\": \"2016-11-16T00:00:00\",\n        \"expiredDate\": \"2017-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-03-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-04-27T00:00:00\",\n        \"processedDate\": \"2017-04-25T13:20:27\",\n        \"closingDate\": \"2017-04-24T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15772,\n        \"propertyAddress\": \"380 Seaview Ct , 1003, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216072009\",\n        \"listDate\": \"2016-11-16T00:00:00\",\n        \"expiredDate\": \"2017-11-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15782,\n        \"propertyAddress\": \"1001 Baltic , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216071588\",\n        \"listDate\": \"2016-11-17T00:00:00\",\n        \"expiredDate\": \"2017-09-20T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-04-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-05-30T00:00:00\",\n        \"processedDate\": \"2017-05-31T15:51:32\",\n        \"closingDate\": \"2017-05-30T00:00:00\",\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15785,\n        \"propertyAddress\": \"58 N Collier Blvd , 1914, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216072285\",\n        \"listDate\": \"2016-11-17T00:00:00\",\n        \"expiredDate\": \"2017-10-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15792,\n        \"propertyAddress\": \"1500 Winterberry Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216071329\",\n        \"listDate\": \"2016-11-18T00:00:00\",\n        \"expiredDate\": \"2017-08-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-07-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-08-24T00:00:00\",\n        \"processedDate\": \"2017-08-24T15:14:55\",\n        \"closingDate\": \"2017-08-24T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15800,\n        \"propertyAddress\": \"1100 S Collier Blvd , 1520, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216072669\",\n        \"listDate\": \"2016-11-18T00:00:00\",\n        \"expiredDate\": \"2017-08-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-03-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-04-11T00:00:00\",\n        \"processedDate\": \"2017-04-13T10:55:11\",\n        \"closingDate\": \"2017-04-11T00:00:00\",\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15814,\n        \"propertyAddress\": \"440 Seaview Ct , 712, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216067193\",\n        \"listDate\": \"2016-11-21T00:00:00\",\n        \"expiredDate\": \"2017-10-21T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-01-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-02-28T00:00:00\",\n        \"processedDate\": \"2017-02-28T15:16:06\",\n        \"closingDate\": \"2017-02-28T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15822,\n        \"propertyAddress\": \"1291 Bluebird Ave , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216071377\",\n        \"listDate\": \"2016-11-21T00:00:00\",\n        \"expiredDate\": \"2017-08-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-02-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-05-03T00:00:00\",\n        \"processedDate\": \"2017-04-17T13:24:00\",\n        \"closingDate\": \"2017-04-14T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15833,\n        \"propertyAddress\": \"1610 Copeland Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-11-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-11-22T00:00:00\",\n        \"processedDate\": \"2016-11-22T16:16:35\",\n        \"closingDate\": \"2016-11-22T00:00:00\",\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15843,\n        \"propertyAddress\": \"1411 Forrest Ct , Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"216072494DD\",\n        \"listDate\": \"2016-11-22T00:00:00\",\n        \"expiredDate\": \"2017-11-30T00:00:00\",\n        \"withdrawnDate\": \"2017-04-03T00:00:00\",\n        \"pendingDate\": \"2017-03-02T00:00:00\",\n        \"cancelDate\": \"2017-04-03T00:00:00\",\n        \"estimatedClosingDate\": \"2017-05-01T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15844,\n        \"propertyAddress\": \"1241 Ember Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216073491\",\n        \"listDate\": \"2016-11-22T00:00:00\",\n        \"expiredDate\": \"2018-05-25T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-10-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-12-08T00:00:00\",\n        \"processedDate\": \"2017-12-08T15:03:37\",\n        \"closingDate\": \"2017-12-04T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15847,\n        \"propertyAddress\": \"1069 N Collier Boulevard , 216, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216079264\",\n        \"listDate\": \"2016-11-23T00:00:00\",\n        \"expiredDate\": \"2017-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-02-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-04-21T00:00:00\",\n        \"processedDate\": \"2017-04-25T16:06:40\",\n        \"closingDate\": \"2017-04-21T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15867,\n        \"propertyAddress\": \"1035 Blue Hill Creek Dr, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"LANS112816IHE\",\n        \"listDate\": \"2016-11-25T00:00:00\",\n        \"expiredDate\": \"2019-11-14T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15870,\n        \"propertyAddress\": \"1751 Ludlow Rd , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"216071452\",\n        \"listDate\": \"2016-11-28T00:00:00\",\n        \"expiredDate\": \"2017-11-02T00:00:00\",\n        \"withdrawnDate\": \"2017-02-21T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15874,\n        \"propertyAddress\": \"58 N Collier Blvd , 402, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216073128\",\n        \"listDate\": \"2016-11-28T00:00:00\",\n        \"expiredDate\": \"2017-11-20T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-02-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-04-03T00:00:00\",\n        \"processedDate\": \"2017-04-05T15:03:04\",\n        \"closingDate\": \"2017-04-03T00:00:00\",\n        \"listAgent\": \"Cynthia Csampleogin\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15875,\n        \"propertyAddress\": \"1751 Ludlow Rd , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"216074102\",\n        \"listDate\": \"2016-11-28T00:00:00\",\n        \"expiredDate\": \"2017-11-02T00:00:00\",\n        \"withdrawnDate\": \"2017-02-21T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15884,\n        \"propertyAddress\": \"573 Seaview Court, D1, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216073920\",\n        \"listDate\": \"2016-11-29T00:00:00\",\n        \"expiredDate\": \"2017-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-11-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-12-21T00:00:00\",\n        \"processedDate\": \"2016-12-23T13:13:43\",\n        \"closingDate\": \"2016-12-21T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15885,\n        \"propertyAddress\": \"1540 Caxambas Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216074089DD\",\n        \"listDate\": \"2016-11-29T00:00:00\",\n        \"expiredDate\": \"2018-02-28T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15886,\n        \"propertyAddress\": \"1079 Bald Eagle Dr , N-202, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"216074145WD\",\n        \"listDate\": \"2016-11-21T00:00:00\",\n        \"expiredDate\": \"2018-04-30T00:00:00\",\n        \"withdrawnDate\": \"2017-05-15T09:59:07\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15888,\n        \"propertyAddress\": \"270 N Collier Blvd , 501, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216073741\",\n        \"listDate\": \"2016-11-29T00:00:00\",\n        \"expiredDate\": \"2017-08-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15901,\n        \"propertyAddress\": \"1561 Kingston Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216071279\",\n        \"listDate\": \"2016-11-29T00:00:00\",\n        \"expiredDate\": \"2017-11-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-01-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-01-20T00:00:00\",\n        \"processedDate\": \"2017-01-20T14:57:12\",\n        \"closingDate\": \"2017-01-20T00:00:00\",\n        \"listAgent\": \"Dave Flowsamples\",\n        \"sellAgent\": \"Dave Flowsamples\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15904,\n        \"propertyAddress\": \"58 N Collier Blvd , 504, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216074501\",\n        \"listDate\": \"2016-11-28T00:00:00\",\n        \"expiredDate\": \"2016-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15907,\n        \"propertyAddress\": \"970 Cape Marco Dr, 706, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2163998\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-11-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-12-22T00:00:00\",\n        \"processedDate\": \"2016-12-22T12:34:20\",\n        \"closingDate\": \"2016-12-22T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15914,\n        \"propertyAddress\": \"1310 Andalusia , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216074510\",\n        \"listDate\": \"2016-12-01T00:00:00\",\n        \"expiredDate\": \"2017-05-27T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jacki Stsampletegos\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15915,\n        \"propertyAddress\": \"1124 Strawberry Ct , Marco Island, FL 34145-3556\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216075020\",\n        \"listDate\": \"2016-12-01T00:00:00\",\n        \"expiredDate\": \"2017-10-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15923,\n        \"propertyAddress\": \"140 Palm St , 213, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216074541\",\n        \"listDate\": \"2016-12-01T00:00:00\",\n        \"expiredDate\": \"2017-05-14T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-12-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-01-05T00:00:00\",\n        \"processedDate\": \"2017-01-05T12:56:37\",\n        \"closingDate\": \"2017-01-05T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15924,\n        \"propertyAddress\": \"889 Collier Ct , 2-305, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216075069\",\n        \"listDate\": \"2016-12-01T00:00:00\",\n        \"expiredDate\": \"2017-04-28T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15926,\n        \"propertyAddress\": \"3560 Islandwalk Cir, Naples, FL 34119\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216060573\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-11-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-12-21T00:00:00\",\n        \"processedDate\": \"2016-12-21T15:07:31\",\n        \"closingDate\": \"2016-12-21T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Helen Baksample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Dorchester\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15927,\n        \"propertyAddress\": \"246 Hideaway Cir N, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"216074831\",\n        \"listDate\": \"2016-12-01T00:00:00\",\n        \"expiredDate\": \"2017-11-10T00:00:00\",\n        \"withdrawnDate\": \"2017-09-25T14:18:59\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15933,\n        \"propertyAddress\": \"1251 Ember Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216075147\",\n        \"listDate\": \"2016-12-02T00:00:00\",\n        \"expiredDate\": \"2017-07-25T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-01-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-02-14T00:00:00\",\n        \"processedDate\": \"2017-02-14T14:31:41\",\n        \"closingDate\": \"2017-02-14T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15934,\n        \"propertyAddress\": \"722 Hideaway Cir W, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216075305\",\n        \"listDate\": \"2016-12-02T00:00:00\",\n        \"expiredDate\": \"2017-11-10T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-05-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-06-16T00:00:00\",\n        \"processedDate\": \"2017-06-19T10:52:51\",\n        \"closingDate\": \"2017-06-16T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15946,\n        \"propertyAddress\": \"156 Richmond Ct , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"216073193WD\",\n        \"listDate\": \"2016-11-17T00:00:00\",\n        \"expiredDate\": \"2018-04-30T00:00:00\",\n        \"withdrawnDate\": \"2017-08-10T10:25:51\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15975,\n        \"propertyAddress\": \"319 N Barfield Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2164050\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-11-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-01-05T00:00:00\",\n        \"processedDate\": \"2017-01-06T11:52:08\",\n        \"closingDate\": \"2017-01-05T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Robin Taylsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15978,\n        \"propertyAddress\": \"45 Algonquin Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216050663\",\n        \"listDate\": \"2016-08-10T00:00:00\",\n        \"expiredDate\": \"2017-05-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15993,\n        \"propertyAddress\": \"184 Dan River Ct , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"216076980\",\n        \"listDate\": \"2016-12-09T00:00:00\",\n        \"expiredDate\": \"2017-07-12T00:00:00\",\n        \"withdrawnDate\": \"2017-08-03T10:10:02\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Robin Taylsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 15998,\n        \"propertyAddress\": \"2000 Royal Marco Way , 2-303, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216075137\",\n        \"listDate\": \"2016-12-09T00:00:00\",\n        \"expiredDate\": \"2017-05-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-02-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-02-17T00:00:00\",\n        \"processedDate\": \"2017-02-17T12:16:00\",\n        \"closingDate\": \"2017-02-17T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16035,\n        \"propertyAddress\": \"320 Seaview Ct, 2-306, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216052056\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-12-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-01-16T00:00:00\",\n        \"processedDate\": \"2017-01-09T15:14:47\",\n        \"closingDate\": \"2017-01-06T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"ML Msamplede\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16039,\n        \"propertyAddress\": \"261 S Collier Blvd , 207, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"216078025DD\",\n        \"listDate\": \"2016-12-14T00:00:00\",\n        \"expiredDate\": \"2017-06-14T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-01-30T00:00:00\",\n        \"cancelDate\": \"2017-02-04T00:00:00\",\n        \"estimatedClosingDate\": \"2017-02-28T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Sue Ssampleughnessy\",\n        \"sellAgent\": \"Sue Ssampleughnessy\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16043,\n        \"propertyAddress\": \"2000 Royal Marco Way , 308, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216077528\",\n        \"listDate\": \"2016-12-13T00:00:00\",\n        \"expiredDate\": \"2017-07-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16057,\n        \"propertyAddress\": \"190 N Collier Blvd , M10, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216077034\",\n        \"listDate\": \"2016-12-14T00:00:00\",\n        \"expiredDate\": \"2017-08-29T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-05-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-06-27T00:00:00\",\n        \"processedDate\": \"2017-06-28T10:53:06\",\n        \"closingDate\": \"2017-06-27T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16059,\n        \"propertyAddress\": \"167 N Collier Blvd , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216078296\",\n        \"listDate\": \"2016-12-15T00:00:00\",\n        \"expiredDate\": \"2017-08-14T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-06-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-08-04T00:00:00\",\n        \"processedDate\": \"2017-08-07T12:21:11\",\n        \"closingDate\": \"2017-08-04T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16073,\n        \"propertyAddress\": \"220 Seaview Ct , 315, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216077707\",\n        \"listDate\": \"2016-12-14T00:00:00\",\n        \"expiredDate\": \"2017-09-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Dave Flowsamples\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16074,\n        \"propertyAddress\": \"340 Wild Orchid Ln , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216078571\",\n        \"listDate\": \"2016-12-15T00:00:00\",\n        \"expiredDate\": \"2017-12-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-02-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-04-18T00:00:00\",\n        \"processedDate\": \"2017-04-19T14:36:55\",\n        \"closingDate\": \"2017-04-18T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16080,\n        \"propertyAddress\": \"1550 San Marco Rd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2141913\",\n        \"listDate\": \"2016-12-17T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-12-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-01-20T00:00:00\",\n        \"processedDate\": \"2017-01-20T14:48:43\",\n        \"closingDate\": \"2017-01-20T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16098,\n        \"propertyAddress\": \"775 Milan Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-12-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-12-20T00:00:00\",\n        \"processedDate\": \"2016-12-20T15:32:14\",\n        \"closingDate\": \"2016-12-20T00:00:00\",\n        \"listAgent\": \"Lura Jsamplees\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16115,\n        \"propertyAddress\": \"1051 Swallow Ave, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-12-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-01-06T00:00:00\",\n        \"processedDate\": \"2017-01-06T11:32:14\",\n        \"closingDate\": \"2017-01-06T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Sue Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16116,\n        \"propertyAddress\": \"1264 Whiteheart Ave, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-11-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-01-10T00:00:00\",\n        \"processedDate\": \"2017-01-10T12:17:49\",\n        \"closingDate\": \"2017-01-10T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Sue Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16117,\n        \"propertyAddress\": \"670 Club Marco Cir , 102, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216078665\",\n        \"listDate\": \"2016-12-22T00:00:00\",\n        \"expiredDate\": \"2017-09-12T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-01-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-02-28T00:00:00\",\n        \"processedDate\": \"2017-03-01T13:37:06\",\n        \"closingDate\": \"2017-02-28T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16128,\n        \"propertyAddress\": \"850 S Collier Blvd, 1104, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-12-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-01-31T00:00:00\",\n        \"processedDate\": \"2017-01-31T14:46:13\",\n        \"closingDate\": \"2017-01-30T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16144,\n        \"propertyAddress\": \"182 Coral Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216080090\",\n        \"listDate\": \"2016-12-28T00:00:00\",\n        \"expiredDate\": \"2017-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-05-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-06-15T00:00:00\",\n        \"processedDate\": \"2017-06-16T12:54:34\",\n        \"closingDate\": \"2017-06-15T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16151,\n        \"propertyAddress\": \"131 June Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216079823\",\n        \"listDate\": \"2016-12-29T00:00:00\",\n        \"expiredDate\": \"2017-09-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-07-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-08-16T00:00:00\",\n        \"processedDate\": \"2017-08-02T13:13:36\",\n        \"closingDate\": \"2017-08-01T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16168,\n        \"propertyAddress\": \"1170 Osprey Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217000577\",\n        \"listDate\": \"2017-01-03T00:00:00\",\n        \"expiredDate\": \"2018-03-21T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-01-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-02-26T00:00:00\",\n        \"processedDate\": \"2018-02-26T13:15:39\",\n        \"closingDate\": \"2018-02-26T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16179,\n        \"propertyAddress\": \"1064 Gayer Way , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216080793\",\n        \"listDate\": \"2016-12-30T00:00:00\",\n        \"expiredDate\": \"2017-06-27T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16180,\n        \"propertyAddress\": \"Rose Court, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217000747\",\n        \"listDate\": \"2017-01-03T00:00:00\",\n        \"expiredDate\": \"2018-01-02T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16204,\n        \"propertyAddress\": \"Marco Island Rental Properties, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-01-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-01-05T00:00:00\",\n        \"processedDate\": \"2017-01-05T12:43:36\",\n        \"closingDate\": \"2017-01-05T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16206,\n        \"propertyAddress\": \"1402 Collier Blvd , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217001220\",\n        \"listDate\": \"2017-01-05T00:00:00\",\n        \"expiredDate\": \"2017-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-05-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-06-08T00:00:00\",\n        \"processedDate\": \"2017-06-02T12:54:04\",\n        \"closingDate\": \"2017-06-01T00:00:00\",\n        \"listAgent\": \"Steve Shocksampley\",\n        \"sellAgent\": \"Steve Shocksampley\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16210,\n        \"propertyAddress\": \"700 Inlet Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216080204\",\n        \"listDate\": \"2017-01-02T00:00:00\",\n        \"expiredDate\": \"2017-12-16T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16214,\n        \"propertyAddress\": \"945 Royal Marco Way , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217001298\",\n        \"listDate\": \"2017-01-05T00:00:00\",\n        \"expiredDate\": \"2017-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16256,\n        \"propertyAddress\": \"356 S Heathwood Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217002821\",\n        \"listDate\": \"2017-01-09T00:00:00\",\n        \"expiredDate\": \"2017-05-09T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Lura Jsamplees\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16262,\n        \"propertyAddress\": \"1215 Edington Pl , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217001389\",\n        \"listDate\": \"2017-01-09T00:00:00\",\n        \"expiredDate\": \"2017-07-03T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-04-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-05-19T00:00:00\",\n        \"processedDate\": \"2017-05-25T11:56:41\",\n        \"closingDate\": \"2017-05-19T00:00:00\",\n        \"listAgent\": \"Bill Fsamplentz (Hail Mary Home)\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Broad Avenue\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16270,\n        \"propertyAddress\": \"1202 Edington Pl, B101, Marco Island, FL, 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"217002740\",\n        \"listDate\": \"2017-01-11T00:00:00\",\n        \"expiredDate\": \"2018-10-12T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16277,\n        \"propertyAddress\": \"361 Periwinkle Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217001428\",\n        \"listDate\": \"2017-01-12T00:00:00\",\n        \"expiredDate\": \"2017-07-04T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16278,\n        \"propertyAddress\": \"641 Diplomat Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217002318\",\n        \"listDate\": \"2017-01-12T00:00:00\",\n        \"expiredDate\": \"2017-12-20T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-03-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-04-18T00:00:00\",\n        \"processedDate\": \"2017-04-18T14:56:09\",\n        \"closingDate\": \"2017-04-18T00:00:00\",\n        \"listAgent\": \"Lori Hollsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16280,\n        \"propertyAddress\": \"3000 Royal Marco Way , 3-519, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"217002596\",\n        \"listDate\": \"2017-01-12T00:00:00\",\n        \"expiredDate\": \"2017-10-09T00:00:00\",\n        \"withdrawnDate\": \"2017-05-17T13:38:46\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16283,\n        \"propertyAddress\": \"123 Sea Lavender Ln , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217003445\",\n        \"listDate\": \"2017-01-12T00:00:00\",\n        \"expiredDate\": \"2018-01-06T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16291,\n        \"propertyAddress\": \"140 Seaview Ct , S-603, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217002959\",\n        \"listDate\": \"2017-01-12T00:00:00\",\n        \"expiredDate\": \"2017-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-01-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-03-06T00:00:00\",\n        \"processedDate\": \"2017-03-07T11:08:56\",\n        \"closingDate\": \"2017-03-03T00:00:00\",\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16292,\n        \"propertyAddress\": \"320 Seaview Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-01-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-01-13T00:00:00\",\n        \"processedDate\": \"2017-01-13T12:49:06\",\n        \"closingDate\": \"2017-01-13T00:00:00\",\n        \"listAgent\": \"Barbara Massample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16301,\n        \"propertyAddress\": \"1865 San Marco Road , E-2, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216055474\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-01-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-02-15T00:00:00\",\n        \"processedDate\": \"2017-02-21T15:24:47\",\n        \"closingDate\": \"2017-02-15T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16309,\n        \"propertyAddress\": \"1857 San Marco Rd , A-301, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217001307\",\n        \"listDate\": \"2017-01-13T00:00:00\",\n        \"expiredDate\": \"2017-12-29T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-09-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-11-16T00:00:00\",\n        \"processedDate\": \"2017-11-20T15:53:56\",\n        \"closingDate\": \"2017-11-17T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16310,\n        \"propertyAddress\": \"1258 Winterberry Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217003969\",\n        \"listDate\": \"2017-01-13T00:00:00\",\n        \"expiredDate\": \"2017-11-10T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16320,\n        \"propertyAddress\": \"1320 Riverhead, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-10-22T00:00:00\",\n        \"cancelDate\": \"2017-05-16T00:00:00\",\n        \"estimatedClosingDate\": \"2017-12-31T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16321,\n        \"propertyAddress\": \"1024 Hartley St, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216065117\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-01-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-02-27T00:00:00\",\n        \"processedDate\": \"2017-02-27T14:37:28\",\n        \"closingDate\": \"2017-02-27T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Lura Jsamplees\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16322,\n        \"propertyAddress\": \"1020 S Collier Boulevard, 503, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217004463\",\n        \"listDate\": \"2017-01-16T00:00:00\",\n        \"expiredDate\": \"2017-07-11T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-03-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-04-28T00:00:00\",\n        \"processedDate\": \"2017-05-01T14:50:31\",\n        \"closingDate\": \"2017-04-28T00:00:00\",\n        \"listAgent\": \"Jacki Stsampletegos\",\n        \"sellAgent\": \"Jacki Stsampletegos\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16323,\n        \"propertyAddress\": \"1020 S Collier Blvd , 204, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217004512\",\n        \"listDate\": \"2017-01-16T00:00:00\",\n        \"expiredDate\": \"2017-07-12T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jacki Stsampletegos\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16330,\n        \"propertyAddress\": \"87 N Collier Boulevard , Unit D-2, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2163441\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-01-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-01-27T00:00:00\",\n        \"processedDate\": \"2017-01-27T15:08:10\",\n        \"closingDate\": \"2017-01-27T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Sherrie Pfeffsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16339,\n        \"propertyAddress\": \"754 Nautilus Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217003474\",\n        \"listDate\": \"2017-01-16T00:00:00\",\n        \"expiredDate\": \"2017-10-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-03-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-05-05T00:00:00\",\n        \"processedDate\": \"2017-05-05T15:26:33\",\n        \"closingDate\": \"2017-05-05T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16342,\n        \"propertyAddress\": \"609 Seaview Ct , R-3, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217003351\",\n        \"listDate\": \"2017-01-17T00:00:00\",\n        \"expiredDate\": \"2017-09-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-02-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-04-05T00:00:00\",\n        \"processedDate\": \"2017-04-05T13:11:02\",\n        \"closingDate\": \"2017-04-05T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Robin Taylsample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16347,\n        \"propertyAddress\": \"10910 Oak Island Road, 202, Bonita Springs, FL 34135\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217004850\",\n        \"listDate\": \"2017-01-17T00:00:00\",\n        \"expiredDate\": \"2017-07-17T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-01-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-03-31T00:00:00\",\n        \"processedDate\": \"2017-03-31T15:53:34\",\n        \"closingDate\": \"2017-03-31T00:00:00\",\n        \"listAgent\": \"Roxanne Jsampleke\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Boston\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16348,\n        \"propertyAddress\": \"380 Seaview Court, 207, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217004939\",\n        \"listDate\": \"2017-01-17T00:00:00\",\n        \"expiredDate\": \"2017-07-10T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16368,\n        \"propertyAddress\": \"132 Shorecrest Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"PETE010419IHE\",\n        \"listDate\": \"2017-01-19T00:00:00\",\n        \"expiredDate\": \"2019-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Lori Hollsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16371,\n        \"propertyAddress\": \"1631 Begonia Ct , Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"217005489DD\",\n        \"listDate\": \"2017-01-19T00:00:00\",\n        \"expiredDate\": \"2017-10-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-03-28T00:00:00\",\n        \"cancelDate\": \"2017-04-07T00:00:00\",\n        \"estimatedClosingDate\": \"2017-06-07T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": \"Vince Cosamplece\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16382,\n        \"propertyAddress\": \"1150 Cara St, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"2164203\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-01-17T00:00:00\",\n        \"cancelDate\": \"2017-01-20T00:00:00\",\n        \"estimatedClosingDate\": \"2017-03-15T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16383,\n        \"propertyAddress\": \"1150 Cara St, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-01-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-03-15T00:00:00\",\n        \"processedDate\": \"2017-03-03T14:15:57\",\n        \"closingDate\": \"2017-03-03T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16384,\n        \"propertyAddress\": \"688 West Elkcam Cir, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-01-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-02-15T00:00:00\",\n        \"processedDate\": \"2017-02-16T13:47:42\",\n        \"closingDate\": \"2017-02-15T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16385,\n        \"propertyAddress\": \"840 South Collier Blvd, 801, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-01-03T00:00:00\",\n        \"cancelDate\": \"2017-01-20T00:00:00\",\n        \"estimatedClosingDate\": \"2017-02-15T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16393,\n        \"propertyAddress\": \"1071 Blue Hill Creek Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217005768\",\n        \"listDate\": \"2017-01-20T00:00:00\",\n        \"expiredDate\": \"2018-01-16T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16394,\n        \"propertyAddress\": \"1189 Strawberry Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217005809\",\n        \"listDate\": \"2017-01-20T00:00:00\",\n        \"expiredDate\": \"2017-06-12T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16418,\n        \"propertyAddress\": \"500 Sand Hill Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217004510\",\n        \"listDate\": \"2017-01-24T00:00:00\",\n        \"expiredDate\": \"2017-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-02-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-04-06T00:00:00\",\n        \"processedDate\": \"2017-03-16T12:36:53\",\n        \"closingDate\": \"2017-03-16T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16421,\n        \"propertyAddress\": \"840 S Collier Boulevard , 801, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-01-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-02-15T00:00:00\",\n        \"processedDate\": \"2017-02-15T15:05:57\",\n        \"closingDate\": \"2017-02-15T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16424,\n        \"propertyAddress\": \"530 S Collier Blvd , 201, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217004548\",\n        \"listDate\": \"2017-01-24T00:00:00\",\n        \"expiredDate\": \"2017-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16426,\n        \"propertyAddress\": \"190 N Collier Blvd , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217005160\",\n        \"listDate\": \"2017-01-24T00:00:00\",\n        \"expiredDate\": \"2018-04-24T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-02-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-03-19T00:00:00\",\n        \"processedDate\": \"2018-03-19T14:19:11\",\n        \"closingDate\": \"2018-03-19T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16427,\n        \"propertyAddress\": \"335 Marquesas Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217006262\",\n        \"listDate\": \"2017-01-25T00:00:00\",\n        \"expiredDate\": \"2017-08-21T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-06-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-07-26T00:00:00\",\n        \"processedDate\": \"2017-07-27T12:31:12\",\n        \"closingDate\": \"2017-07-26T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16433,\n        \"propertyAddress\": \"480 S Collier Blvd , 1208, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217007039\",\n        \"listDate\": \"2017-01-25T00:00:00\",\n        \"expiredDate\": \"2018-01-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-01-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-02-28T00:00:00\",\n        \"processedDate\": \"2017-03-03T15:15:49\",\n        \"closingDate\": \"2017-02-28T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16438,\n        \"propertyAddress\": \"376 Leatherfern Ln , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217003563\",\n        \"listDate\": \"2017-01-25T00:00:00\",\n        \"expiredDate\": \"2017-12-05T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16442,\n        \"propertyAddress\": \"2011 Sheffield Ave , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217004326\",\n        \"listDate\": \"2017-01-26T00:00:00\",\n        \"expiredDate\": \"2018-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16452,\n        \"propertyAddress\": \"1660 Galleon Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217007391\",\n        \"listDate\": \"2017-01-26T00:00:00\",\n        \"expiredDate\": \"2017-07-17T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-04-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-06-30T00:00:00\",\n        \"processedDate\": \"2017-07-06T10:23:43\",\n        \"closingDate\": \"2017-06-22T00:00:00\",\n        \"listAgent\": \"Jacki Stsampletegos\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16454,\n        \"propertyAddress\": \"6000 Royal Marco Way, 653, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216061952\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-01-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-02-09T00:00:00\",\n        \"processedDate\": \"2017-02-09T13:06:44\",\n        \"closingDate\": \"2017-02-09T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16459,\n        \"propertyAddress\": \"731 Lime , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217007410\",\n        \"listDate\": \"2017-01-27T00:00:00\",\n        \"expiredDate\": \"2018-01-23T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-04-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-06-30T00:00:00\",\n        \"processedDate\": \"2017-06-30T11:29:14\",\n        \"closingDate\": \"2017-06-30T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Jacki Stsampletegos\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16460,\n        \"propertyAddress\": \"1068 Cottonwood Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217007422\",\n        \"listDate\": \"2017-01-27T00:00:00\",\n        \"expiredDate\": \"2018-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-04-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-05-16T00:00:00\",\n        \"processedDate\": \"2018-05-16T13:43:31\",\n        \"closingDate\": \"2018-05-16T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16473,\n        \"propertyAddress\": \"1261 Stone Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217007789\",\n        \"listDate\": \"2017-01-27T00:00:00\",\n        \"expiredDate\": \"2017-06-25T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Paul Strsampleg\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16476,\n        \"propertyAddress\": \"1041 S Collier Blvd , 203, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217007783\",\n        \"listDate\": \"2017-01-27T00:00:00\",\n        \"expiredDate\": \"2017-10-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-02-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-03-03T00:00:00\",\n        \"processedDate\": \"2017-03-07T11:16:00\",\n        \"closingDate\": \"2017-03-06T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16478,\n        \"propertyAddress\": \"14835 Tybee Island Dr, Naples, FL 34119\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"216030973\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-01-18T00:00:00\",\n        \"cancelDate\": \"2017-01-27T00:00:00\",\n        \"estimatedClosingDate\": \"2017-02-28T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Walter Psamplerick\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Broad Avenue\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16484,\n        \"propertyAddress\": \"250 Rockhill Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-01-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-02-02T00:00:00\",\n        \"processedDate\": \"2017-02-03T09:29:37\",\n        \"closingDate\": \"2017-02-02T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cullen Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16485,\n        \"propertyAddress\": \"500 Saturn Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217007033\",\n        \"listDate\": \"2017-01-30T00:00:00\",\n        \"expiredDate\": \"2017-10-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-06-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-07-31T00:00:00\",\n        \"processedDate\": \"2017-08-01T09:16:34\",\n        \"closingDate\": \"2017-07-31T00:00:00\",\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": \"Cathy Bsampledie\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16491,\n        \"propertyAddress\": \"350 Seabreeze Dr , Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"217008191DD\",\n        \"listDate\": \"2017-01-30T00:00:00\",\n        \"expiredDate\": \"2017-12-02T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-09-15T00:00:00\",\n        \"cancelDate\": \"2017-10-02T00:00:00\",\n        \"estimatedClosingDate\": \"2017-10-06T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16493,\n        \"propertyAddress\": \"112 Marco Villa Dr, 112, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2164455\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-01-29T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-03-09T00:00:00\",\n        \"processedDate\": \"2017-03-10T11:18:56\",\n        \"closingDate\": \"2017-03-09T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16512,\n        \"propertyAddress\": \"133 Vintage Bay Dr, A-13, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2170067\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-01-31T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-04-07T00:00:00\",\n        \"processedDate\": \"2017-04-10T14:12:13\",\n        \"closingDate\": \"2017-04-04T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16513,\n        \"propertyAddress\": \"500 Saturn Ct, 68, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2160073\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-01-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-02-20T00:00:00\",\n        \"processedDate\": \"2017-02-20T16:22:02\",\n        \"closingDate\": \"2017-02-17T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cathy Bsampledie\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16514,\n        \"propertyAddress\": \"440 Seaview Ct , 1709, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"217006353\",\n        \"listDate\": \"2017-01-23T00:00:00\",\n        \"expiredDate\": \"2019-12-31T00:00:00\",\n        \"withdrawnDate\": \"2019-03-20T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16519,\n        \"propertyAddress\": \"855 Hideaway Cir W, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217008179\",\n        \"listDate\": \"2017-01-31T00:00:00\",\n        \"expiredDate\": \"2018-01-18T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-03-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-03-31T00:00:00\",\n        \"processedDate\": \"2017-03-31T15:47:19\",\n        \"closingDate\": \"2017-03-31T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16520,\n        \"propertyAddress\": \"154 Peach Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2164482\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-01-29T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-03-15T00:00:00\",\n        \"processedDate\": \"2017-03-16T09:35:43\",\n        \"closingDate\": \"2017-03-15T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Helga Wsamplezold\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16529,\n        \"propertyAddress\": \"140 Seaview Ct, 704N, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216078872\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-01-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-02-10T00:00:00\",\n        \"processedDate\": \"2017-02-10T15:27:50\",\n        \"closingDate\": \"2017-02-10T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cathy Bsampledie\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16540,\n        \"propertyAddress\": \"1143 Blue Hill Creek Dr , Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"217008973DD\",\n        \"listDate\": \"2017-02-02T00:00:00\",\n        \"expiredDate\": \"2018-04-16T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-01-26T00:00:00\",\n        \"cancelDate\": \"2018-02-05T00:00:00\",\n        \"estimatedClosingDate\": \"2018-03-15T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16544,\n        \"propertyAddress\": \"1806 Menorca Ct, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217009678\",\n        \"listDate\": \"2017-02-03T00:00:00\",\n        \"expiredDate\": \"2018-01-26T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16557,\n        \"propertyAddress\": \"311 Hazelcrest St , Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"217009827DD\",\n        \"listDate\": \"2017-02-03T00:00:00\",\n        \"expiredDate\": \"2018-02-04T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-06-16T00:00:00\",\n        \"cancelDate\": \"2017-06-23T00:00:00\",\n        \"estimatedClosingDate\": \"2017-07-31T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Lori Hollsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16563,\n        \"propertyAddress\": \"3301  Club Center Blvd, 201 ,Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"BROO020117IHE\",\n        \"listDate\": \"2017-02-03T00:00:00\",\n        \"expiredDate\": \"2018-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16568,\n        \"propertyAddress\": \"Gulfcoast & Atlantic, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-01-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-02-06T00:00:00\",\n        \"processedDate\": \"2017-02-06T15:07:20\",\n        \"closingDate\": \"2017-02-06T00:00:00\",\n        \"listAgent\": \"Angelica samplerews\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16570,\n        \"propertyAddress\": \"227 Edgewater Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217010176\",\n        \"listDate\": \"2017-02-06T00:00:00\",\n        \"expiredDate\": \"2017-11-02T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-06-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-08-28T00:00:00\",\n        \"processedDate\": \"2017-08-29T12:50:11\",\n        \"closingDate\": \"2017-08-28T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16572,\n        \"propertyAddress\": \"821 S Barfield Drive, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217010304\",\n        \"listDate\": \"2017-02-06T00:00:00\",\n        \"expiredDate\": \"2019-01-09T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16573,\n        \"propertyAddress\": \"1020 Dill Ct , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"217010359\",\n        \"listDate\": \"2017-02-06T00:00:00\",\n        \"expiredDate\": \"2019-02-06T00:00:00\",\n        \"withdrawnDate\": \"2019-01-10T11:53:26\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16585,\n        \"propertyAddress\": \"261 S Collier Blvd , 207, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216078025\",\n        \"listDate\": \"2016-12-14T00:00:00\",\n        \"expiredDate\": \"2017-06-14T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-04-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-05-02T00:00:00\",\n        \"processedDate\": \"2017-05-01T11:26:43\",\n        \"closingDate\": \"2017-04-28T00:00:00\",\n        \"listAgent\": \"Sue Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16618,\n        \"propertyAddress\": \"890 S Collier Blvd , 106, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217010710\",\n        \"listDate\": \"2017-02-09T00:00:00\",\n        \"expiredDate\": \"2018-01-29T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-02-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-02-28T00:00:00\",\n        \"processedDate\": \"2017-02-28T14:01:36\",\n        \"closingDate\": \"2017-02-28T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16622,\n        \"propertyAddress\": \"550 S Barfield Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-02-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-04-11T00:00:00\",\n        \"processedDate\": \"2017-04-12T15:10:48\",\n        \"closingDate\": \"2017-04-11T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16624,\n        \"propertyAddress\": \"1171 Martinique Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217010903\",\n        \"listDate\": \"2017-02-09T00:00:00\",\n        \"expiredDate\": \"2017-11-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-04-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-06-14T00:00:00\",\n        \"processedDate\": \"2017-06-14T11:03:49\",\n        \"closingDate\": \"2017-06-14T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Gwen Tolssample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16637,\n        \"propertyAddress\": \"354 Gumbo Limbo Ln , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217011663\",\n        \"listDate\": \"2017-02-10T00:00:00\",\n        \"expiredDate\": \"2017-08-06T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-04-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-06-02T00:00:00\",\n        \"processedDate\": \"2017-06-05T15:06:13\",\n        \"closingDate\": \"2017-06-02T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16651,\n        \"propertyAddress\": \"561 Hammock Ct, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-02-13T00:00:00\",\n        \"cancelDate\": \"2017-02-17T00:00:00\",\n        \"estimatedClosingDate\": \"2017-04-05T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16657,\n        \"propertyAddress\": \"945 Caxambas Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217010668\",\n        \"listDate\": \"2017-02-14T00:00:00\",\n        \"expiredDate\": \"2018-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16658,\n        \"propertyAddress\": \"941 Caxambas , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217010680\",\n        \"listDate\": \"2017-01-18T00:00:00\",\n        \"expiredDate\": \"2018-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16660,\n        \"propertyAddress\": \"1320 Riverhead PYMT 1, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-02-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-02-13T00:00:00\",\n        \"processedDate\": \"2017-02-14T14:39:25\",\n        \"closingDate\": \"2017-02-13T00:00:00\",\n        \"listAgent\": \"Paul Strsampleg\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16664,\n        \"propertyAddress\": \"1080 S Collier Blvd , 301, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217011572\",\n        \"listDate\": \"2017-02-14T00:00:00\",\n        \"expiredDate\": \"2017-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-04-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-06-01T00:00:00\",\n        \"processedDate\": \"2017-06-02T16:18:37\",\n        \"closingDate\": \"2017-06-01T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16697,\n        \"propertyAddress\": \"1200 Edington Pl , A304, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217012148\",\n        \"listDate\": \"2017-02-16T00:00:00\",\n        \"expiredDate\": \"2017-11-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-08-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-10-11T00:00:00\",\n        \"processedDate\": \"2017-10-11T14:00:50\",\n        \"closingDate\": \"2017-10-06T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16717,\n        \"propertyAddress\": \"1020 South Collier Blvd, 705, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"2163584DD\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-02-17T00:00:00\",\n        \"cancelDate\": \"2017-02-28T00:00:00\",\n        \"estimatedClosingDate\": \"2017-03-27T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Jacki Stsampletegos\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16718,\n        \"propertyAddress\": \"473 Barfield Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-02-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-02-17T00:00:00\",\n        \"processedDate\": \"2017-02-17T13:05:10\",\n        \"closingDate\": \"2017-02-17T00:00:00\",\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16724,\n        \"propertyAddress\": \"440 Seaview Ct , 111, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217012304\",\n        \"listDate\": \"2017-02-16T00:00:00\",\n        \"expiredDate\": \"2017-11-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-08-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-09-07T00:00:00\",\n        \"processedDate\": \"2017-09-19T10:06:16\",\n        \"closingDate\": \"2017-09-07T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16741,\n        \"propertyAddress\": \"60 Covewood Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217013968\",\n        \"listDate\": \"2017-02-20T00:00:00\",\n        \"expiredDate\": \"2017-11-18T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16744,\n        \"propertyAddress\": \"140 Seaview Ct , N-106, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217013533\",\n        \"listDate\": \"2017-02-20T00:00:00\",\n        \"expiredDate\": \"2017-09-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-05-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-05-31T00:00:00\",\n        \"processedDate\": \"2017-05-31T14:39:10\",\n        \"closingDate\": \"2017-05-31T00:00:00\",\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16747,\n        \"propertyAddress\": \"200 Stevens Landing Dr , B-404, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217014131\",\n        \"listDate\": \"2017-02-20T00:00:00\",\n        \"expiredDate\": \"2017-10-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-03-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-04-10T00:00:00\",\n        \"processedDate\": \"2017-04-06T16:10:18\",\n        \"closingDate\": \"2017-04-05T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16754,\n        \"propertyAddress\": \"740 N Collier Blvd, 206, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216078434\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-02-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-04-13T00:00:00\",\n        \"processedDate\": \"2017-04-13T12:32:10\",\n        \"closingDate\": \"2017-04-07T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"ML Msamplede\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16763,\n        \"propertyAddress\": \"740 N Collier Blvd , 2-402, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217014334\",\n        \"listDate\": \"2017-02-21T00:00:00\",\n        \"expiredDate\": \"2018-04-16T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-02-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-03-19T00:00:00\",\n        \"processedDate\": \"2018-03-20T12:40:09\",\n        \"closingDate\": \"2018-03-19T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16773,\n        \"propertyAddress\": \"1751 Ludlow Rd , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217014539\",\n        \"listDate\": \"2017-02-21T00:00:00\",\n        \"expiredDate\": \"2017-11-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-05-31T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-06-06T00:00:00\",\n        \"processedDate\": \"2017-06-07T12:52:25\",\n        \"closingDate\": \"2017-06-06T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16784,\n        \"propertyAddress\": \"741 Austin Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217014538\",\n        \"listDate\": \"2017-02-22T00:00:00\",\n        \"expiredDate\": \"2018-01-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-03-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-04-28T00:00:00\",\n        \"processedDate\": \"2017-05-01T12:28:12\",\n        \"closingDate\": \"2017-04-28T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16787,\n        \"propertyAddress\": \"132 Saxon St , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217009392\",\n        \"listDate\": \"2017-02-23T00:00:00\",\n        \"expiredDate\": \"2017-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-07-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-08-03T00:00:00\",\n        \"processedDate\": \"2017-08-07T11:57:13\",\n        \"closingDate\": \"2017-08-04T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": \"Darlene sampleddy\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16804,\n        \"propertyAddress\": \"305 Grapewood Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217013911\",\n        \"listDate\": \"2017-02-24T00:00:00\",\n        \"expiredDate\": \"2018-05-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16809,\n        \"propertyAddress\": \"1420 Firwood Ct , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"217015201\",\n        \"listDate\": \"2017-02-24T00:00:00\",\n        \"expiredDate\": \"2018-02-13T00:00:00\",\n        \"withdrawnDate\": \"2017-05-30T14:57:41\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Rosemarie Tsampleagni\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16830,\n        \"propertyAddress\": \"1240 Ember Ct, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"DURS022717IHE\",\n        \"listDate\": \"2017-02-27T00:00:00\",\n        \"expiredDate\": \"2018-02-24T00:00:00\",\n        \"withdrawnDate\": \"2017-09-25T13:59:17\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Sue Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16831,\n        \"propertyAddress\": \"160 Waterside Cir , 201, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217015130\",\n        \"listDate\": \"2017-02-27T00:00:00\",\n        \"expiredDate\": \"2018-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-05-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-06-27T00:00:00\",\n        \"processedDate\": \"2018-06-28T12:41:08\",\n        \"closingDate\": \"2018-06-27T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16838,\n        \"propertyAddress\": \"1830 Menorca Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217015769EX\",\n        \"listDate\": \"2017-02-27T00:00:00\",\n        \"expiredDate\": \"2018-10-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jacki Stsampletegos\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16849,\n        \"propertyAddress\": \"1030 Baltic , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217014971\",\n        \"listDate\": \"2017-02-28T00:00:00\",\n        \"expiredDate\": \"2018-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16850,\n        \"propertyAddress\": \"1040 Baltic , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217015003\",\n        \"listDate\": \"2017-02-28T00:00:00\",\n        \"expiredDate\": \"2018-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16858,\n        \"propertyAddress\": \"291 S Collier Blvd, 407, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-02-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-03-21T00:00:00\",\n        \"processedDate\": \"2017-03-22T14:16:17\",\n        \"closingDate\": \"2017-03-21T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16867,\n        \"propertyAddress\": \"58 N Collier Blvd , 2202, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"217014592\",\n        \"listDate\": \"2017-02-28T00:00:00\",\n        \"expiredDate\": \"2017-12-04T00:00:00\",\n        \"withdrawnDate\": \"2017-04-20T16:43:45\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16874,\n        \"propertyAddress\": \"291 SE Collier Blvd, 407, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"2170440\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": \"2017-03-20T12:12:41\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16875,\n        \"propertyAddress\": \"Duplicated - 291 SE Collier Blvd, 407, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": \"2017-03-22T13:14:10\",\n        \"pendingDate\": \"2017-02-27T00:00:00\",\n        \"cancelDate\": \"2017-03-22T00:00:00\",\n        \"estimatedClosingDate\": \"2017-03-22T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16877,\n        \"propertyAddress\": \"250 Rockhill Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217016340\",\n        \"listDate\": \"2017-02-27T00:00:00\",\n        \"expiredDate\": \"2018-02-27T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-03-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-04-21T00:00:00\",\n        \"processedDate\": \"2017-04-24T14:34:44\",\n        \"closingDate\": \"2017-04-21T00:00:00\",\n        \"listAgent\": \"Cullen Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16878,\n        \"propertyAddress\": \"58 N Collier Blvd, 307, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217010953\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-02-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-04-20T00:00:00\",\n        \"processedDate\": \"2017-04-28T13:00:05\",\n        \"closingDate\": \"2017-04-20T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16879,\n        \"propertyAddress\": \"609 Crescent St, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2162342\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-02-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-04-12T00:00:00\",\n        \"processedDate\": \"2017-04-13T11:05:17\",\n        \"closingDate\": \"2017-04-12T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16880,\n        \"propertyAddress\": \"561 Hammock Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217004345\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-02-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-04-28T00:00:00\",\n        \"processedDate\": \"2017-05-01T12:18:56\",\n        \"closingDate\": \"2017-04-28T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16886,\n        \"propertyAddress\": \"266 Polynesia Court , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"DECK030217IHE\",\n        \"listDate\": \"2017-03-02T00:00:00\",\n        \"expiredDate\": \"2018-02-27T00:00:00\",\n        \"withdrawnDate\": \"2017-03-23T11:24:49\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16888,\n        \"propertyAddress\": \"1476 Honeysuckle Ave , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217014630\",\n        \"listDate\": \"2017-03-02T00:00:00\",\n        \"expiredDate\": \"2017-10-11T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-03-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-04-28T00:00:00\",\n        \"processedDate\": \"2017-05-01T15:10:47\",\n        \"closingDate\": \"2017-04-28T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": \"Christina Alsamplen\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Boston\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16900,\n        \"propertyAddress\": \"1370 Salvadore Ct, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"2162639DD\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": \"2017-03-28T18:04:58\",\n        \"pendingDate\": \"2017-02-23T00:00:00\",\n        \"cancelDate\": \"2017-03-28T00:00:00\",\n        \"estimatedClosingDate\": \"2017-04-27T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Helga Wsamplezold\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16906,\n        \"propertyAddress\": \"2000 Royal Marco Way , 2-403, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217016870\",\n        \"listDate\": \"2017-03-03T00:00:00\",\n        \"expiredDate\": \"2018-03-21T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-03-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-05-09T00:00:00\",\n        \"processedDate\": \"2017-05-09T12:52:00\",\n        \"closingDate\": \"2017-05-09T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16916,\n        \"propertyAddress\": \"1012 SE Collier Blvd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2170358\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-03-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-04-10T00:00:00\",\n        \"processedDate\": \"2017-04-12T15:03:21\",\n        \"closingDate\": \"2017-04-10T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jacki Stsampletegos\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16917,\n        \"propertyAddress\": \"1041 SE Collier Blvd, 205, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217010969\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-03-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-05-01T00:00:00\",\n        \"processedDate\": \"2017-05-01T13:17:05\",\n        \"closingDate\": \"2017-05-01T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Gwen Tolssample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16918,\n        \"propertyAddress\": \"730 S Collier Blvd , 605, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217016216\",\n        \"listDate\": \"2017-03-06T00:00:00\",\n        \"expiredDate\": \"2017-11-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16924,\n        \"propertyAddress\": \"961 Collier Ct , 105, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217017794\",\n        \"listDate\": \"2017-03-06T00:00:00\",\n        \"expiredDate\": \"2018-01-03T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16931,\n        \"propertyAddress\": \"1136 Edington Pl , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217017984\",\n        \"listDate\": \"2017-03-07T00:00:00\",\n        \"expiredDate\": \"2017-11-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-03-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-03-24T00:00:00\",\n        \"processedDate\": \"2017-03-22T14:55:49\",\n        \"closingDate\": \"2017-03-21T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16933,\n        \"propertyAddress\": \"1381 Caxambas Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217017725\",\n        \"listDate\": \"2017-03-07T00:00:00\",\n        \"expiredDate\": \"2018-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16956,\n        \"propertyAddress\": \"1100 S Collier Blvd, 724, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2163843\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-03-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-05-04T00:00:00\",\n        \"processedDate\": \"2017-05-08T15:33:08\",\n        \"closingDate\": \"2017-05-04T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"ML Msamplede\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16957,\n        \"propertyAddress\": \"260 Seaview Ct, 1107, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-03-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-05-01T00:00:00\",\n        \"processedDate\": \"2017-05-01T14:28:58\",\n        \"closingDate\": \"2017-05-01T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Helga Wsamplezold\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16959,\n        \"propertyAddress\": \"601 Hernando PYMT 1 Drive , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-03-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-03-09T00:00:00\",\n        \"processedDate\": \"2017-03-09T15:12:17\",\n        \"closingDate\": \"2017-03-09T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16964,\n        \"propertyAddress\": \"980 Cape Marco Dr , 802, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217018747\",\n        \"listDate\": \"2017-03-09T00:00:00\",\n        \"expiredDate\": \"2018-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-12-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-12-29T00:00:00\",\n        \"processedDate\": \"2017-12-29T15:31:17\",\n        \"closingDate\": \"2017-12-29T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16966,\n        \"propertyAddress\": \"240 Seaview Ct , 403, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217012940\",\n        \"listDate\": \"2017-03-09T00:00:00\",\n        \"expiredDate\": \"2017-11-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16972,\n        \"propertyAddress\": \"240 N Collier Blvd , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217018825\",\n        \"listDate\": \"2017-03-09T00:00:00\",\n        \"expiredDate\": \"2017-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-03-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-03-31T00:00:00\",\n        \"processedDate\": \"2017-03-30T15:37:47\",\n        \"closingDate\": \"2017-03-30T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16976,\n        \"propertyAddress\": \"1411 Butterfield Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217018755\",\n        \"listDate\": \"2017-03-09T00:00:00\",\n        \"expiredDate\": \"2018-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16980,\n        \"propertyAddress\": \"1085 Bald Eagle Dr , C201, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217012874\",\n        \"listDate\": \"2017-03-10T00:00:00\",\n        \"expiredDate\": \"2017-11-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-03-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-05-15T00:00:00\",\n        \"processedDate\": \"2017-05-08T16:11:29\",\n        \"closingDate\": \"2017-05-05T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16985,\n        \"propertyAddress\": \"881 Partridge PYMT 2 Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-02-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-03-10T00:00:00\",\n        \"processedDate\": \"2017-03-13T11:11:03\",\n        \"closingDate\": \"2017-03-10T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 16998,\n        \"propertyAddress\": \"940 Beaver Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217019418\",\n        \"listDate\": \"2017-03-13T00:00:00\",\n        \"expiredDate\": \"2017-09-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-03-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-04-25T00:00:00\",\n        \"processedDate\": \"2017-04-27T16:13:21\",\n        \"closingDate\": \"2017-04-25T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17000,\n        \"propertyAddress\": \"433 Hartley St , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217015156\",\n        \"listDate\": \"2017-03-13T00:00:00\",\n        \"expiredDate\": \"2017-09-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-08-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-10-27T00:00:00\",\n        \"processedDate\": \"2017-11-02T14:22:43\",\n        \"closingDate\": \"2017-10-31T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17004,\n        \"propertyAddress\": \"5000 Royal  Marco Way, 830, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216060982\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-03-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-04-28T00:00:00\",\n        \"processedDate\": \"2017-05-01T13:23:38\",\n        \"closingDate\": \"2017-04-28T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17015,\n        \"propertyAddress\": \"4000 Royal Marco Way , 723, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217019933\",\n        \"listDate\": \"2017-03-14T00:00:00\",\n        \"expiredDate\": \"2017-12-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17028,\n        \"propertyAddress\": \"1079 Bald Eagle Dr , PHN-2, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217019733\",\n        \"listDate\": \"2017-03-15T00:00:00\",\n        \"expiredDate\": \"2018-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-03-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-04-16T00:00:00\",\n        \"processedDate\": \"2018-04-16T14:34:32\",\n        \"closingDate\": \"2018-04-16T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17032,\n        \"propertyAddress\": \"1476 Honeysuckle Ave, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"217014630DD\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": \"2017-03-16T00:00:00\",\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Christina Alsamplen\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Boston\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17050,\n        \"propertyAddress\": \"851 Partridge Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216074220\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-02-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-03-28T00:00:00\",\n        \"processedDate\": \"2017-03-28T15:12:58\",\n        \"closingDate\": \"2017-03-28T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cullen Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17058,\n        \"propertyAddress\": \"994 Spruce Ct, 7, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216050160\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-03-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-03-23T00:00:00\",\n        \"processedDate\": \"2017-03-23T11:33:33\",\n        \"closingDate\": \"2017-03-23T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Sue Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17072,\n        \"propertyAddress\": \"1110 Abbeville Ct, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217020612\",\n        \"listDate\": \"2017-03-17T00:00:00\",\n        \"expiredDate\": \"2018-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17073,\n        \"propertyAddress\": \"471 Driftwood Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-03-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-04-27T00:00:00\",\n        \"processedDate\": \"2017-04-28T11:55:29\",\n        \"closingDate\": \"2017-04-27T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17089,\n        \"propertyAddress\": \"221 Hideaway Cir N, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217021259\",\n        \"listDate\": \"2017-03-21T00:00:00\",\n        \"expiredDate\": \"2017-09-11T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17090,\n        \"propertyAddress\": \"266 Polynesia Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217016450\",\n        \"listDate\": \"2017-03-22T00:00:00\",\n        \"expiredDate\": \"2018-02-27T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-07-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-08-14T00:00:00\",\n        \"processedDate\": \"2017-08-14T15:02:06\",\n        \"closingDate\": \"2017-08-14T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17112,\n        \"propertyAddress\": \"3000 Royal Marco Way , PH-M, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"217021796DD\",\n        \"listDate\": \"2017-03-24T00:00:00\",\n        \"expiredDate\": \"2018-04-01T00:00:00\",\n        \"withdrawnDate\": \"2018-03-05T00:00:00\",\n        \"pendingDate\": \"2018-01-20T00:00:00\",\n        \"cancelDate\": \"2018-03-05T00:00:00\",\n        \"estimatedClosingDate\": \"2018-04-16T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17136,\n        \"propertyAddress\": \"1231 Spanish Ct, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"26071596DD\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-03-19T00:00:00\",\n        \"cancelDate\": \"2017-04-03T00:00:00\",\n        \"estimatedClosingDate\": \"2017-05-10T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17137,\n        \"propertyAddress\": \"609 Herrnando Dr, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"217008392\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-03-16T00:00:00\",\n        \"cancelDate\": \"2017-03-16T00:00:00\",\n        \"estimatedClosingDate\": \"2017-04-12T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17138,\n        \"propertyAddress\": \"287 Shadowridge St, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216029956\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-03-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-04-21T00:00:00\",\n        \"processedDate\": \"2017-04-25T13:01:33\",\n        \"closingDate\": \"2017-04-21T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17150,\n        \"propertyAddress\": \"421 Elk Cir , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"217022829\",\n        \"listDate\": \"2017-03-28T00:00:00\",\n        \"expiredDate\": \"2018-03-27T00:00:00\",\n        \"withdrawnDate\": \"2017-08-08T14:44:06\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cullen Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17152,\n        \"propertyAddress\": \"1370 Salvadore Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2162639\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-03-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-04-20T00:00:00\",\n        \"processedDate\": \"2017-04-21T09:58:05\",\n        \"closingDate\": \"2017-04-20T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Helga Wsamplezold\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17153,\n        \"propertyAddress\": \"908 Collier Ct , 402, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217022726\",\n        \"listDate\": \"2017-03-28T00:00:00\",\n        \"expiredDate\": \"2017-10-28T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-08-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-10-06T00:00:00\",\n        \"processedDate\": \"2017-10-06T15:11:36\",\n        \"closingDate\": \"2017-10-06T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17161,\n        \"propertyAddress\": \"609 Hernando Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217008392\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-03-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-04-12T00:00:00\",\n        \"processedDate\": \"2017-04-13T11:08:28\",\n        \"closingDate\": \"2017-04-12T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17183,\n        \"propertyAddress\": \"500 Saturn Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217015316\",\n        \"listDate\": \"2017-03-30T00:00:00\",\n        \"expiredDate\": \"2017-07-17T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17187,\n        \"propertyAddress\": \"740 N Collier Blvd , 2-304, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"217023552DD\",\n        \"listDate\": \"2017-03-30T00:00:00\",\n        \"expiredDate\": \"2018-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-03-24T00:00:00\",\n        \"cancelDate\": \"2018-04-09T00:00:00\",\n        \"estimatedClosingDate\": \"2018-04-24T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Rosemarie Tsampleagni\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17197,\n        \"propertyAddress\": \"730 Elkcam Cir , 203, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217023838\",\n        \"listDate\": \"2017-03-31T00:00:00\",\n        \"expiredDate\": \"2019-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17198,\n        \"propertyAddress\": \"114 Coco Plum Ln , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217015289\",\n        \"listDate\": \"2017-03-31T00:00:00\",\n        \"expiredDate\": \"2018-02-23T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-04-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-08-22T00:00:00\",\n        \"processedDate\": \"2017-08-16T14:51:13\",\n        \"closingDate\": \"2017-08-16T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17200,\n        \"propertyAddress\": \"1240 Ember Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217023927\",\n        \"listDate\": \"2017-03-31T00:00:00\",\n        \"expiredDate\": \"2018-02-24T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Sue Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17206,\n        \"propertyAddress\": \"1036 E Inlet Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217023970\",\n        \"listDate\": \"2017-03-31T00:00:00\",\n        \"expiredDate\": \"2017-10-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Sue Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17214,\n        \"propertyAddress\": \"1411 Forrest Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216072494\",\n        \"listDate\": \"2016-11-22T00:00:00\",\n        \"expiredDate\": \"2017-11-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-04-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-05-29T00:00:00\",\n        \"processedDate\": \"2017-05-22T14:15:43\",\n        \"closingDate\": \"2017-05-19T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17219,\n        \"propertyAddress\": \"970 Cape Marco Unit 1104, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-01-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-04-03T00:00:00\",\n        \"processedDate\": \"2017-04-04T13:07:01\",\n        \"closingDate\": \"2017-04-03T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17231,\n        \"propertyAddress\": \"465 Bald Eagle Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217024526\",\n        \"listDate\": \"2017-04-04T00:00:00\",\n        \"expiredDate\": \"2017-11-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-04-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-05-26T00:00:00\",\n        \"processedDate\": \"2017-05-30T15:13:11\",\n        \"closingDate\": \"2017-05-26T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17232,\n        \"propertyAddress\": \"1211 Blue Hill Creek Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217024691\",\n        \"listDate\": \"2017-03-31T00:00:00\",\n        \"expiredDate\": \"2018-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-12-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-01-30T00:00:00\",\n        \"processedDate\": \"2018-01-30T12:03:01\",\n        \"closingDate\": \"2018-01-30T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17262,\n        \"propertyAddress\": \"1631 Begonia Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217005489\",\n        \"listDate\": \"2017-01-19T00:00:00\",\n        \"expiredDate\": \"2017-10-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17264,\n        \"propertyAddress\": \"1771 Ludlow Rd , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217025206\",\n        \"listDate\": \"2017-04-07T00:00:00\",\n        \"expiredDate\": \"2017-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-04-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-06-22T00:00:00\",\n        \"processedDate\": \"2017-06-22T14:13:23\",\n        \"closingDate\": \"2017-06-22T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17267,\n        \"propertyAddress\": \"860 Panama Ct E, 117, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217025353\",\n        \"listDate\": \"2017-04-03T00:00:00\",\n        \"expiredDate\": \"2018-04-03T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Dave Flowsamples\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17273,\n        \"propertyAddress\": \"509 Echo Cir , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217025681\",\n        \"listDate\": \"2017-04-07T00:00:00\",\n        \"expiredDate\": \"2017-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-04-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-06-28T00:00:00\",\n        \"processedDate\": \"2017-06-28T12:31:09\",\n        \"closingDate\": \"2017-06-28T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17288,\n        \"propertyAddress\": \"940 Cape Marco Dr, 1903, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216070297\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-04-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-05-22T00:00:00\",\n        \"processedDate\": \"2017-05-23T11:03:57\",\n        \"closingDate\": \"2017-05-22T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17300,\n        \"propertyAddress\": \"260 Seaview Ct, 1711, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-04-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-05-05T00:00:00\",\n        \"processedDate\": \"2017-05-05T15:35:00\",\n        \"closingDate\": \"2017-05-05T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Helga Wsamplezold\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17310,\n        \"propertyAddress\": \"1000 S Collier Blvd , 803, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"217026269DD\",\n        \"listDate\": \"2017-04-11T00:00:00\",\n        \"expiredDate\": \"2018-04-04T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-06-24T00:00:00\",\n        \"cancelDate\": \"2017-08-23T00:00:00\",\n        \"estimatedClosingDate\": \"2017-08-25T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cullen Ssampleughnessy\",\n        \"sellAgent\": \"Cullen Ssampleughnessy\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17311,\n        \"propertyAddress\": \"147 Clyburn Way E, E-7, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217026392\",\n        \"listDate\": \"2017-04-10T00:00:00\",\n        \"expiredDate\": \"2018-04-10T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-02-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-03-14T00:00:00\",\n        \"processedDate\": \"2018-03-15T11:35:18\",\n        \"closingDate\": \"2018-03-14T00:00:00\",\n        \"listAgent\": \"Dave Flowsamples\",\n        \"sellAgent\": \"ML Msamplede\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17315,\n        \"propertyAddress\": \"741 S Collier Blvd, 301, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217026280\",\n        \"listDate\": \"2017-04-11T00:00:00\",\n        \"expiredDate\": \"2018-03-27T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17322,\n        \"propertyAddress\": \"14476 Jekyll Island Ct , Naples, FL 34119\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217026636\",\n        \"listDate\": \"2017-04-12T00:00:00\",\n        \"expiredDate\": \"2017-10-12T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-06-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-08-22T00:00:00\",\n        \"processedDate\": \"2017-08-22T15:05:42\",\n        \"closingDate\": \"2017-08-22T00:00:00\",\n        \"listAgent\": \"Sharon Kaltenbsamplen\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Bay Village\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17327,\n        \"propertyAddress\": \"3000 Royal Marco Way , 614, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"217026383W\",\n        \"listDate\": \"2017-04-01T00:00:00\",\n        \"expiredDate\": \"2018-04-15T00:00:00\",\n        \"withdrawnDate\": \"2018-02-13T16:58:15\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17337,\n        \"propertyAddress\": \"280 S Collier Blvd, 1604, Marco Island, FL 34146\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": \"2017-04-05T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-04-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-04-27T00:00:00\",\n        \"processedDate\": \"2017-04-27T13:28:33\",\n        \"closingDate\": \"2017-04-27T00:00:00\",\n        \"listAgent\": \"Robin Taylsample\",\n        \"sellAgent\": \"Robin Taylsample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17339,\n        \"propertyAddress\": \"280 S Collier Blvd , 1802, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217026047\",\n        \"listDate\": \"2017-04-10T00:00:00\",\n        \"expiredDate\": \"2017-10-10T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-05-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-08-17T00:00:00\",\n        \"processedDate\": \"2017-08-18T12:26:45\",\n        \"closingDate\": \"2017-08-17T00:00:00\",\n        \"listAgent\": \"Robin Taylsample\",\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17342,\n        \"propertyAddress\": \"260 Hideaway Cir, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2164839\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-04-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-05-08T00:00:00\",\n        \"processedDate\": \"2017-05-08T15:16:11\",\n        \"closingDate\": \"2017-05-08T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17352,\n        \"propertyAddress\": \"1161 N Collier Blvd , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217026812\",\n        \"listDate\": \"2017-04-14T00:00:00\",\n        \"expiredDate\": \"2018-01-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-05-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-07-19T00:00:00\",\n        \"processedDate\": \"2017-07-20T12:41:24\",\n        \"closingDate\": \"2017-07-19T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17382,\n        \"propertyAddress\": \"387 N Collier Blvd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217021540\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-04-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-05-31T00:00:00\",\n        \"processedDate\": \"2017-06-01T11:37:34\",\n        \"closingDate\": \"2017-05-31T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"ML Msamplede\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17386,\n        \"propertyAddress\": \"730 S Collier Blvd , 206, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217027474\",\n        \"listDate\": \"2017-04-18T00:00:00\",\n        \"expiredDate\": \"2017-10-14T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cynthia Csampleogin\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17396,\n        \"propertyAddress\": \"320 Seaview Ct, 1009, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217028133\",\n        \"listDate\": \"2017-04-19T00:00:00\",\n        \"expiredDate\": \"2018-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17406,\n        \"propertyAddress\": \"991 Collier Ct, A-212, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2170518\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-04-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-06-01T00:00:00\",\n        \"processedDate\": \"2017-06-01T15:01:19\",\n        \"closingDate\": \"2017-06-01T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17421,\n        \"propertyAddress\": \"1020 S Collier Blvd , 606, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217027864\",\n        \"listDate\": \"2017-04-17T00:00:00\",\n        \"expiredDate\": \"2017-10-17T00:00:00\",\n        \"withdrawnDate\": \"2017-07-03T15:55:26\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17429,\n        \"propertyAddress\": \"320 Seaview Ct , 1805, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217029034\",\n        \"listDate\": \"2017-04-24T00:00:00\",\n        \"expiredDate\": \"2018-04-17T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-07-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-08-07T00:00:00\",\n        \"processedDate\": \"2017-08-07T14:35:00\",\n        \"closingDate\": \"2017-08-07T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17440,\n        \"propertyAddress\": \"8924 Mustang Island Cir , Naples, FL 34113\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217026683\",\n        \"listDate\": \"2017-04-25T00:00:00\",\n        \"expiredDate\": \"2017-10-05T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17444,\n        \"propertyAddress\": \"1345 Whiteheart Ave, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217027973\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-04-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-07-21T00:00:00\",\n        \"processedDate\": \"2017-07-21T16:00:12\",\n        \"closingDate\": \"2017-07-21T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17446,\n        \"propertyAddress\": \"1742 Hummingbird Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-04-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-04-26T00:00:00\",\n        \"processedDate\": \"2017-04-26T15:43:29\",\n        \"closingDate\": \"2017-04-26T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17456,\n        \"propertyAddress\": \"978 Bonita Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217029051\",\n        \"listDate\": \"2017-04-24T00:00:00\",\n        \"expiredDate\": \"2018-04-04T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-01-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-03-02T00:00:00\",\n        \"processedDate\": \"2018-03-05T12:38:41\",\n        \"closingDate\": \"2018-03-02T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17468,\n        \"propertyAddress\": \"2000 Royal Marco Way , 2-509, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"217029848DD\",\n        \"listDate\": \"2017-04-27T00:00:00\",\n        \"expiredDate\": \"2019-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-02-07T00:00:00\",\n        \"cancelDate\": \"2019-02-19T00:00:00\",\n        \"estimatedClosingDate\": \"2019-02-27T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17470,\n        \"propertyAddress\": \"740 N Collier Blvd, 2-406, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216007297\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-04-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-05-12T00:00:00\",\n        \"processedDate\": \"2017-05-15T10:31:28\",\n        \"closingDate\": \"2017-05-12T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Gwen Tolssample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17475,\n        \"propertyAddress\": \"651 Seaview Ct, B-302, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2164346\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-04-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-05-26T00:00:00\",\n        \"processedDate\": \"2017-05-30T12:51:14\",\n        \"closingDate\": \"2017-05-26T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Janice samplegel\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17482,\n        \"propertyAddress\": \"240 Seaview Ct , 304, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"217030214DD\",\n        \"listDate\": \"2017-04-24T00:00:00\",\n        \"expiredDate\": \"2018-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-07-22T00:00:00\",\n        \"cancelDate\": \"2017-11-03T00:00:00\",\n        \"estimatedClosingDate\": \"2017-11-09T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": \"Vince Cosamplece\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17485,\n        \"propertyAddress\": \"1150 Ludlam Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217030159\",\n        \"listDate\": \"2017-04-28T00:00:00\",\n        \"expiredDate\": \"2018-04-11T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-10-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-11-11T00:00:00\",\n        \"processedDate\": \"2017-11-07T10:22:50\",\n        \"closingDate\": \"2017-11-06T00:00:00\",\n        \"listAgent\": \"Paul Strsampleg\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17488,\n        \"propertyAddress\": \"741 Barfield Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217030282\",\n        \"listDate\": \"2017-04-28T00:00:00\",\n        \"expiredDate\": \"2018-04-19T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Paul Strsampleg\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17490,\n        \"propertyAddress\": \"301  Lamplighter Dr, ,Marco Island, Florida, 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217030125\",\n        \"listDate\": \"2017-04-28T00:00:00\",\n        \"expiredDate\": \"2018-10-28T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-06-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-08-10T00:00:00\",\n        \"processedDate\": \"2018-08-14T10:37:46\",\n        \"closingDate\": \"2018-08-10T00:00:00\",\n        \"listAgent\": \"David Gape - samplsampleger\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17499,\n        \"propertyAddress\": \"741 Austin Court , Lot 14, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": \"2017-04-08T00:00:00\",\n        \"expiredDate\": \"2017-05-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-04-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-05-17T00:00:00\",\n        \"processedDate\": \"2017-05-18T12:45:19\",\n        \"closingDate\": \"2017-05-17T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17501,\n        \"propertyAddress\": \"4000 Royal Marco Way, 927, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218037496\",\n        \"listDate\": \"2018-05-24T00:00:00\",\n        \"expiredDate\": \"2018-06-04T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17502,\n        \"propertyAddress\": \"816 W Elkcam Cir , 301, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217030625\",\n        \"listDate\": \"2017-05-01T00:00:00\",\n        \"expiredDate\": \"2017-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17507,\n        \"propertyAddress\": \"990 Cape Marco Drive , 305, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2164769\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-04-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-07-06T00:00:00\",\n        \"processedDate\": \"2017-07-07T12:17:42\",\n        \"closingDate\": \"2017-06-30T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Janice samplegel\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17509,\n        \"propertyAddress\": \"500 Saturn Court , Unit 64, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-04-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-07-25T00:00:00\",\n        \"processedDate\": \"2017-07-27T12:27:06\",\n        \"closingDate\": \"2017-07-25T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cathy Bsampledie\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17511,\n        \"propertyAddress\": \"1501 Honeysuckle Ave , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217030502\",\n        \"listDate\": \"2017-05-01T00:00:00\",\n        \"expiredDate\": \"2017-10-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-06-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-07-31T00:00:00\",\n        \"processedDate\": \"2017-08-01T14:11:31\",\n        \"closingDate\": \"2017-07-31T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17520,\n        \"propertyAddress\": \"1066 Dill Ct , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"217030961\",\n        \"listDate\": \"2017-05-02T00:00:00\",\n        \"expiredDate\": \"2017-07-11T00:00:00\",\n        \"withdrawnDate\": \"2017-07-03T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17535,\n        \"propertyAddress\": \"240 Waterside Dr, 201, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2170201\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-04-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-06-27T00:00:00\",\n        \"processedDate\": \"2017-06-28T10:45:58\",\n        \"closingDate\": \"2017-06-27T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17544,\n        \"propertyAddress\": \"1537 Buccaneer Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217031320\",\n        \"listDate\": \"2017-05-03T00:00:00\",\n        \"expiredDate\": \"2018-02-07T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-05-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-07-27T00:00:00\",\n        \"processedDate\": \"2017-07-27T14:25:15\",\n        \"closingDate\": \"2017-07-27T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17556,\n        \"propertyAddress\": \"1405 Collingswood Ave , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217031586\",\n        \"listDate\": \"2017-05-04T00:00:00\",\n        \"expiredDate\": \"2019-05-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17568,\n        \"propertyAddress\": \"970 Cape Marco Dr , 1204, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217031493\",\n        \"listDate\": \"2017-05-05T00:00:00\",\n        \"expiredDate\": \"2018-04-27T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-05-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-07-31T00:00:00\",\n        \"processedDate\": \"2017-07-28T13:24:59\",\n        \"closingDate\": \"2017-07-28T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17569,\n        \"propertyAddress\": \"267 Shadowridge Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217031869\",\n        \"listDate\": \"2017-05-05T00:00:00\",\n        \"expiredDate\": \"2018-09-12T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-05-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-06-21T00:00:00\",\n        \"processedDate\": \"2018-06-22T12:48:02\",\n        \"closingDate\": \"2018-06-21T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17576,\n        \"propertyAddress\": \"889 Collier Court, 2-305, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217031921\",\n        \"listDate\": \"2017-05-05T00:00:00\",\n        \"expiredDate\": \"2017-10-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17612,\n        \"propertyAddress\": \"490 Tarpon Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217032609\",\n        \"listDate\": \"2017-05-09T00:00:00\",\n        \"expiredDate\": \"2017-11-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17615,\n        \"propertyAddress\": \"3536 Island Walk Cir, Naples, FL 34119\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217023666\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-05-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-06-29T00:00:00\",\n        \"processedDate\": \"2017-07-03T15:08:01\",\n        \"closingDate\": \"2017-06-28T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Bernie Gasamplebed\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Bay Village\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17621,\n        \"propertyAddress\": \"140 Seaview Ct , 906S, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"217032651\",\n        \"listDate\": \"2017-05-08T00:00:00\",\n        \"expiredDate\": \"2017-11-08T00:00:00\",\n        \"withdrawnDate\": \"2017-10-27T14:36:33\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17629,\n        \"propertyAddress\": \"1080 Dana Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217032897\",\n        \"listDate\": \"2017-05-09T00:00:00\",\n        \"expiredDate\": \"2017-11-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17634,\n        \"propertyAddress\": \"411 S Collier Blvd , 206, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217032886\",\n        \"listDate\": \"2017-05-10T00:00:00\",\n        \"expiredDate\": \"2017-11-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17635,\n        \"propertyAddress\": \"1000 Baltic , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217032929\",\n        \"listDate\": \"2017-05-09T00:00:00\",\n        \"expiredDate\": \"2017-12-05T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17641,\n        \"propertyAddress\": \"370 Cottage Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216061961\",\n        \"listDate\": \"2016-11-01T00:00:00\",\n        \"expiredDate\": \"2017-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-05-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-06-08T00:00:00\",\n        \"processedDate\": \"2017-06-09T11:29:37\",\n        \"closingDate\": \"2017-06-08T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17645,\n        \"propertyAddress\": \"270 N Collier Blvd , 603, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"217033077W\",\n        \"listDate\": \"2017-05-11T00:00:00\",\n        \"expiredDate\": \"2018-06-15T00:00:00\",\n        \"withdrawnDate\": \"2018-06-11T17:06:21\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17650,\n        \"propertyAddress\": \"641 Blackmore Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217028372\",\n        \"listDate\": \"2017-05-11T00:00:00\",\n        \"expiredDate\": \"2018-04-20T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17655,\n        \"propertyAddress\": \"961 Collier Ct , 107, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"217033308DD\",\n        \"listDate\": \"2017-05-11T00:00:00\",\n        \"expiredDate\": \"2018-05-03T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-04-20T00:00:00\",\n        \"cancelDate\": \"2018-05-02T00:00:00\",\n        \"estimatedClosingDate\": \"2018-06-11T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17656,\n        \"propertyAddress\": \"643 Bimini Ave , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217032755\",\n        \"listDate\": \"2017-05-11T00:00:00\",\n        \"expiredDate\": \"2018-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17663,\n        \"propertyAddress\": \"248 Seminole Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217032611\",\n        \"listDate\": \"2017-05-25T00:00:00\",\n        \"expiredDate\": \"2018-04-29T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-11-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-11-17T00:00:00\",\n        \"processedDate\": \"2017-11-20T15:50:04\",\n        \"closingDate\": \"2017-11-17T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17680,\n        \"propertyAddress\": \"920 Moon Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2170655\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-05-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-07-12T00:00:00\",\n        \"processedDate\": \"2017-06-19T10:19:45\",\n        \"closingDate\": \"2017-06-16T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17684,\n        \"propertyAddress\": \"902 Park Ave , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217033412\",\n        \"listDate\": \"2017-05-15T00:00:00\",\n        \"expiredDate\": \"2017-11-11T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17686,\n        \"propertyAddress\": \"900 Scott Dr , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"217033858\",\n        \"listDate\": \"2017-05-15T00:00:00\",\n        \"expiredDate\": \"2017-11-09T00:00:00\",\n        \"withdrawnDate\": \"2017-08-23T08:49:53\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17690,\n        \"propertyAddress\": \"7 Blue Hill Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2164759\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-05-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-06-16T00:00:00\",\n        \"processedDate\": \"2017-06-19T10:42:27\",\n        \"closingDate\": \"2017-06-16T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"ML Msamplede\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17692,\n        \"propertyAddress\": \"1011 W Inlet Dr, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"214020867\",\n        \"listDate\": \"2014-04-03T00:00:00\",\n        \"expiredDate\": \"2018-02-07T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17693,\n        \"propertyAddress\": \"1034 San Marco Road , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2132577\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-05-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-07-13T00:00:00\",\n        \"processedDate\": \"2017-07-14T15:28:34\",\n        \"closingDate\": \"2017-07-13T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17717,\n        \"propertyAddress\": \"791 W Elkcam Cir, B6, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217025471\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-05-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-06-19T00:00:00\",\n        \"processedDate\": \"2017-06-20T15:10:13\",\n        \"closingDate\": \"2017-06-19T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17746,\n        \"propertyAddress\": \"583 Tallwood St, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": \"2017-05-12T00:00:00\",\n        \"expiredDate\": \"2017-07-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-05-12T00:00:00\",\n        \"cancelDate\": \"2017-08-03T00:00:00\",\n        \"estimatedClosingDate\": \"2017-08-31T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17761,\n        \"propertyAddress\": \"1126 Blue Hill Creek Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217033955\",\n        \"listDate\": \"2017-05-23T00:00:00\",\n        \"expiredDate\": \"2019-05-11T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17764,\n        \"propertyAddress\": \"1124 Breakwater Ct , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"217035694W\",\n        \"listDate\": \"2017-05-24T00:00:00\",\n        \"expiredDate\": \"2018-12-19T00:00:00\",\n        \"withdrawnDate\": \"2018-10-04T14:35:45\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17766,\n        \"propertyAddress\": \"967 Iris Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217026262\",\n        \"listDate\": \"2017-04-10T00:00:00\",\n        \"expiredDate\": \"2019-03-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-02-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-10-16T00:00:00\",\n        \"processedDate\": \"2018-10-17T10:50:10\",\n        \"closingDate\": \"2018-10-16T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17770,\n        \"propertyAddress\": \"520 Tigertail Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"215011121\",\n        \"listDate\": \"2015-02-16T00:00:00\",\n        \"expiredDate\": \"2017-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17781,\n        \"propertyAddress\": \"979 Daisy Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217036197\",\n        \"listDate\": \"2017-05-23T00:00:00\",\n        \"expiredDate\": \"2018-05-23T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Sue Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17782,\n        \"propertyAddress\": \"1011 Swallow Terrace, 205, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217035948\",\n        \"listDate\": \"2017-05-24T00:00:00\",\n        \"expiredDate\": \"2018-06-28T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-04-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-05-04T00:00:00\",\n        \"processedDate\": \"2018-05-04T16:48:35\",\n        \"closingDate\": \"2018-05-03T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17785,\n        \"propertyAddress\": \"760 Inlet Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217036203\",\n        \"listDate\": \"2017-05-25T00:00:00\",\n        \"expiredDate\": \"2018-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-03-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-04-17T00:00:00\",\n        \"processedDate\": \"2018-04-18T14:47:37\",\n        \"closingDate\": \"2018-04-17T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17826,\n        \"propertyAddress\": \"1420 Firwood Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217037276\",\n        \"listDate\": \"2017-06-01T00:00:00\",\n        \"expiredDate\": \"2018-05-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-03-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-03-29T00:00:00\",\n        \"processedDate\": \"2018-03-29T14:48:31\",\n        \"closingDate\": \"2018-03-29T00:00:00\",\n        \"listAgent\": \"Rosemarie Tsampleagni\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17833,\n        \"propertyAddress\": \"685 Cameo Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217014665\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-05-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-07-07T00:00:00\",\n        \"processedDate\": \"2017-07-07T15:09:26\",\n        \"closingDate\": \"2017-07-07T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17834,\n        \"propertyAddress\": \"320 Seaview Ct , 2002, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217037087\",\n        \"listDate\": \"2017-06-01T00:00:00\",\n        \"expiredDate\": \"2017-11-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-10-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-11-06T00:00:00\",\n        \"processedDate\": \"2017-10-12T15:43:11\",\n        \"closingDate\": \"2017-10-12T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17835,\n        \"propertyAddress\": \"1374 Trinidad Avenue, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216079261\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-05-31T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-07-17T00:00:00\",\n        \"processedDate\": \"2017-07-07T12:41:47\",\n        \"closingDate\": \"2017-07-07T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"ML Msamplede\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17836,\n        \"propertyAddress\": \"1180 Blue Hill Creek Dr, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"SCHE060217IHE\",\n        \"listDate\": \"2017-06-01T00:00:00\",\n        \"expiredDate\": \"2018-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17840,\n        \"propertyAddress\": \"201 Vintage Bay Dr, 33, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2164081\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-06-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-08-29T00:00:00\",\n        \"processedDate\": \"2017-08-29T15:56:17\",\n        \"closingDate\": \"2017-08-25T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17851,\n        \"propertyAddress\": \"761 Plantation Ct, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217037517\",\n        \"listDate\": \"2017-06-02T00:00:00\",\n        \"expiredDate\": \"2018-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17856,\n        \"propertyAddress\": \"480 Worthington St, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217038013\",\n        \"listDate\": \"2017-06-05T00:00:00\",\n        \"expiredDate\": \"2018-06-04T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jacki Stsampletegos\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17871,\n        \"propertyAddress\": \"890 S Collier Blvd, 1002, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215068772\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-06-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-07-27T00:00:00\",\n        \"processedDate\": \"2017-07-24T15:37:38\",\n        \"closingDate\": \"2017-07-24T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17878,\n        \"propertyAddress\": \"1877 Calusa Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217029541\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-05-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-06-30T00:00:00\",\n        \"processedDate\": \"2017-06-28T15:50:25\",\n        \"closingDate\": \"2017-06-28T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17892,\n        \"propertyAddress\": \"210 Waterway Ct , 2-202, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"217038349DD\",\n        \"listDate\": \"2017-06-08T00:00:00\",\n        \"expiredDate\": \"2018-12-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-08-31T00:00:00\",\n        \"cancelDate\": \"2018-09-26T00:00:00\",\n        \"estimatedClosingDate\": \"2018-10-12T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cullen Ssampleughnessy\",\n        \"sellAgent\": \"Cullen Ssampleughnessy\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17900,\n        \"propertyAddress\": \"530 S Collier Blvd , 402, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217039116\",\n        \"listDate\": \"2017-06-09T00:00:00\",\n        \"expiredDate\": \"2018-01-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-11-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-01-03T00:00:00\",\n        \"processedDate\": \"2018-01-04T09:00:30\",\n        \"closingDate\": \"2018-01-03T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17904,\n        \"propertyAddress\": \"140 Seaview Ct , N-801, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217039243\",\n        \"listDate\": \"2017-06-09T00:00:00\",\n        \"expiredDate\": \"2018-03-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-10-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-10-13T00:00:00\",\n        \"processedDate\": \"2017-10-13T10:41:31\",\n        \"closingDate\": \"2017-10-13T00:00:00\",\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": \"Darlene sampleddy\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17909,\n        \"propertyAddress\": \"724 Seagrape Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-06-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-10-31T00:00:00\",\n        \"processedDate\": \"2017-10-18T15:25:31\",\n        \"closingDate\": \"2017-10-17T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Vince Cosamplece\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17914,\n        \"propertyAddress\": \"480 S Collier Blvd , 603, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"217039055DD\",\n        \"listDate\": \"2017-06-12T00:00:00\",\n        \"expiredDate\": \"2018-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-01-02T00:00:00\",\n        \"cancelDate\": \"2018-02-12T00:00:00\",\n        \"estimatedClosingDate\": \"2018-02-23T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17915,\n        \"propertyAddress\": \"1659 Rainbow St, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2170063\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-06-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-06-21T00:00:00\",\n        \"processedDate\": \"2017-06-22T14:09:24\",\n        \"closingDate\": \"2017-06-21T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17917,\n        \"propertyAddress\": \"173 Flamingo Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2164475\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-06-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-07-31T00:00:00\",\n        \"processedDate\": \"2017-08-01T12:41:09\",\n        \"closingDate\": \"2017-07-31T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17918,\n        \"propertyAddress\": \"870 Collier Ct, 205, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217018593\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-06-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-07-12T00:00:00\",\n        \"processedDate\": \"2017-07-13T14:34:12\",\n        \"closingDate\": \"2017-07-12T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Steve Shocksampley\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17936,\n        \"propertyAddress\": \"7880 Mahogany Run Ln, 1626, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217035630\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-06-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-07-05T00:00:00\",\n        \"processedDate\": \"2017-07-05T16:17:55\",\n        \"closingDate\": \"2017-07-05T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cathy Bsampledie\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17960,\n        \"propertyAddress\": \"720 Inlet Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217040636\",\n        \"listDate\": \"2017-06-16T00:00:00\",\n        \"expiredDate\": \"2018-05-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17961,\n        \"propertyAddress\": \"698 Cameo Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217040678\",\n        \"listDate\": \"2017-06-16T00:00:00\",\n        \"expiredDate\": \"2018-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-06-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-07-31T00:00:00\",\n        \"processedDate\": \"2017-07-18T12:21:57\",\n        \"closingDate\": \"2017-07-14T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17985,\n        \"propertyAddress\": \"1205 Blue Hill Creek Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217041564\",\n        \"listDate\": \"2017-06-21T00:00:00\",\n        \"expiredDate\": \"2018-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-04-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-05-31T00:00:00\",\n        \"processedDate\": \"2018-06-06T13:20:42\",\n        \"closingDate\": \"2018-05-30T00:00:00\",\n        \"listAgent\": \"Lura Jsamplees\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 17986,\n        \"propertyAddress\": \"698 Cameo Ct, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"217040678\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": \"2017-06-22T00:00:00\",\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18004,\n        \"propertyAddress\": \"3000 Royal Marco Way , 519, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217041950W\",\n        \"listDate\": \"2017-06-23T00:00:00\",\n        \"expiredDate\": \"2018-03-23T00:00:00\",\n        \"withdrawnDate\": \"2018-01-17T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18005,\n        \"propertyAddress\": \"311 Hazelcrest St , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217009827\",\n        \"listDate\": \"2017-02-03T00:00:00\",\n        \"expiredDate\": \"2018-05-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-12-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-02-27T00:00:00\",\n        \"processedDate\": \"2018-03-01T15:00:06\",\n        \"closingDate\": \"2018-02-28T00:00:00\",\n        \"listAgent\": \"Lori Hollsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18007,\n        \"propertyAddress\": \"1635 Ludlow Rd , Marco Island, FL 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"217041988\",\n        \"listDate\": \"2017-06-23T00:00:00\",\n        \"expiredDate\": \"2018-12-19T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-10-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-09-01T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18020,\n        \"propertyAddress\": \"3000 Royal Marco Way , PH-S, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"217042399DD\",\n        \"listDate\": \"2017-06-26T00:00:00\",\n        \"expiredDate\": \"2018-03-23T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-03-01T00:00:00\",\n        \"cancelDate\": \"2018-03-09T00:00:00\",\n        \"estimatedClosingDate\": \"2018-03-30T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18031,\n        \"propertyAddress\": \"190 Waterside Cir , 202, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217042648\",\n        \"listDate\": \"2017-06-27T00:00:00\",\n        \"expiredDate\": \"2018-06-26T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-08-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-09-29T00:00:00\",\n        \"processedDate\": \"2017-09-27T13:00:29\",\n        \"closingDate\": \"2017-09-27T00:00:00\",\n        \"listAgent\": \"Cullen Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18032,\n        \"propertyAddress\": \"140 Seaview Ct , 706S, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"217041567DD\",\n        \"listDate\": \"2017-06-27T00:00:00\",\n        \"expiredDate\": \"2018-03-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-08-29T00:00:00\",\n        \"cancelDate\": \"2017-09-28T00:00:00\",\n        \"estimatedClosingDate\": \"2017-10-17T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18033,\n        \"propertyAddress\": \"1230 Osprey Ct , Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"217042475DD\",\n        \"listDate\": \"2017-06-27T00:00:00\",\n        \"expiredDate\": \"2018-02-28T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-02-22T00:00:00\",\n        \"cancelDate\": \"2018-03-05T00:00:00\",\n        \"estimatedClosingDate\": \"2018-04-24T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18036,\n        \"propertyAddress\": \"970 Ironwood Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217042718\",\n        \"listDate\": \"2017-06-27T00:00:00\",\n        \"expiredDate\": \"2018-06-26T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-07-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-09-25T00:00:00\",\n        \"processedDate\": \"2017-09-26T12:14:24\",\n        \"closingDate\": \"2017-09-22T00:00:00\",\n        \"listAgent\": \"Cullen Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18037,\n        \"propertyAddress\": \"1149 Bond Ct , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"217042313WD\",\n        \"listDate\": \"2017-06-27T00:00:00\",\n        \"expiredDate\": \"2019-06-10T00:00:00\",\n        \"withdrawnDate\": \"2019-01-21T11:55:06\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18046,\n        \"propertyAddress\": \"14907 Tybee Island Dr, Naples, FL 34119\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216073605\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-06-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-07-28T00:00:00\",\n        \"processedDate\": \"2017-07-31T14:48:01\",\n        \"closingDate\": \"2017-07-28T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Sherrie Pfeffsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18048,\n        \"propertyAddress\": \"900 S Collier Blvd , 404, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217043060\",\n        \"listDate\": \"2017-06-29T00:00:00\",\n        \"expiredDate\": \"2018-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-08-31T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-10-11T00:00:00\",\n        \"processedDate\": \"2017-10-11T14:04:29\",\n        \"closingDate\": \"2017-10-11T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": \"Vince Cosamplece\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18049,\n        \"propertyAddress\": \"510 Mangrove Ct, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216010232\",\n        \"listDate\": \"2016-02-09T00:00:00\",\n        \"expiredDate\": \"2018-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18065,\n        \"propertyAddress\": \"10175 Keewaydin Island, Naples, FL 34102\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"215071124\",\n        \"listDate\": \"2015-12-09T00:00:00\",\n        \"expiredDate\": \"2018-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Sherry Irvsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Broad Avenue\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18073,\n        \"propertyAddress\": \"740 N Collier Blvd , 2-202, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217039063\",\n        \"listDate\": \"2017-06-29T00:00:00\",\n        \"expiredDate\": \"2017-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-08-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-10-20T00:00:00\",\n        \"processedDate\": \"2017-10-13T10:28:49\",\n        \"closingDate\": \"2017-10-10T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18075,\n        \"propertyAddress\": \"440 Seaview Ct , 405, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"217041838W\",\n        \"listDate\": \"2017-06-29T00:00:00\",\n        \"expiredDate\": \"2018-01-13T00:00:00\",\n        \"withdrawnDate\": \"2017-11-22T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18082,\n        \"propertyAddress\": \"741 S Collier Blvd , 511, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217042983\",\n        \"listDate\": \"2017-06-29T00:00:00\",\n        \"expiredDate\": \"2018-03-24T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-07-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-09-29T00:00:00\",\n        \"processedDate\": \"2017-10-03T11:31:48\",\n        \"closingDate\": \"2017-09-29T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18087,\n        \"propertyAddress\": \"239 Shadowridge, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217040482\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-06-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-08-16T00:00:00\",\n        \"processedDate\": \"2017-08-09T12:19:35\",\n        \"closingDate\": \"2017-08-07T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18088,\n        \"propertyAddress\": \"600 Diplomat Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217043197\",\n        \"listDate\": \"2017-06-30T00:00:00\",\n        \"expiredDate\": \"2018-04-19T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-01-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-02-07T00:00:00\",\n        \"processedDate\": \"2018-02-07T14:04:32\",\n        \"closingDate\": \"2018-02-05T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18101,\n        \"propertyAddress\": \"1786 Dogwood Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217041798\",\n        \"listDate\": \"2017-07-03T00:00:00\",\n        \"expiredDate\": \"2018-04-24T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-07-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-08-11T00:00:00\",\n        \"processedDate\": \"2017-08-15T12:55:51\",\n        \"closingDate\": \"2017-08-11T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18104,\n        \"propertyAddress\": \"1066 Dill Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217043345\",\n        \"listDate\": \"2017-07-03T00:00:00\",\n        \"expiredDate\": \"2018-03-26T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-07-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-10-30T00:00:00\",\n        \"processedDate\": \"2017-09-22T16:36:15\",\n        \"closingDate\": \"2017-09-22T00:00:00\",\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18119,\n        \"propertyAddress\": \"39 N Collier Blvd, 207, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"2170613DD\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-07-05T00:00:00\",\n        \"cancelDate\": \"2017-07-13T00:00:00\",\n        \"estimatedClosingDate\": \"2017-08-22T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18126,\n        \"propertyAddress\": \"220 S Collier Blvd , 705, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217043631\",\n        \"listDate\": \"2017-07-03T00:00:00\",\n        \"expiredDate\": \"2018-06-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-01-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-04-12T00:00:00\",\n        \"processedDate\": \"2018-04-12T12:01:11\",\n        \"closingDate\": \"2018-04-09T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18128,\n        \"propertyAddress\": \"469 Capri Ct NW, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217044212\",\n        \"listDate\": \"2017-07-05T00:00:00\",\n        \"expiredDate\": \"2018-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-07-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-07-18T00:00:00\",\n        \"processedDate\": \"2017-07-19T12:16:06\",\n        \"closingDate\": \"2017-07-18T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18144,\n        \"propertyAddress\": \"1626 Ludlow Rd, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217044589\",\n        \"listDate\": \"2017-07-07T00:00:00\",\n        \"expiredDate\": \"2018-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18149,\n        \"propertyAddress\": \"12117 Cannon Island, ,Naples, Florida, 34102\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"217044994DD\",\n        \"listDate\": \"2017-06-01T00:00:00\",\n        \"expiredDate\": \"2019-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-07-24T00:00:00\",\n        \"cancelDate\": \"2018-11-30T00:00:00\",\n        \"estimatedClosingDate\": \"2018-11-30T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Sherry Irvsample\",\n        \"sellAgent\": \"Sherry Irvsample\",\n        \"listOffice\": \"Broad Avenue\",\n        \"sellOffice\": \"Broad Avenue\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18169,\n        \"propertyAddress\": \"380 Seaview Ct, 1802, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217044682\",\n        \"listDate\": \"2017-07-11T00:00:00\",\n        \"expiredDate\": \"2018-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18181,\n        \"propertyAddress\": \"149 Bald Eagle Dr, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217045651\",\n        \"listDate\": \"2017-07-13T00:00:00\",\n        \"expiredDate\": \"2018-04-16T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18187,\n        \"propertyAddress\": \"8949 Lely Island Cir , Naples, FL 34113\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217041520\",\n        \"listDate\": \"2017-06-21T00:00:00\",\n        \"expiredDate\": \"2020-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Csampleft\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18199,\n        \"propertyAddress\": \"1020 S Collier Blvd , 204, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217046003\",\n        \"listDate\": \"2017-07-14T00:00:00\",\n        \"expiredDate\": \"2017-11-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-08-29T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-11-01T00:00:00\",\n        \"processedDate\": \"2017-11-01T15:43:42\",\n        \"closingDate\": \"2017-11-01T00:00:00\",\n        \"listAgent\": \"Jacki Stsampletegos\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18211,\n        \"propertyAddress\": \"1819 Honduras Ave , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217045152\",\n        \"listDate\": \"2017-07-17T00:00:00\",\n        \"expiredDate\": \"2018-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-02-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-02-27T00:00:00\",\n        \"processedDate\": \"2018-02-27T15:34:01\",\n        \"closingDate\": \"2018-02-26T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18225,\n        \"propertyAddress\": \"1402 Collier Blvd , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"217046781W\",\n        \"listDate\": \"2017-07-18T00:00:00\",\n        \"expiredDate\": \"2019-02-08T00:00:00\",\n        \"withdrawnDate\": \"2018-08-15T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18229,\n        \"propertyAddress\": \"651 Seaview Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2170580\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-07-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-08-04T00:00:00\",\n        \"processedDate\": \"2017-08-07T12:08:13\",\n        \"closingDate\": \"2017-08-04T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Janice samplegel\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18233,\n        \"propertyAddress\": \"780 S Collier Blvd , 814, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217046864\",\n        \"listDate\": \"2017-07-18T00:00:00\",\n        \"expiredDate\": \"2018-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-08-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-09-14T00:00:00\",\n        \"processedDate\": \"2017-09-22T14:59:32\",\n        \"closingDate\": \"2017-09-18T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18241,\n        \"propertyAddress\": \"690 Amber Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217002870\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-07-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-08-04T00:00:00\",\n        \"processedDate\": \"2017-08-04T14:17:14\",\n        \"closingDate\": \"2017-08-04T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Sue Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18246,\n        \"propertyAddress\": \"24 Tahiti Rd , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217047182\",\n        \"listDate\": \"2017-07-20T00:00:00\",\n        \"expiredDate\": \"2018-07-21T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-08-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-08-30T00:00:00\",\n        \"processedDate\": \"2017-08-30T11:51:42\",\n        \"closingDate\": \"2017-08-30T00:00:00\",\n        \"listAgent\": \"Lori Hollsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18256,\n        \"propertyAddress\": \"1078 Cottonwood Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217047195\",\n        \"listDate\": \"2017-07-24T00:00:00\",\n        \"expiredDate\": \"2018-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18263,\n        \"propertyAddress\": \"South Seas North, Unit C4, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-07-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-07-25T00:00:00\",\n        \"processedDate\": \"2017-07-25T14:45:04\",\n        \"closingDate\": \"2017-07-25T00:00:00\",\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18287,\n        \"propertyAddress\": \"2312 Island Cove Cir , Naples, FL 34109\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217047966\",\n        \"listDate\": \"2017-07-27T00:00:00\",\n        \"expiredDate\": \"2020-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Grace Msampleolick\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18309,\n        \"propertyAddress\": \"748 N Barfield Dr , Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"217048718DD\",\n        \"listDate\": \"2017-07-31T00:00:00\",\n        \"expiredDate\": \"2018-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-08-12T00:00:00\",\n        \"cancelDate\": \"2017-09-01T00:00:00\",\n        \"estimatedClosingDate\": \"2017-10-05T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18343,\n        \"propertyAddress\": \"616 Dorando Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217049695\",\n        \"listDate\": \"2017-08-02T00:00:00\",\n        \"expiredDate\": \"2018-07-24T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-09-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-11-03T00:00:00\",\n        \"processedDate\": \"2017-11-02T14:34:31\",\n        \"closingDate\": \"2017-11-02T00:00:00\",\n        \"listAgent\": \"Cullen Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18368,\n        \"propertyAddress\": \"816 W Elkcam Cir, A, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2164903\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-08-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-10-18T00:00:00\",\n        \"processedDate\": \"2017-10-18T15:28:49\",\n        \"closingDate\": \"2017-10-18T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Lori Hollsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18379,\n        \"propertyAddress\": \"140 Seaview Ct , 804N, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217050898\",\n        \"listDate\": \"2017-08-08T00:00:00\",\n        \"expiredDate\": \"2018-05-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-01-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-01-19T00:00:00\",\n        \"processedDate\": \"2018-01-23T13:41:49\",\n        \"closingDate\": \"2018-01-19T00:00:00\",\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18393,\n        \"propertyAddress\": \"860 Panama Ct, 114, Marco Island, FL, 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"217051058\",\n        \"listDate\": \"2017-08-04T00:00:00\",\n        \"expiredDate\": \"2018-05-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18406,\n        \"propertyAddress\": \"1490 Winterberry Dr, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217051167\",\n        \"listDate\": \"2017-08-10T00:00:00\",\n        \"expiredDate\": \"2018-05-07T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18408,\n        \"propertyAddress\": \"990 Cape Marco Dr , 305, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217051364\",\n        \"listDate\": \"2017-08-09T00:00:00\",\n        \"expiredDate\": \"2020-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18435,\n        \"propertyAddress\": \"500 Saturn Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217052366\",\n        \"listDate\": \"2017-08-15T00:00:00\",\n        \"expiredDate\": \"2017-11-14T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18437,\n        \"propertyAddress\": \"815 Hideaway Cir W, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217052421\",\n        \"listDate\": \"2017-08-15T00:00:00\",\n        \"expiredDate\": \"2018-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-11-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-12-07T00:00:00\",\n        \"processedDate\": \"2017-12-06T12:10:28\",\n        \"closingDate\": \"2017-12-05T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18440,\n        \"propertyAddress\": \"921 Seagrape Dr, 406, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217052549\",\n        \"listDate\": \"2017-08-15T00:00:00\",\n        \"expiredDate\": \"2018-07-27T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18455,\n        \"propertyAddress\": \"1070 S Collier Blvd, 403, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217052835\",\n        \"listDate\": \"2017-08-16T00:00:00\",\n        \"expiredDate\": \"2018-07-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18474,\n        \"propertyAddress\": \"705 Austin Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217039922\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-08-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-10-27T00:00:00\",\n        \"processedDate\": \"2017-10-02T13:03:28\",\n        \"closingDate\": \"2017-09-29T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18478,\n        \"propertyAddress\": \"234 Grapewood Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2164207\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-08-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-10-27T00:00:00\",\n        \"processedDate\": \"2017-10-27T15:07:39\",\n        \"closingDate\": \"2017-10-27T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Lori Hollsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18479,\n        \"propertyAddress\": \"681 S Barfield Dr, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217053769\",\n        \"listDate\": \"2017-08-21T00:00:00\",\n        \"expiredDate\": \"2018-08-17T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18483,\n        \"propertyAddress\": \"923 Whiskey Creek Dr , Marco Island, FL 34145-1701\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"217053805DD\",\n        \"listDate\": \"2017-08-10T00:00:00\",\n        \"expiredDate\": \"2019-08-10T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-10-11T00:00:00\",\n        \"cancelDate\": \"2018-11-06T00:00:00\",\n        \"estimatedClosingDate\": \"2018-12-12T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18490,\n        \"propertyAddress\": \"45 Marco Villas Dr, K-6, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217053689\",\n        \"listDate\": \"2017-08-22T00:00:00\",\n        \"expiredDate\": \"2019-04-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18499,\n        \"propertyAddress\": \"1000 S Collier Blvd , 803, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217026269\",\n        \"listDate\": \"2017-04-11T00:00:00\",\n        \"expiredDate\": \"2018-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-02-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-03-22T00:00:00\",\n        \"processedDate\": \"2018-03-23T12:26:54\",\n        \"closingDate\": \"2018-03-22T00:00:00\",\n        \"listAgent\": \"Cullen Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18504,\n        \"propertyAddress\": \"188 S Beach Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217054062\",\n        \"listDate\": \"2017-07-05T00:00:00\",\n        \"expiredDate\": \"2018-07-05T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-09-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-10-23T00:00:00\",\n        \"processedDate\": \"2017-10-24T13:24:58\",\n        \"closingDate\": \"2017-10-23T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18505,\n        \"propertyAddress\": \"1228 Lamplighter Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217054136\",\n        \"listDate\": \"2017-08-23T00:00:00\",\n        \"expiredDate\": \"2018-04-18T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-03-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-04-23T00:00:00\",\n        \"processedDate\": \"2018-04-25T09:55:59\",\n        \"closingDate\": \"2018-04-23T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18506,\n        \"propertyAddress\": \"1148 Edington Pl, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"RX-10334356\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-08-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-09-28T00:00:00\",\n        \"processedDate\": \"2017-10-02T09:53:21\",\n        \"closingDate\": \"2017-09-28T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"ML Msamplede\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18511,\n        \"propertyAddress\": \"1261 Antigua Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217054032\",\n        \"listDate\": \"2017-08-22T00:00:00\",\n        \"expiredDate\": \"2018-01-21T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-12-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-12-15T00:00:00\",\n        \"processedDate\": \"2017-12-18T12:52:35\",\n        \"closingDate\": \"2017-12-15T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18519,\n        \"propertyAddress\": \"976 Sundrop Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217053798\",\n        \"listDate\": \"2017-08-25T00:00:00\",\n        \"expiredDate\": \"2018-08-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Rosemarie Tsampleagni\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18521,\n        \"propertyAddress\": \"760 N Collier Blvd , 3-307, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217054963\",\n        \"listDate\": \"2017-08-25T00:00:00\",\n        \"expiredDate\": \"2018-04-23T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-10-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-10-30T00:00:00\",\n        \"processedDate\": \"2017-11-03T11:35:50\",\n        \"closingDate\": \"2017-10-30T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18528,\n        \"propertyAddress\": \"1070 S Collier Boulevard, 304, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"216038652DD\",\n        \"listDate\": \"2016-07-07T00:00:00\",\n        \"expiredDate\": \"2017-12-31T00:00:00\",\n        \"withdrawnDate\": \"2017-11-14T00:00:00\",\n        \"pendingDate\": \"2017-10-24T00:00:00\",\n        \"cancelDate\": \"2017-11-14T00:00:00\",\n        \"estimatedClosingDate\": \"2017-11-28T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": \"Michael samplewler\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Lexington\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18580,\n        \"propertyAddress\": \"1109 Blue Hill Creek Dr , Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"217055990DD\",\n        \"listDate\": \"2017-09-01T00:00:00\",\n        \"expiredDate\": \"2018-05-31T00:00:00\",\n        \"withdrawnDate\": \"2018-03-13T00:00:00\",\n        \"pendingDate\": \"2018-01-31T00:00:00\",\n        \"cancelDate\": \"2018-03-13T00:00:00\",\n        \"estimatedClosingDate\": \"2018-04-02T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18581,\n        \"propertyAddress\": \"140 Seaview Ct S, 1104S, Marco Island, FL, 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"217056384\",\n        \"listDate\": \"2017-09-01T00:00:00\",\n        \"expiredDate\": \"2018-03-31T00:00:00\",\n        \"withdrawnDate\": \"2018-03-12T16:41:49\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18585,\n        \"propertyAddress\": \"945 Royal Marco Way , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217055993\",\n        \"listDate\": \"2017-09-01T00:00:00\",\n        \"expiredDate\": \"2018-04-29T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18592,\n        \"propertyAddress\": \"440 Bald Eagle Dr, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"DD\",\n        \"listDate\": \"2017-08-31T00:00:00\",\n        \"expiredDate\": \"2017-09-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-08-31T00:00:00\",\n        \"cancelDate\": \"2017-09-11T00:00:00\",\n        \"estimatedClosingDate\": \"2017-10-31T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18593,\n        \"propertyAddress\": \"1203 Whiteheart Avenue , Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"2171509DD\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-08-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-10-31T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18605,\n        \"propertyAddress\": \"748 N Barfield Dr , Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"217048718DD\",\n        \"listDate\": \"2017-07-31T00:00:00\",\n        \"expiredDate\": \"2018-04-30T00:00:00\",\n        \"withdrawnDate\": \"2017-10-20T00:00:00\",\n        \"pendingDate\": \"2017-09-28T00:00:00\",\n        \"cancelDate\": \"2017-10-20T00:00:00\",\n        \"estimatedClosingDate\": \"2017-10-27T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18619,\n        \"propertyAddress\": \"4000 Royal Marco Way , 723, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217057429\",\n        \"listDate\": \"2017-03-14T00:00:00\",\n        \"expiredDate\": \"2017-12-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18622,\n        \"propertyAddress\": \"600 Waterside Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217057496\",\n        \"listDate\": \"2017-09-18T00:00:00\",\n        \"expiredDate\": \"2018-04-21T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-01-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-02-28T00:00:00\",\n        \"processedDate\": \"2018-02-28T15:25:32\",\n        \"closingDate\": \"2018-02-28T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18630,\n        \"propertyAddress\": \"11781 Little Marco Island , Naples, FL 34101\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"217053138\",\n        \"listDate\": \"2017-08-15T00:00:00\",\n        \"expiredDate\": \"2018-08-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-10-31T00:00:00\",\n        \"cancelDate\": \"2017-11-27T00:00:00\",\n        \"estimatedClosingDate\": \"2017-12-15T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Sherry Irvsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Broad Avenue\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18642,\n        \"propertyAddress\": \"690 Amber Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217054556\",\n        \"listDate\": \"2017-08-24T00:00:00\",\n        \"expiredDate\": \"2020-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18648,\n        \"propertyAddress\": \"1217 Bluebird Ave , Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"217057927DD\",\n        \"listDate\": \"2017-09-21T00:00:00\",\n        \"expiredDate\": \"2018-09-21T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-04-04T00:00:00\",\n        \"cancelDate\": \"2018-04-16T00:00:00\",\n        \"estimatedClosingDate\": \"2018-05-15T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Dave Flowsamples\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18649,\n        \"propertyAddress\": \"651 Seaview Ct , B302, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217057077\",\n        \"listDate\": \"2017-09-06T00:00:00\",\n        \"expiredDate\": \"2020-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18651,\n        \"propertyAddress\": \"848 W. Elkcam Circle, 205, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217057567\",\n        \"listDate\": \"2017-09-19T00:00:00\",\n        \"expiredDate\": \"2020-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18659,\n        \"propertyAddress\": \"355 Kendall Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"214060691\",\n        \"listDate\": \"2014-11-03T00:00:00\",\n        \"expiredDate\": \"2017-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18664,\n        \"propertyAddress\": \"468 Barcelona Ct , Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"217058417DD\",\n        \"listDate\": \"2017-09-25T00:00:00\",\n        \"expiredDate\": \"2018-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-01-12T00:00:00\",\n        \"cancelDate\": \"2018-01-24T00:00:00\",\n        \"estimatedClosingDate\": \"2018-02-08T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18665,\n        \"propertyAddress\": \"133 Vintage Bay Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217056042\",\n        \"listDate\": \"2017-09-25T00:00:00\",\n        \"expiredDate\": \"2018-08-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-06-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-08-16T00:00:00\",\n        \"processedDate\": \"2018-08-16T14:28:10\",\n        \"closingDate\": \"2018-08-16T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18667,\n        \"propertyAddress\": \"1672 Barbaros Ct, Marco Island, FL 34146\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217036146\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-09-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-10-11T00:00:00\",\n        \"processedDate\": \"2017-10-12T10:02:24\",\n        \"closingDate\": \"2017-10-11T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18668,\n        \"propertyAddress\": \"260 Seaview Court , 1509, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217009729\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-09-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-10-13T00:00:00\",\n        \"processedDate\": \"2017-10-16T12:16:12\",\n        \"closingDate\": \"2017-10-12T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Angelica samplerews\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18684,\n        \"propertyAddress\": \"1070 S Collier Blvd, PH-E, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217058705\",\n        \"listDate\": \"2017-09-27T00:00:00\",\n        \"expiredDate\": \"2018-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18688,\n        \"propertyAddress\": \"316 Seabreeze Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216068055\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-09-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-11-07T00:00:00\",\n        \"processedDate\": \"2017-11-07T11:07:20\",\n        \"closingDate\": \"2017-11-07T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Darlene sampleddy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18692,\n        \"propertyAddress\": \"140 Seaview Court, 706 S, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217041567\",\n        \"listDate\": \"2017-06-27T00:00:00\",\n        \"expiredDate\": \"2018-05-23T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-11-29T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-01-11T00:00:00\",\n        \"processedDate\": \"2018-01-12T15:22:56\",\n        \"closingDate\": \"2018-01-11T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18701,\n        \"propertyAddress\": \"370 Cottage Ct, Marco Island, FL, 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"217059166\",\n        \"listDate\": \"2017-09-29T00:00:00\",\n        \"expiredDate\": \"2018-08-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18716,\n        \"propertyAddress\": \"370 Cottage Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217059282\",\n        \"listDate\": \"2017-10-02T00:00:00\",\n        \"expiredDate\": \"2018-08-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18717,\n        \"propertyAddress\": \"140 Seaview Ct , 1804, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"21705965\",\n        \"listDate\": \"2017-10-02T00:00:00\",\n        \"expiredDate\": \"2018-07-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-11-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-12-29T00:00:00\",\n        \"processedDate\": \"2017-12-29T12:23:12\",\n        \"closingDate\": \"2017-12-29T00:00:00\",\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18720,\n        \"propertyAddress\": \"960 Cape Marco Dr , 1506, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217059736\",\n        \"listDate\": \"2017-10-02T00:00:00\",\n        \"expiredDate\": \"2018-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-01-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-02-16T00:00:00\",\n        \"processedDate\": \"2018-02-19T13:18:14\",\n        \"closingDate\": \"2018-02-16T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18722,\n        \"propertyAddress\": \"350 Seabreeze Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217008191\",\n        \"listDate\": \"2017-01-30T00:00:00\",\n        \"expiredDate\": \"2017-12-02T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-10-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-11-10T00:00:00\",\n        \"processedDate\": \"2017-11-10T13:40:21\",\n        \"closingDate\": \"2017-11-10T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18738,\n        \"propertyAddress\": \"159 South Seas Ct, Marco Island, FL, 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"217060195\",\n        \"listDate\": \"2017-10-04T00:00:00\",\n        \"expiredDate\": \"2018-08-31T00:00:00\",\n        \"withdrawnDate\": \"2018-04-19T15:57:30\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18745,\n        \"propertyAddress\": \"609 Hernando Dr, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217060437\",\n        \"listDate\": \"2017-10-04T00:00:00\",\n        \"expiredDate\": \"2019-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18747,\n        \"propertyAddress\": \"601 Seaview Ct, 307, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217057175\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-10-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-11-15T00:00:00\",\n        \"processedDate\": \"2017-11-16T12:51:25\",\n        \"closingDate\": \"2017-11-15T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18786,\n        \"propertyAddress\": \"8924 Mustang Island Cir , Naples, FL 34113\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217060884\",\n        \"listDate\": \"2017-10-09T00:00:00\",\n        \"expiredDate\": \"2018-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-02-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-02-26T00:00:00\",\n        \"processedDate\": \"2018-02-27T09:26:17\",\n        \"closingDate\": \"2018-02-26T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18795,\n        \"propertyAddress\": \"58 N Collier Blvd, 504, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217061675\",\n        \"listDate\": \"2017-10-10T00:00:00\",\n        \"expiredDate\": \"2018-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18818,\n        \"propertyAddress\": \"2752 Island Pond Ln, Naples, FL 34119\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217060242\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-10-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-11-21T00:00:00\",\n        \"processedDate\": \"2017-11-21T15:26:54\",\n        \"closingDate\": \"2017-11-21T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Melinda Gunthsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Bay Village\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18821,\n        \"propertyAddress\": \"220 S Collier Blvd , 1103, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217062388\",\n        \"listDate\": \"2017-10-13T00:00:00\",\n        \"expiredDate\": \"2018-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-02-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-03-28T00:00:00\",\n        \"processedDate\": \"2018-03-30T09:05:53\",\n        \"closingDate\": \"2018-03-23T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18862,\n        \"propertyAddress\": \"809 Amazon Ct, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217062884\",\n        \"listDate\": \"2017-10-18T00:00:00\",\n        \"expiredDate\": \"2018-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18863,\n        \"propertyAddress\": \"2000 Royal Marco Way, 308, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217063451\",\n        \"listDate\": \"2017-10-16T00:00:00\",\n        \"expiredDate\": \"2018-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18865,\n        \"propertyAddress\": \"1780 Devon Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217055194\",\n        \"listDate\": \"2017-10-18T00:00:00\",\n        \"expiredDate\": \"2018-08-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-02-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-04-02T00:00:00\",\n        \"processedDate\": \"2018-04-03T11:37:00\",\n        \"closingDate\": \"2018-04-02T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18871,\n        \"propertyAddress\": \"651 Seaview Ct , B207, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"217058094WD\",\n        \"listDate\": \"2017-09-22T00:00:00\",\n        \"expiredDate\": \"2020-12-31T00:00:00\",\n        \"withdrawnDate\": \"2019-02-05T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18880,\n        \"propertyAddress\": \"58 N Collier Blvd, 1907, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217063345\",\n        \"listDate\": \"2017-10-20T00:00:00\",\n        \"expiredDate\": \"2018-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18884,\n        \"propertyAddress\": \"577 Seagrape Drive, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"217064106W\",\n        \"listDate\": \"2017-10-20T00:00:00\",\n        \"expiredDate\": \"2018-10-14T00:00:00\",\n        \"withdrawnDate\": \"2017-12-28T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18886,\n        \"propertyAddress\": \"760 N Collier Boulevard , Unit 309, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": \"2017-10-03T00:00:00\",\n        \"expiredDate\": \"2017-11-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-10-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-11-08T00:00:00\",\n        \"processedDate\": \"2017-11-09T12:58:00\",\n        \"closingDate\": \"2017-11-08T00:00:00\",\n        \"listAgent\": \"Cynthia Csampleogin\",\n        \"sellAgent\": \"Cynthia Csampleogin\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18903,\n        \"propertyAddress\": \"1070 S Collier Blvd, 304, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"216038652DD\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-10-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-11-28T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Michael samplewler\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Lexington\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18906,\n        \"propertyAddress\": \"748 N Barfield Dr , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"217048718W\",\n        \"listDate\": \"2017-07-31T00:00:00\",\n        \"expiredDate\": \"2018-04-30T00:00:00\",\n        \"withdrawnDate\": \"2018-04-30T14:20:54\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18907,\n        \"propertyAddress\": \"900 Huron Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217065139\",\n        \"listDate\": \"2017-10-25T00:00:00\",\n        \"expiredDate\": \"2018-05-16T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-11-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-05-01T00:00:00\",\n        \"processedDate\": \"2018-05-02T11:17:47\",\n        \"closingDate\": \"2018-05-01T00:00:00\",\n        \"listAgent\": \"Sue Ssampleughnessy\",\n        \"sellAgent\": \"Cynthia Csampleogin\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18911,\n        \"propertyAddress\": \"529 Spinnaker Dr, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"2170028DD\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-10-25T00:00:00\",\n        \"cancelDate\": \"2017-10-30T00:00:00\",\n        \"estimatedClosingDate\": \"2017-11-13T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18912,\n        \"propertyAddress\": \"740 N Collier Blvd , 2-209, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217064593\",\n        \"listDate\": \"2017-10-26T00:00:00\",\n        \"expiredDate\": \"2018-10-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-07-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-09-05T00:00:00\",\n        \"processedDate\": \"2018-09-06T12:36:38\",\n        \"closingDate\": \"2018-09-05T00:00:00\",\n        \"listAgent\": \"Sue Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18914,\n        \"propertyAddress\": \"730 S Collier Blvd, 103, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217064924\",\n        \"listDate\": \"2017-10-26T00:00:00\",\n        \"expiredDate\": \"2018-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18918,\n        \"propertyAddress\": \"881 Panama Ct , 301, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217064627\",\n        \"listDate\": \"2017-10-23T00:00:00\",\n        \"expiredDate\": \"2020-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18920,\n        \"propertyAddress\": \"140  Seaview Ct, 506N,Marco Island, Florida, 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"217065643W\",\n        \"listDate\": \"2017-10-27T00:00:00\",\n        \"expiredDate\": \"2019-06-01T00:00:00\",\n        \"withdrawnDate\": \"2019-01-10T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18929,\n        \"propertyAddress\": \"901 Collier Court , 204 5, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217062140\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-10-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-11-30T00:00:00\",\n        \"processedDate\": \"2017-12-01T14:10:29\",\n        \"closingDate\": \"2017-11-30T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cynthia Csampleogin\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18946,\n        \"propertyAddress\": \"421 Elk Cir , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217066292\",\n        \"listDate\": \"2017-10-31T00:00:00\",\n        \"expiredDate\": \"2018-10-23T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-02-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-03-16T00:00:00\",\n        \"processedDate\": \"2018-03-16T10:50:48\",\n        \"closingDate\": \"2018-03-16T00:00:00\",\n        \"listAgent\": \"Cullen Ssampleughnessy\",\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18948,\n        \"propertyAddress\": \"720 Collier Blvd , 602, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"217063956WD\",\n        \"listDate\": \"2017-10-20T00:00:00\",\n        \"expiredDate\": \"2020-12-31T00:00:00\",\n        \"withdrawnDate\": \"2019-02-18T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18952,\n        \"propertyAddress\": \"1173 Lighthouse Ct , Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"217065523DD\",\n        \"listDate\": \"2017-10-31T00:00:00\",\n        \"expiredDate\": \"2018-07-25T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-01-30T00:00:00\",\n        \"cancelDate\": \"2018-02-16T00:00:00\",\n        \"estimatedClosingDate\": \"2018-03-29T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": \"Cullen Ssampleughnessy\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18980,\n        \"propertyAddress\": \"1150 Cara Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217058905\",\n        \"listDate\": \"2017-09-20T00:00:00\",\n        \"expiredDate\": \"2020-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18984,\n        \"propertyAddress\": \"889 Collier Ct, 2-305, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217066661\",\n        \"listDate\": \"2017-11-01T00:00:00\",\n        \"expiredDate\": \"2018-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18992,\n        \"propertyAddress\": \"1573 Galleon Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217067080\",\n        \"listDate\": \"2017-11-02T00:00:00\",\n        \"expiredDate\": \"2018-11-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-11-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-12-29T00:00:00\",\n        \"processedDate\": \"2017-12-27T10:54:36\",\n        \"closingDate\": \"2017-12-20T00:00:00\",\n        \"listAgent\": \"Jacki Stsampletegos\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18993,\n        \"propertyAddress\": \"189  Gulfport Ct, ,Marco Island, Florida, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217066940\",\n        \"listDate\": \"2017-11-02T00:00:00\",\n        \"expiredDate\": \"2019-05-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18994,\n        \"propertyAddress\": \"131  Hollyhock Ct, ,Marco Island, Florida, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217066938\",\n        \"listDate\": \"2017-11-02T00:00:00\",\n        \"expiredDate\": \"2019-05-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 18999,\n        \"propertyAddress\": \"130 N Collier Blvd , Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"217067112DD\",\n        \"listDate\": \"2017-11-02T00:00:00\",\n        \"expiredDate\": \"2018-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-12-23T00:00:00\",\n        \"cancelDate\": \"2017-12-29T00:00:00\",\n        \"estimatedClosingDate\": \"2018-01-26T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19003,\n        \"propertyAddress\": \"181 Columbus Way , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217067031\",\n        \"listDate\": \"2017-11-02T00:00:00\",\n        \"expiredDate\": \"2018-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-02-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-02-22T00:00:00\",\n        \"processedDate\": \"2018-02-23T12:10:28\",\n        \"closingDate\": \"2018-02-22T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19011,\n        \"propertyAddress\": \"1631 Begonia Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217066968W\",\n        \"listDate\": \"2017-11-01T00:00:00\",\n        \"expiredDate\": \"2018-07-31T00:00:00\",\n        \"withdrawnDate\": \"2018-04-10T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19013,\n        \"propertyAddress\": \"940 Cape Marco Dr , 2006, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217067200\",\n        \"listDate\": \"2017-11-02T00:00:00\",\n        \"expiredDate\": \"2018-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-01-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-01-24T00:00:00\",\n        \"processedDate\": \"2018-01-24T14:35:53\",\n        \"closingDate\": \"2018-01-23T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19016,\n        \"propertyAddress\": \"1600 Windmill Ave, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217036420\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-10-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-12-29T00:00:00\",\n        \"processedDate\": \"2017-12-27T11:13:31\",\n        \"closingDate\": \"2017-12-21T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19017,\n        \"propertyAddress\": \"640 Rockport Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2171554\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-11-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-12-07T00:00:00\",\n        \"processedDate\": \"2017-12-07T15:10:13\",\n        \"closingDate\": \"2017-12-07T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19023,\n        \"propertyAddress\": \"1517 Caxambas Ct, Marco Island, FL, 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"217066380\",\n        \"listDate\": \"2017-11-01T00:00:00\",\n        \"expiredDate\": \"2018-10-19T00:00:00\",\n        \"withdrawnDate\": \"2018-06-06T17:09:47\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19026,\n        \"propertyAddress\": \"881 Eubanks Ct , Marco Island, FL 34145-6613\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"217066387W\",\n        \"listDate\": \"2018-02-19T00:00:00\",\n        \"expiredDate\": \"2018-11-01T00:00:00\",\n        \"withdrawnDate\": \"2018-05-01T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19028,\n        \"propertyAddress\": \"32 Gulfport Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-10-31T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-12-20T00:00:00\",\n        \"processedDate\": \"2018-11-06T15:23:19\",\n        \"closingDate\": \"2018-11-06T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19034,\n        \"propertyAddress\": \"361 Wild Coffee Ln , Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"217067220DD\",\n        \"listDate\": \"2017-11-01T00:00:00\",\n        \"expiredDate\": \"2018-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-01-14T00:00:00\",\n        \"cancelDate\": \"2018-02-16T00:00:00\",\n        \"estimatedClosingDate\": \"2018-02-28T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": \"Sue Ssampleughnessy\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19035,\n        \"propertyAddress\": \"609 Crescent St , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"217067285W\",\n        \"listDate\": \"2017-11-03T00:00:00\",\n        \"expiredDate\": \"2018-08-31T00:00:00\",\n        \"withdrawnDate\": \"2018-08-30T10:52:19\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19037,\n        \"propertyAddress\": \"772 Plantation Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217067397\",\n        \"listDate\": \"2017-11-01T00:00:00\",\n        \"expiredDate\": \"2018-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-02-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-03-12T00:00:00\",\n        \"processedDate\": \"2018-03-13T14:39:20\",\n        \"closingDate\": \"2018-03-12T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19045,\n        \"propertyAddress\": \"315 S Hideaway Cir, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-11-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-11-06T00:00:00\",\n        \"processedDate\": \"2017-11-06T14:22:18\",\n        \"closingDate\": \"2017-11-06T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cullen Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19046,\n        \"propertyAddress\": \"32 Gulfport Ct, PYMT 1, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-10-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-11-03T00:00:00\",\n        \"processedDate\": \"2017-11-06T12:54:05\",\n        \"closingDate\": \"2017-11-03T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19051,\n        \"propertyAddress\": \"1759 Watson Rd, Marco Island, FL, 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"217065827\",\n        \"listDate\": \"2017-11-06T00:00:00\",\n        \"expiredDate\": \"2018-10-23T00:00:00\",\n        \"withdrawnDate\": \"2018-04-19T12:52:08\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Paul Strsampleg\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19069,\n        \"propertyAddress\": \"705 Austin Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217068202\",\n        \"listDate\": \"2017-11-07T00:00:00\",\n        \"expiredDate\": \"2020-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19077,\n        \"propertyAddress\": \"940 Cape Marco Dr, 2006, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"217067200DD\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": \"2017-11-08T16:18:43\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19110,\n        \"propertyAddress\": \"601 Hernando Dr, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"217069081W\",\n        \"listDate\": \"2018-01-30T00:00:00\",\n        \"expiredDate\": \"2019-05-31T00:00:00\",\n        \"withdrawnDate\": \"2019-01-16T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19111,\n        \"propertyAddress\": \"503 Kendall Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218020924\",\n        \"listDate\": \"2018-03-15T00:00:00\",\n        \"expiredDate\": \"2018-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-04-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-05-09T00:00:00\",\n        \"processedDate\": \"2018-05-09T14:29:26\",\n        \"closingDate\": \"2018-05-09T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19117,\n        \"propertyAddress\": \"731 W Elkcam Cir , B112, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217068918\",\n        \"listDate\": \"2017-11-10T00:00:00\",\n        \"expiredDate\": \"2018-08-03T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-02-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-04-06T00:00:00\",\n        \"processedDate\": \"2018-04-09T15:07:44\",\n        \"closingDate\": \"2018-04-06T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19118,\n        \"propertyAddress\": \"951 Inlet Dr , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"217068840W\",\n        \"listDate\": \"2017-11-10T00:00:00\",\n        \"expiredDate\": \"2018-08-31T00:00:00\",\n        \"withdrawnDate\": \"2018-04-23T16:32:29\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19129,\n        \"propertyAddress\": \"240 Seaview Ct , 304, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"217030214W\",\n        \"listDate\": \"2017-04-24T00:00:00\",\n        \"expiredDate\": \"2018-04-30T00:00:00\",\n        \"withdrawnDate\": \"2018-04-16T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19137,\n        \"propertyAddress\": \"1070 S Collier Blvd , 304, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216038652\",\n        \"listDate\": \"2016-07-07T00:00:00\",\n        \"expiredDate\": \"2018-04-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-01-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-03-13T00:00:00\",\n        \"processedDate\": \"2018-03-14T10:31:03\",\n        \"closingDate\": \"2018-03-13T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19146,\n        \"propertyAddress\": \"1124 Strawberry Ct , Marco Island, FL 34145-3556\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217070029\",\n        \"listDate\": \"2017-11-14T00:00:00\",\n        \"expiredDate\": \"2017-11-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19160,\n        \"propertyAddress\": \"780 S Collier Blvd , 506, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217070257\",\n        \"listDate\": \"2017-11-15T00:00:00\",\n        \"expiredDate\": \"2018-08-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-05-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-06-29T00:00:00\",\n        \"processedDate\": \"2018-07-03T10:01:28\",\n        \"closingDate\": \"2018-06-29T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19227,\n        \"propertyAddress\": \"500 Saturn Ct Unit 71, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217071143\",\n        \"listDate\": \"2017-11-21T00:00:00\",\n        \"expiredDate\": \"2018-07-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-06-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-06-21T00:00:00\",\n        \"processedDate\": \"2018-06-21T16:31:20\",\n        \"closingDate\": \"2018-06-21T00:00:00\",\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19232,\n        \"propertyAddress\": \"675 Seaview Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217071715\",\n        \"listDate\": \"2017-11-21T00:00:00\",\n        \"expiredDate\": \"2018-05-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-03-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-03-19T00:00:00\",\n        \"processedDate\": \"2018-03-19T14:56:04\",\n        \"closingDate\": \"2018-03-19T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19256,\n        \"propertyAddress\": \"910 Huron Ct, 303, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"2171045DD\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-11-25T00:00:00\",\n        \"cancelDate\": \"2017-12-09T00:00:00\",\n        \"estimatedClosingDate\": \"2018-01-05T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Dave Flowsamples\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19258,\n        \"propertyAddress\": \"1010 Manatee Rd, B-206, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2172233\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-10-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-12-05T00:00:00\",\n        \"processedDate\": \"2017-12-07T11:59:52\",\n        \"closingDate\": \"2017-12-05T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Dave Flowsamples\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19270,\n        \"propertyAddress\": \"994 Spruce Ct, PYMT 1, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-11-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-11-28T00:00:00\",\n        \"processedDate\": \"2017-11-28T14:14:03\",\n        \"closingDate\": \"2017-11-28T00:00:00\",\n        \"listAgent\": \"Sue Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19271,\n        \"propertyAddress\": \"824 Giralda Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2172246\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-11-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-12-28T00:00:00\",\n        \"processedDate\": \"2017-12-28T14:36:00\",\n        \"closingDate\": \"2017-12-27T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19277,\n        \"propertyAddress\": \"2000 Royal Marco Way , 2-508, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217072625\",\n        \"listDate\": \"2017-11-27T00:00:00\",\n        \"expiredDate\": \"2018-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-04-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-05-31T00:00:00\",\n        \"processedDate\": \"2018-06-04T11:21:19\",\n        \"closingDate\": \"2018-05-31T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19281,\n        \"propertyAddress\": \"140 Seaview Ct , 1802, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217072961\",\n        \"listDate\": \"2017-11-28T00:00:00\",\n        \"expiredDate\": \"2018-05-17T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-05-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-06-15T00:00:00\",\n        \"processedDate\": \"2018-06-18T12:40:37\",\n        \"closingDate\": \"2018-06-14T00:00:00\",\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19286,\n        \"propertyAddress\": \"11781 Little Marco Island, Naples, FL 34101\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217053138\",\n        \"listDate\": \"2017-08-15T00:00:00\",\n        \"expiredDate\": \"2018-08-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Sherry Irvsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Broad Avenue\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19290,\n        \"propertyAddress\": \"131 Wild Cherry Ln , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217072867\",\n        \"listDate\": \"2017-11-28T00:00:00\",\n        \"expiredDate\": \"2018-11-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-09-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-10-22T00:00:00\",\n        \"processedDate\": \"2018-10-22T15:41:25\",\n        \"closingDate\": \"2018-10-22T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19316,\n        \"propertyAddress\": \"1124 Strawberry Ct , Marco Island, FL 34145-3556\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217073813\",\n        \"listDate\": \"2017-12-01T00:00:00\",\n        \"expiredDate\": \"2018-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19324,\n        \"propertyAddress\": \"1146 Bald Eagle Dr , D11, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217073777\",\n        \"listDate\": \"2017-12-01T00:00:00\",\n        \"expiredDate\": \"2018-09-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-12-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-01-19T00:00:00\",\n        \"processedDate\": \"2018-01-22T15:13:40\",\n        \"closingDate\": \"2018-01-19T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19327,\n        \"propertyAddress\": \"750 N Collier Boulevard , D104, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2162827\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-11-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-12-18T00:00:00\",\n        \"processedDate\": \"2017-12-20T12:14:25\",\n        \"closingDate\": \"2017-12-18T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Rosemarie Tsampleagni\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19333,\n        \"propertyAddress\": \"1144 Whiteheart Ct, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217072169\",\n        \"listDate\": \"2017-12-04T00:00:00\",\n        \"expiredDate\": \"2018-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19346,\n        \"propertyAddress\": \"608 Waterside Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217074347\",\n        \"listDate\": \"2017-12-05T00:00:00\",\n        \"expiredDate\": \"2018-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-01-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-02-21T00:00:00\",\n        \"processedDate\": \"2018-02-16T08:22:07\",\n        \"closingDate\": \"2018-02-16T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19362,\n        \"propertyAddress\": \"1470 Caxambas Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217075068\",\n        \"listDate\": \"2017-12-06T00:00:00\",\n        \"expiredDate\": \"2018-12-06T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-08-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-10-24T00:00:00\",\n        \"processedDate\": \"2018-10-24T14:21:03\",\n        \"closingDate\": \"2018-10-24T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19371,\n        \"propertyAddress\": \"756 Whiskey Creek Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"4352342\",\n        \"listDate\": \"2020-02-27T00:00:00\",\n        \"expiredDate\": \"2020-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Pamela Parssamples\",\n        \"sellAgent\": \"Meghan Toppsampleo\",\n        \"listOffice\": \"Dorchester\",\n        \"sellOffice\": \"Broad Avenue\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19372,\n        \"propertyAddress\": \"1013 Inlet Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217074785\",\n        \"listDate\": \"2017-12-07T00:00:00\",\n        \"expiredDate\": \"2018-11-20T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19373,\n        \"propertyAddress\": \"1001 Inlet Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217074810\",\n        \"listDate\": \"2017-12-07T00:00:00\",\n        \"expiredDate\": \"2018-11-20T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19376,\n        \"propertyAddress\": \"3000 Royal Marco Way , 3-417, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217075327\",\n        \"listDate\": \"2017-12-07T00:00:00\",\n        \"expiredDate\": \"2018-07-04T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-12-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-03-01T00:00:00\",\n        \"processedDate\": \"2018-03-02T10:30:00\",\n        \"closingDate\": \"2018-03-01T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": \"Cathy Bsampledie\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19377,\n        \"propertyAddress\": \"1457 Butterfield Ct, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218002784\",\n        \"listDate\": \"2018-01-09T00:00:00\",\n        \"expiredDate\": \"2018-12-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Lori Hollsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19383,\n        \"propertyAddress\": \"840 S Collier Blvd , 1704, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217074284\",\n        \"listDate\": \"2017-12-08T00:00:00\",\n        \"expiredDate\": \"2018-11-25T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-01-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-03-08T00:00:00\",\n        \"processedDate\": \"2018-03-14T13:27:38\",\n        \"closingDate\": \"2018-03-08T00:00:00\",\n        \"listAgent\": \"Lura Jsamplees\",\n        \"sellAgent\": \"Paul Strsampleg\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19384,\n        \"propertyAddress\": \"941 Plum Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217075689\",\n        \"listDate\": \"2017-12-08T00:00:00\",\n        \"expiredDate\": \"2018-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-05-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-06-12T00:00:00\",\n        \"processedDate\": \"2018-06-12T16:12:22\",\n        \"closingDate\": \"2018-06-12T00:00:00\",\n        \"listAgent\": \"Agnes Zsamplek\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Dorchester\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19388,\n        \"propertyAddress\": \"580 Barfield Dr S, Marco Island, FL 34145-5921\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217075561\",\n        \"listDate\": \"2017-12-06T00:00:00\",\n        \"expiredDate\": \"2018-12-06T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19401,\n        \"propertyAddress\": \"900 Collier Ct, 301, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217035646\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-12-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-01-22T00:00:00\",\n        \"processedDate\": \"2018-01-23T13:03:29\",\n        \"closingDate\": \"2018-01-22T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19402,\n        \"propertyAddress\": \"1471 Butterfield Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217073811\",\n        \"listDate\": \"2017-12-01T00:00:00\",\n        \"expiredDate\": \"2020-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19404,\n        \"propertyAddress\": \"1065 Dill Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217074809\",\n        \"listDate\": \"2017-12-11T00:00:00\",\n        \"expiredDate\": \"2018-08-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-04-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-07-16T00:00:00\",\n        \"processedDate\": \"2018-07-16T15:03:05\",\n        \"closingDate\": \"2018-07-02T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19433,\n        \"propertyAddress\": \"1000 Royal Marco Way , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217076641\",\n        \"listDate\": \"2017-12-11T00:00:00\",\n        \"expiredDate\": \"2018-06-11T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-03-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-06-15T00:00:00\",\n        \"processedDate\": \"2018-06-18T15:00:48\",\n        \"closingDate\": \"2018-06-18T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19435,\n        \"propertyAddress\": \"321 Hideaway S, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2171521\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-12-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-12-29T00:00:00\",\n        \"processedDate\": \"2017-12-27T14:20:12\",\n        \"closingDate\": \"2017-12-27T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19442,\n        \"propertyAddress\": \"601 Lewis Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217076632\",\n        \"listDate\": \"2017-12-14T00:00:00\",\n        \"expiredDate\": \"2018-07-23T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-01-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-02-12T00:00:00\",\n        \"processedDate\": \"2018-02-12T11:56:23\",\n        \"closingDate\": \"2018-02-12T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19457,\n        \"propertyAddress\": \"2000 Royal Marco Way , 503, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217075641\",\n        \"listDate\": \"2017-11-30T00:00:00\",\n        \"expiredDate\": \"2018-11-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-04-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-05-25T00:00:00\",\n        \"processedDate\": \"2018-06-09T16:08:32\",\n        \"closingDate\": \"2018-05-25T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19459,\n        \"propertyAddress\": \"1261 Stone Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217076684\",\n        \"listDate\": \"2017-12-06T00:00:00\",\n        \"expiredDate\": \"2018-12-06T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19460,\n        \"propertyAddress\": \"902 E Inlet Dr, ,Marco Island, Florida, 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217077213\",\n        \"listDate\": \"2017-12-15T00:00:00\",\n        \"expiredDate\": \"2018-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-06-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-08-01T00:00:00\",\n        \"processedDate\": \"2018-08-02T12:04:34\",\n        \"closingDate\": \"2018-08-01T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19472,\n        \"propertyAddress\": \"1148 Edington Pl, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217077085\",\n        \"listDate\": \"2017-12-18T00:00:00\",\n        \"expiredDate\": \"2018-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19490,\n        \"propertyAddress\": \"00 Keewaydin Island, Naples, FL 34101\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"KONS121917IHE\",\n        \"listDate\": \"2017-11-30T00:00:00\",\n        \"expiredDate\": \"2018-12-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-12-25T00:00:00\",\n        \"cancelDate\": \"2018-01-18T00:00:00\",\n        \"estimatedClosingDate\": \"2018-01-31T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Sherry Irvsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Broad Avenue\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19494,\n        \"propertyAddress\": \"740 Collier Blvd , 205, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"214022542\",\n        \"listDate\": \"2014-04-11T00:00:00\",\n        \"expiredDate\": \"2019-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19500,\n        \"propertyAddress\": \"96011 Stoney Dr, Amelia Island, FL 32034\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-12-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-12-20T00:00:00\",\n        \"processedDate\": \"2017-12-20T15:14:22\",\n        \"closingDate\": \"2017-12-20T00:00:00\",\n        \"listAgent\": \"Patrick OCsamplensample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Fairfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19506,\n        \"propertyAddress\": \"910  Inlet Dr  E, ,Marco Island, Florida, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217078120\",\n        \"listDate\": \"2017-12-20T00:00:00\",\n        \"expiredDate\": \"2018-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19510,\n        \"propertyAddress\": \"220 Sand Hill St, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217077708\",\n        \"listDate\": \"2017-12-21T00:00:00\",\n        \"expiredDate\": \"2018-11-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19511,\n        \"propertyAddress\": \"991 N Barfield Dr, 308, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217064961\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-12-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-12-28T00:00:00\",\n        \"processedDate\": \"2017-12-29T09:51:03\",\n        \"closingDate\": \"2017-12-28T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cullen Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19519,\n        \"propertyAddress\": \"760 N Collier Blvd, 3-201, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217078218\",\n        \"listDate\": \"2017-12-21T00:00:00\",\n        \"expiredDate\": \"2018-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19535,\n        \"propertyAddress\": \"1128 Bald Eagle, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2172656\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-12-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-01-10T00:00:00\",\n        \"processedDate\": \"2018-01-11T13:57:19\",\n        \"closingDate\": \"2018-01-10T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Dave Flowsamples\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19537,\n        \"propertyAddress\": \"Keewaydin Island , Naples, FL 34101\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217076735\",\n        \"listDate\": \"2017-11-30T00:00:00\",\n        \"expiredDate\": \"2018-12-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-12-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-01-31T00:00:00\",\n        \"processedDate\": \"2018-02-01T10:17:17\",\n        \"closingDate\": \"2018-01-31T00:00:00\",\n        \"listAgent\": \"Sherry Irvsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Broad Avenue\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19544,\n        \"propertyAddress\": \"220 Seaview Ct , 315, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217079025W\",\n        \"listDate\": \"2017-12-27T00:00:00\",\n        \"expiredDate\": \"2018-06-27T00:00:00\",\n        \"withdrawnDate\": \"2018-01-05T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Dave Flowsamples\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19551,\n        \"propertyAddress\": \"6000 Royal Marco Way , 557, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217079170\",\n        \"listDate\": \"2017-12-28T00:00:00\",\n        \"expiredDate\": \"2018-12-27T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-01-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-02-12T00:00:00\",\n        \"processedDate\": \"2018-02-12T14:59:34\",\n        \"closingDate\": \"2018-02-12T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19555,\n        \"propertyAddress\": \"1782 Maywood Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217066719\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-12-29T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-01-31T00:00:00\",\n        \"processedDate\": \"2018-02-01T14:29:38\",\n        \"closingDate\": \"2018-01-31T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"ML Msamplede\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19560,\n        \"propertyAddress\": \"875 Sea Dune Ln , Marco Island, FL 34145-1841\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217079351\",\n        \"listDate\": \"2017-12-29T00:00:00\",\n        \"expiredDate\": \"2018-12-19T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-03-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-04-06T00:00:00\",\n        \"processedDate\": \"2018-04-09T14:58:30\",\n        \"closingDate\": \"2018-04-06T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19562,\n        \"propertyAddress\": \"1782 Maywood Ct, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"21706671\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-01-02T00:00:00\",\n        \"cancelDate\": \"2018-01-04T00:00:00\",\n        \"estimatedClosingDate\": \"2018-01-31T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"ML Msamplede\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19566,\n        \"propertyAddress\": \"1634 Barbados Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217079075\",\n        \"listDate\": \"2018-01-02T00:00:00\",\n        \"expiredDate\": \"2018-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19571,\n        \"propertyAddress\": \"130 N Collier Blvd , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217067112\",\n        \"listDate\": \"2017-11-02T00:00:00\",\n        \"expiredDate\": \"2018-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-05-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-07-11T00:00:00\",\n        \"processedDate\": \"2018-07-13T12:58:44\",\n        \"closingDate\": \"2018-07-11T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19582,\n        \"propertyAddress\": \"848 Rose Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218000675\",\n        \"listDate\": \"2018-01-03T00:00:00\",\n        \"expiredDate\": \"2019-01-02T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-04-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-05-03T00:00:00\",\n        \"processedDate\": \"2018-05-04T13:13:10\",\n        \"closingDate\": \"2018-05-03T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19592,\n        \"propertyAddress\": \"961 Collier Ct , 105, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218001263\",\n        \"listDate\": \"2018-01-04T00:00:00\",\n        \"expiredDate\": \"2018-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-02-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-04-03T00:00:00\",\n        \"processedDate\": \"2018-04-04T15:15:59\",\n        \"closingDate\": \"2018-04-03T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19594,\n        \"propertyAddress\": \"960 Cape Marco Drive , 2102, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217050050\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-01-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-01-30T00:00:00\",\n        \"processedDate\": \"2018-01-31T10:05:38\",\n        \"closingDate\": \"2018-01-30T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19603,\n        \"propertyAddress\": \"300 S Collier Blvd, 1904, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218001027\",\n        \"listDate\": \"2018-01-05T00:00:00\",\n        \"expiredDate\": \"2018-09-20T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19609,\n        \"propertyAddress\": \"212 Angler Ct, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"217062262DD\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-01-08T00:00:00\",\n        \"cancelDate\": \"2018-01-16T00:00:00\",\n        \"estimatedClosingDate\": \"2018-01-16T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Sue Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19636,\n        \"propertyAddress\": \"114 Wild Cherry Ln , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218000419\",\n        \"listDate\": \"2018-01-09T00:00:00\",\n        \"expiredDate\": \"2018-12-19T00:00:00\",\n        \"withdrawnDate\": \"2018-12-20T11:26:12\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19646,\n        \"propertyAddress\": \"1515 Leland Way , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218002711\",\n        \"listDate\": \"2018-01-09T00:00:00\",\n        \"expiredDate\": \"2019-05-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19659,\n        \"propertyAddress\": \"571 Barfield Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218002826\",\n        \"listDate\": \"2018-01-10T00:00:00\",\n        \"expiredDate\": \"2019-01-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19699,\n        \"propertyAddress\": \"261 S Collier Blvd , 303, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218003860\",\n        \"listDate\": \"2018-01-09T00:00:00\",\n        \"expiredDate\": \"2018-06-09T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-01-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-02-13T00:00:00\",\n        \"processedDate\": \"2018-02-14T14:19:18\",\n        \"closingDate\": \"2018-02-13T00:00:00\",\n        \"listAgent\": \"Sue Ssampleughnessy\",\n        \"sellAgent\": \"Sue Ssampleughnessy\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19703,\n        \"propertyAddress\": \"377 Beach Lily Ln , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218003954\",\n        \"listDate\": \"2018-01-12T00:00:00\",\n        \"expiredDate\": \"2018-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-03-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-03-21T00:00:00\",\n        \"processedDate\": \"2018-03-22T14:36:19\",\n        \"closingDate\": \"2018-03-21T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19704,\n        \"propertyAddress\": \"465 Gate House Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218002099\",\n        \"listDate\": \"2018-01-10T00:00:00\",\n        \"expiredDate\": \"2018-06-05T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-02-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-03-15T00:00:00\",\n        \"processedDate\": \"2018-03-16T11:59:32\",\n        \"closingDate\": \"2018-03-15T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19705,\n        \"propertyAddress\": \"950 Sand Dune Dr , Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"218003938DD\",\n        \"listDate\": \"2018-01-12T00:00:00\",\n        \"expiredDate\": \"2018-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-03-24T00:00:00\",\n        \"cancelDate\": \"2018-05-15T00:00:00\",\n        \"estimatedClosingDate\": \"2018-05-31T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19706,\n        \"propertyAddress\": \"362 Beach Lily Ln , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218003974\",\n        \"listDate\": \"2018-01-12T00:00:00\",\n        \"expiredDate\": \"2018-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-03-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-03-21T00:00:00\",\n        \"processedDate\": \"2018-03-22T15:03:52\",\n        \"closingDate\": \"2018-03-21T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19711,\n        \"propertyAddress\": \"1167 Lighthouse Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218003967\",\n        \"listDate\": \"2018-01-12T00:00:00\",\n        \"expiredDate\": \"2018-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-02-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-03-26T00:00:00\",\n        \"processedDate\": \"2018-03-27T12:26:37\",\n        \"closingDate\": \"2018-03-26T00:00:00\",\n        \"listAgent\": \"Gwen Tolssample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19713,\n        \"propertyAddress\": \"409 Waterleaf Ct , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"216018207WD2\",\n        \"listDate\": \"2016-03-07T00:00:00\",\n        \"expiredDate\": \"2018-12-31T00:00:00\",\n        \"withdrawnDate\": \"2018-09-17T13:53:16\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19723,\n        \"propertyAddress\": \"219 Sunflower Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2172352\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-01-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-03-08T00:00:00\",\n        \"processedDate\": \"2018-03-09T15:23:57\",\n        \"closingDate\": \"2018-03-07T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cynthia Csampleogin\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19727,\n        \"propertyAddress\": \"440 Seaview Ct , 405, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"217041838W\",\n        \"listDate\": \"2017-06-29T00:00:00\",\n        \"expiredDate\": \"2018-01-30T00:00:00\",\n        \"withdrawnDate\": \"2018-01-16T15:41:05\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19734,\n        \"propertyAddress\": \"577 Seagrape Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217064106\",\n        \"listDate\": \"2017-10-20T00:00:00\",\n        \"expiredDate\": \"2018-10-14T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-01-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-05-24T00:00:00\",\n        \"processedDate\": \"2018-06-07T09:39:06\",\n        \"closingDate\": \"2018-05-24T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": \"Helga Wsamplezold\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19736,\n        \"propertyAddress\": \"440 Seaview Ct, 405, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217041838\",\n        \"listDate\": \"2017-06-29T00:00:00\",\n        \"expiredDate\": \"2018-01-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19753,\n        \"propertyAddress\": \"730 Hull Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216051093\",\n        \"listDate\": \"2016-08-11T00:00:00\",\n        \"expiredDate\": \"2018-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-03-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-04-06T00:00:00\",\n        \"processedDate\": \"2018-04-06T15:16:23\",\n        \"closingDate\": \"2018-04-06T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19760,\n        \"propertyAddress\": \"1402 N Collier Blvd, Slip C57, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2171614\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-01-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-01-29T00:00:00\",\n        \"processedDate\": \"2018-01-29T15:10:43\",\n        \"closingDate\": \"2018-01-29T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jacqueline Ssamplehl\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Dorchester\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19761,\n        \"propertyAddress\": \"530 S COLLIER Blvd, 1101, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"217030947DD\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-01-15T00:00:00\",\n        \"cancelDate\": \"2018-03-09T00:00:00\",\n        \"estimatedClosingDate\": \"2018-03-21T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19762,\n        \"propertyAddress\": \"1608 Barbarosa Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218005177\",\n        \"listDate\": \"2018-01-18T00:00:00\",\n        \"expiredDate\": \"2019-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19773,\n        \"propertyAddress\": \"1023 Anglers Cv , E-201, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218005608\",\n        \"listDate\": \"2018-01-18T00:00:00\",\n        \"expiredDate\": \"2019-01-10T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-02-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-03-26T00:00:00\",\n        \"processedDate\": \"2018-03-27T12:19:07\",\n        \"closingDate\": \"2018-03-26T00:00:00\",\n        \"listAgent\": \"Cullen Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19776,\n        \"propertyAddress\": \"1277 Orange Ct, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218003390\",\n        \"listDate\": \"2018-01-18T00:00:00\",\n        \"expiredDate\": \"2019-01-10T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19784,\n        \"propertyAddress\": \"108 Landmark St , Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"218005766DD\",\n        \"listDate\": \"2018-01-19T00:00:00\",\n        \"expiredDate\": \"2018-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-02-02T00:00:00\",\n        \"cancelDate\": \"2018-03-01T00:00:00\",\n        \"estimatedClosingDate\": \"2018-03-02T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19789,\n        \"propertyAddress\": \"1080 Dana Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217071120\",\n        \"listDate\": \"2018-01-19T00:00:00\",\n        \"expiredDate\": \"2019-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19790,\n        \"propertyAddress\": \"1011 Coronado Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218003928\",\n        \"listDate\": \"2018-01-19T00:00:00\",\n        \"expiredDate\": \"2019-01-17T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-06-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-07-09T00:00:00\",\n        \"processedDate\": \"2018-07-09T13:38:42\",\n        \"closingDate\": \"2018-07-09T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19794,\n        \"propertyAddress\": \"1000 Baltic , Marco Island, FL 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"218005786\",\n        \"listDate\": \"2018-01-19T00:00:00\",\n        \"expiredDate\": \"2019-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-03-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-04-03T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": \"Cathy Bsampledie\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19795,\n        \"propertyAddress\": \"490 Tarpon Ct , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"218005806W\",\n        \"listDate\": \"2018-01-19T00:00:00\",\n        \"expiredDate\": \"2019-06-01T00:00:00\",\n        \"withdrawnDate\": \"2019-03-26T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19796,\n        \"propertyAddress\": \"795 Waterside Dr, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218005813\",\n        \"listDate\": \"2018-01-19T00:00:00\",\n        \"expiredDate\": \"2019-01-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19798,\n        \"propertyAddress\": \"2020 Sheffield Ave , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218006149\",\n        \"listDate\": \"2018-01-19T00:00:00\",\n        \"expiredDate\": \"2018-10-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-02-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-03-29T00:00:00\",\n        \"processedDate\": \"2018-03-29T15:32:01\",\n        \"closingDate\": \"2018-03-29T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19800,\n        \"propertyAddress\": \"1094 Ruppert Rd , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218006097\",\n        \"listDate\": \"2018-01-19T00:00:00\",\n        \"expiredDate\": \"2019-01-18T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-02-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-04-02T00:00:00\",\n        \"processedDate\": \"2018-04-02T14:23:36\",\n        \"closingDate\": \"2018-04-02T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19829,\n        \"propertyAddress\": \"767 BlueBonnet Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2180174\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-01-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-03-09T00:00:00\",\n        \"processedDate\": \"2018-03-12T14:57:13\",\n        \"closingDate\": \"2018-03-09T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"ML Msamplede\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19839,\n        \"propertyAddress\": \"1040 Cottonwood Ct, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218006924\",\n        \"listDate\": \"2018-01-23T00:00:00\",\n        \"expiredDate\": \"2018-07-17T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19840,\n        \"propertyAddress\": \"1137 Breakwater Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218006998\",\n        \"listDate\": \"2018-01-23T00:00:00\",\n        \"expiredDate\": \"2019-01-19T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-02-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-04-25T00:00:00\",\n        \"processedDate\": \"2018-04-25T15:11:00\",\n        \"closingDate\": \"2018-04-25T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19847,\n        \"propertyAddress\": \"680 Kendall Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218004675\",\n        \"listDate\": \"2018-01-23T00:00:00\",\n        \"expiredDate\": \"2018-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-02-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-04-30T00:00:00\",\n        \"processedDate\": \"2018-05-01T12:45:46\",\n        \"closingDate\": \"2018-04-30T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19856,\n        \"propertyAddress\": \"468 Barcelona Ct , Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"217058417DD\",\n        \"listDate\": \"2017-09-25T00:00:00\",\n        \"expiredDate\": \"2018-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-01-24T00:00:00\",\n        \"cancelDate\": \"2018-01-31T00:00:00\",\n        \"estimatedClosingDate\": \"2018-02-08T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19858,\n        \"propertyAddress\": \"220 S Collier Blvd, 702, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2180234\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-01-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-02-07T00:00:00\",\n        \"processedDate\": \"2018-02-07T11:36:55\",\n        \"closingDate\": \"2018-02-07T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Helga Wsamplezold\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19866,\n        \"propertyAddress\": \"1690 Copeland Dr, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"218017618DD\",\n        \"listDate\": \"2018-03-05T00:00:00\",\n        \"expiredDate\": \"2018-06-09T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-03-23T00:00:00\",\n        \"cancelDate\": \"2018-04-04T00:00:00\",\n        \"estimatedClosingDate\": \"2018-06-14T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19868,\n        \"propertyAddress\": \"257  Polynesia Ct, ,Marco Island, Florida, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218007226\",\n        \"listDate\": \"2018-01-25T00:00:00\",\n        \"expiredDate\": \"2019-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19869,\n        \"propertyAddress\": \"1620  Copeland Dr, ,Marco Island, Florida, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218007227\",\n        \"listDate\": \"2018-01-25T00:00:00\",\n        \"expiredDate\": \"2019-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19870,\n        \"propertyAddress\": \"451 Barcelona Ct , Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"218007286DD\",\n        \"listDate\": \"2018-01-25T00:00:00\",\n        \"expiredDate\": \"2018-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-01-29T00:00:00\",\n        \"cancelDate\": \"2018-01-31T00:00:00\",\n        \"estimatedClosingDate\": \"2018-02-14T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19874,\n        \"propertyAddress\": \"1149 Blue Hill Creek Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218006972\",\n        \"listDate\": \"2018-01-26T00:00:00\",\n        \"expiredDate\": \"2018-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-10-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-12-21T00:00:00\",\n        \"processedDate\": \"2018-12-26T11:31:27\",\n        \"closingDate\": \"2018-12-21T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19884,\n        \"propertyAddress\": \"890 S Collier Blvd , 906, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218007988\",\n        \"listDate\": \"2018-01-26T00:00:00\",\n        \"expiredDate\": \"2019-07-26T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-01-31T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-05-21T00:00:00\",\n        \"processedDate\": \"2018-06-01T08:56:40\",\n        \"closingDate\": \"2018-05-21T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19914,\n        \"propertyAddress\": \"1806 Menorca Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218008645\",\n        \"listDate\": \"2018-01-29T00:00:00\",\n        \"expiredDate\": \"2018-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-04-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-07-16T00:00:00\",\n        \"processedDate\": \"2018-07-16T15:07:10\",\n        \"closingDate\": \"2018-07-16T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19916,\n        \"propertyAddress\": \"240 N Collier Blvd, C-6, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217041515\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-01-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-03-16T00:00:00\",\n        \"processedDate\": \"2018-03-19T14:35:40\",\n        \"closingDate\": \"2018-03-14T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19936,\n        \"propertyAddress\": \"1878 Cascade Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218009035\",\n        \"listDate\": \"2018-01-30T00:00:00\",\n        \"expiredDate\": \"2019-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19948,\n        \"propertyAddress\": \"521 Heathwood Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218009395\",\n        \"listDate\": \"2018-02-01T00:00:00\",\n        \"expiredDate\": \"2019-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jacki Stsampletegos\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19957,\n        \"propertyAddress\": \"350 Hazelcrest St , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218009645\",\n        \"listDate\": \"2018-02-01T00:00:00\",\n        \"expiredDate\": \"2019-01-17T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cullen Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19961,\n        \"propertyAddress\": \"468 Barcelona Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217058417\",\n        \"listDate\": \"2017-09-25T00:00:00\",\n        \"expiredDate\": \"2018-05-13T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-01-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-02-08T00:00:00\",\n        \"processedDate\": \"2018-02-09T09:24:11\",\n        \"closingDate\": \"2018-02-08T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19968,\n        \"propertyAddress\": \"451 Barcelona Ct, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218007286\",\n        \"listDate\": \"2018-01-25T00:00:00\",\n        \"expiredDate\": \"2018-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 19969,\n        \"propertyAddress\": \"657 Hernando Dr, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"2172791DD\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-02-02T00:00:00\",\n        \"cancelDate\": \"2018-02-07T00:00:00\",\n        \"estimatedClosingDate\": \"2018-03-19T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Helga Wsamplezold\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20000,\n        \"propertyAddress\": \"730 Collier Blvd , 905, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"218009240WD\",\n        \"listDate\": \"2018-01-31T00:00:00\",\n        \"expiredDate\": \"2019-02-28T00:00:00\",\n        \"withdrawnDate\": \"2018-02-16T15:23:40\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20004,\n        \"propertyAddress\": \"1020 S Collier Blvd , 704, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218010663\",\n        \"listDate\": \"2018-02-05T00:00:00\",\n        \"expiredDate\": \"2019-08-04T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jacki Stsampletegos\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20012,\n        \"propertyAddress\": \"1143 Blue Hill Creek Dr, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217008973\",\n        \"listDate\": \"2017-02-02T00:00:00\",\n        \"expiredDate\": \"2018-04-16T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20014,\n        \"propertyAddress\": \"500 Saturn Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218010831\",\n        \"listDate\": \"2018-02-06T00:00:00\",\n        \"expiredDate\": \"2018-11-05T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-05-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-06-06T00:00:00\",\n        \"processedDate\": \"2018-06-09T16:12:54\",\n        \"closingDate\": \"2018-05-24T00:00:00\",\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20024,\n        \"propertyAddress\": \"140 Seaview Ct , 906S, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218011160\",\n        \"listDate\": \"2018-02-07T00:00:00\",\n        \"expiredDate\": \"2018-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-02-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-03-28T00:00:00\",\n        \"processedDate\": \"2018-03-26T15:08:49\",\n        \"closingDate\": \"2018-03-26T00:00:00\",\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20026,\n        \"propertyAddress\": \"5000 Royal Marco Way , 331, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218007690\",\n        \"listDate\": \"2018-02-07T00:00:00\",\n        \"expiredDate\": \"2019-01-10T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-04-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-06-26T00:00:00\",\n        \"processedDate\": \"2018-06-26T13:48:25\",\n        \"closingDate\": \"2018-06-25T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20037,\n        \"propertyAddress\": \"750 Collier Boulevard, B-107, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218011473\",\n        \"listDate\": \"2018-02-08T00:00:00\",\n        \"expiredDate\": \"2018-10-29T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20053,\n        \"propertyAddress\": \"1023 Anglers Cv , E-201, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"987654321\",\n        \"listDate\": \"2018-03-27T00:00:00\",\n        \"expiredDate\": \"2019-04-17T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Joann Ssamplehn (SIR Premier)\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Dorchester\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20080,\n        \"propertyAddress\": \"907 Panama Ct, 502, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217070199\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-02-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-03-23T00:00:00\",\n        \"processedDate\": \"2018-03-23T12:30:13\",\n        \"closingDate\": \"2018-03-22T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cullen Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20081,\n        \"propertyAddress\": \"480 S Collier Blvd, 603, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217039055\",\n        \"listDate\": \"2017-06-12T00:00:00\",\n        \"expiredDate\": \"2018-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20091,\n        \"propertyAddress\": \"1141 S Collier Blvd, 203, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217078281\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-02-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-04-04T00:00:00\",\n        \"processedDate\": \"2018-04-06T14:30:14\",\n        \"closingDate\": \"2018-04-04T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cathy Bsampledie\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20093,\n        \"propertyAddress\": \"567 Seaview Ct, C4, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-01-31T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-02-13T00:00:00\",\n        \"processedDate\": \"2018-02-13T12:26:58\",\n        \"closingDate\": \"2018-02-13T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20106,\n        \"propertyAddress\": \"828 Amber Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218012708\",\n        \"listDate\": \"2018-02-13T00:00:00\",\n        \"expiredDate\": \"2019-02-05T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-08-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-11-07T00:00:00\",\n        \"processedDate\": \"2018-11-06T11:33:24\",\n        \"closingDate\": \"2018-10-30T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20110,\n        \"propertyAddress\": \"3000 Royal Marco Way, 614, Marco Island, FL, 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"217026383\",\n        \"listDate\": \"2017-04-01T00:00:00\",\n        \"expiredDate\": \"2018-04-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20126,\n        \"propertyAddress\": \"380 Seaview Ct , 805, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218008145\",\n        \"listDate\": \"2018-01-26T00:00:00\",\n        \"expiredDate\": \"2020-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20134,\n        \"propertyAddress\": \"140 Seaview Ct , 1102S, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218013260\",\n        \"listDate\": \"2018-02-15T00:00:00\",\n        \"expiredDate\": \"2019-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-12-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-01-25T00:00:00\",\n        \"processedDate\": \"2019-01-25T13:24:11\",\n        \"closingDate\": \"2019-01-25T00:00:00\",\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20135,\n        \"propertyAddress\": \"80 Hickory Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2172129\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-02-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-04-02T00:00:00\",\n        \"processedDate\": \"2018-05-03T15:34:40\",\n        \"closingDate\": \"2018-04-02T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Darlene sampleddy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20136,\n        \"propertyAddress\": \"840 S Collier Blvd , 102, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"218013340W\",\n        \"listDate\": \"2018-02-15T00:00:00\",\n        \"expiredDate\": \"2018-12-31T00:00:00\",\n        \"withdrawnDate\": \"2018-06-27T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20137,\n        \"propertyAddress\": \"840 S Collier Blvd , 206, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218013481\",\n        \"listDate\": \"2018-02-15T00:00:00\",\n        \"expiredDate\": \"2018-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-06-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-08-27T00:00:00\",\n        \"processedDate\": \"2018-08-31T17:15:26\",\n        \"closingDate\": \"2018-08-16T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20141,\n        \"propertyAddress\": \"960 Cape Marco Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217076997\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-02-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-03-15T00:00:00\",\n        \"processedDate\": \"2018-03-12T15:24:05\",\n        \"closingDate\": \"2018-03-12T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20148,\n        \"propertyAddress\": \"1173 Lighthouse Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217065523\",\n        \"listDate\": \"2017-10-31T00:00:00\",\n        \"expiredDate\": \"2018-07-25T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-02-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-05-01T00:00:00\",\n        \"processedDate\": \"2018-05-02T10:25:18\",\n        \"closingDate\": \"2018-05-01T00:00:00\",\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": \"Cathy Bsampledie\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20149,\n        \"propertyAddress\": \"361 Wild Coffee Ln , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217067220\",\n        \"listDate\": \"2017-11-01T00:00:00\",\n        \"expiredDate\": \"2018-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-03-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-03-16T00:00:00\",\n        \"processedDate\": \"2018-03-16T14:05:10\",\n        \"closingDate\": \"2018-03-16T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20153,\n        \"propertyAddress\": \"335 Cottage Ct, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218013591\",\n        \"listDate\": \"2018-02-16T00:00:00\",\n        \"expiredDate\": \"2018-11-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20175,\n        \"propertyAddress\": \"720 Barfield Dr S, Marco Island, FL 34145-5931\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218012793\",\n        \"listDate\": \"2018-01-23T00:00:00\",\n        \"expiredDate\": \"2019-07-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-12-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-02-28T00:00:00\",\n        \"processedDate\": \"2019-02-28T14:13:29\",\n        \"closingDate\": \"2019-02-28T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20177,\n        \"propertyAddress\": \"1695 Ludlow Rd, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218010600\",\n        \"listDate\": \"2018-02-19T00:00:00\",\n        \"expiredDate\": \"2019-03-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20188,\n        \"propertyAddress\": \"169 Cyrus St, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2180540\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-02-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-04-17T00:00:00\",\n        \"processedDate\": \"2018-04-18T13:10:57\",\n        \"closingDate\": \"2018-04-17T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20196,\n        \"propertyAddress\": \"7528 Novara Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217075696\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-02-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-03-30T00:00:00\",\n        \"processedDate\": \"2018-04-02T15:51:07\",\n        \"closingDate\": \"2018-03-30T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20212,\n        \"propertyAddress\": \"1391 Salvadore Ct , Marco Island, FL 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"218015115\",\n        \"listDate\": \"2018-02-21T00:00:00\",\n        \"expiredDate\": \"2018-11-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-07-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-04-30T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20221,\n        \"propertyAddress\": \"1588 Shores Ct, Marco Island, FL, 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"218015152\",\n        \"listDate\": \"2018-02-22T00:00:00\",\n        \"expiredDate\": \"2019-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20227,\n        \"propertyAddress\": \"890 S Collier Blvd, 1506, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218015475\",\n        \"listDate\": \"2018-02-22T00:00:00\",\n        \"expiredDate\": \"2018-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20270,\n        \"propertyAddress\": \"1824 N Bahama Ave, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2171042\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-02-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-03-21T00:00:00\",\n        \"processedDate\": \"2018-03-21T13:42:00\",\n        \"closingDate\": \"2018-03-21T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20277,\n        \"propertyAddress\": \"25 Covewood Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218015676\",\n        \"listDate\": \"2018-02-27T00:00:00\",\n        \"expiredDate\": \"2018-08-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20306,\n        \"propertyAddress\": \"831 Eubanks Ct, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"2170478DD\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-03-01T00:00:00\",\n        \"cancelDate\": \"2018-03-15T00:00:00\",\n        \"estimatedClosingDate\": \"2018-03-30T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20312,\n        \"propertyAddress\": \"970 Cape Marco Dr, Unit 2305, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-02-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-03-01T00:00:00\",\n        \"processedDate\": \"2018-03-02T11:14:11\",\n        \"closingDate\": \"2018-03-01T00:00:00\",\n        \"listAgent\": \"Christine Jsamplees\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Broad Avenue\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20320,\n        \"propertyAddress\": \"108 Landmark St , Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"218005766DD\",\n        \"listDate\": \"2018-01-19T00:00:00\",\n        \"expiredDate\": \"2018-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-03-01T00:00:00\",\n        \"cancelDate\": \"2018-05-16T00:00:00\",\n        \"estimatedClosingDate\": \"2018-05-18T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20333,\n        \"propertyAddress\": \"805 Dove Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218013763\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-02-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-04-16T00:00:00\",\n        \"processedDate\": \"2018-04-17T10:58:36\",\n        \"closingDate\": \"2018-04-16T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20341,\n        \"propertyAddress\": \"710 Hideaway Cir E, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218017514\",\n        \"listDate\": \"2018-03-02T00:00:00\",\n        \"expiredDate\": \"2019-02-26T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-03-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-06-25T00:00:00\",\n        \"processedDate\": \"2018-06-25T14:25:15\",\n        \"closingDate\": \"2018-06-25T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20344,\n        \"propertyAddress\": \"550 S Barfield Dr, Marco Island, FL 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-02-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-11-30T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20363,\n        \"propertyAddress\": \"342 Meadowland Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218004259\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-03-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-04-11T00:00:00\",\n        \"processedDate\": \"2018-04-12T11:27:17\",\n        \"closingDate\": \"2018-04-11T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20372,\n        \"propertyAddress\": \"900 Huron Ct , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"215011754WD2\",\n        \"listDate\": \"2015-02-18T00:00:00\",\n        \"expiredDate\": \"2018-12-31T00:00:00\",\n        \"withdrawnDate\": \"2018-09-18T09:38:46\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20374,\n        \"propertyAddress\": \"6203 Island Park Ct , Fort Myers, FL 33908\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"218017687DD\",\n        \"listDate\": \"2018-03-05T00:00:00\",\n        \"expiredDate\": \"2018-09-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-03-16T00:00:00\",\n        \"cancelDate\": \"2018-03-25T00:00:00\",\n        \"estimatedClosingDate\": \"2018-05-15T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jacquie Lewsampley\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Boston\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20385,\n        \"propertyAddress\": \"411 S Collier Blvd , 206, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218018261\",\n        \"listDate\": \"2018-03-05T00:00:00\",\n        \"expiredDate\": \"2018-08-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-04-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-05-18T00:00:00\",\n        \"processedDate\": \"2018-06-01T09:10:59\",\n        \"closingDate\": \"2018-05-18T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20386,\n        \"propertyAddress\": \"1230 Osprey Ct, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217042475\",\n        \"listDate\": \"2017-06-27T00:00:00\",\n        \"expiredDate\": \"2018-03-05T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20410,\n        \"propertyAddress\": \"58 N Collier Blvd , 2002, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218018528\",\n        \"listDate\": \"2018-03-06T00:00:00\",\n        \"expiredDate\": \"2019-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-12-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-01-15T00:00:00\",\n        \"processedDate\": \"2019-01-16T11:20:45\",\n        \"closingDate\": \"2019-01-15T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20411,\n        \"propertyAddress\": \"1230 Osprey Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218018468\",\n        \"listDate\": \"2018-03-07T00:00:00\",\n        \"expiredDate\": \"2018-06-05T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-04-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-05-31T00:00:00\",\n        \"processedDate\": \"2018-06-06T07:38:23\",\n        \"closingDate\": \"2018-05-31T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20415,\n        \"propertyAddress\": \"3000 Royal Marco Way, PH-M PH-M, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"217021796W\",\n        \"listDate\": \"2017-03-24T00:00:00\",\n        \"expiredDate\": \"2018-12-01T00:00:00\",\n        \"withdrawnDate\": \"2018-05-17T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20428,\n        \"propertyAddress\": \"688 W Elkcam Cir, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"217048556DD\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-03-06T00:00:00\",\n        \"cancelDate\": \"2018-04-11T00:00:00\",\n        \"estimatedClosingDate\": \"2018-04-23T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Cathy Bsampledie\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20435,\n        \"propertyAddress\": \"851 Scott Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2164121\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-03-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-05-01T00:00:00\",\n        \"processedDate\": \"2018-04-19T13:25:44\",\n        \"closingDate\": \"2018-04-17T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20453,\n        \"propertyAddress\": \"327 Henderson Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218012506\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-03-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-03-21T00:00:00\",\n        \"processedDate\": \"2018-03-22T13:14:06\",\n        \"closingDate\": \"2018-03-21T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Sue Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20461,\n        \"propertyAddress\": \"653 Bimini Ave , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218019509\",\n        \"listDate\": \"2018-03-09T00:00:00\",\n        \"expiredDate\": \"2018-11-24T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-04-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-06-18T00:00:00\",\n        \"processedDate\": \"2018-06-20T16:15:52\",\n        \"closingDate\": \"2018-06-18T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20462,\n        \"propertyAddress\": \"929 Collier Ct , B-102, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218019544\",\n        \"listDate\": \"2018-03-09T00:00:00\",\n        \"expiredDate\": \"2018-12-05T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-03-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-04-20T00:00:00\",\n        \"processedDate\": \"2018-04-23T11:40:02\",\n        \"closingDate\": \"2018-04-20T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20464,\n        \"propertyAddress\": \"561 Hammock Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218019662\",\n        \"listDate\": \"2018-03-09T00:00:00\",\n        \"expiredDate\": \"2018-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-04-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-07-16T00:00:00\",\n        \"processedDate\": \"2018-07-16T15:30:56\",\n        \"closingDate\": \"2018-07-16T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20469,\n        \"propertyAddress\": \"3000 Royal Marco Way , PH-S, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217042399\",\n        \"listDate\": \"2017-06-26T00:00:00\",\n        \"expiredDate\": \"2018-12-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-08-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-08-30T00:00:00\",\n        \"processedDate\": \"2018-08-31T14:50:26\",\n        \"closingDate\": \"2018-08-30T00:00:00\",\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": \"Johanna Bernsamplerdt\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20478,\n        \"propertyAddress\": \"860 Panama Ct, Vantage Pt, Unit 218, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-03-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-03-13T00:00:00\",\n        \"processedDate\": \"2018-03-13T13:16:04\",\n        \"closingDate\": \"2018-03-13T00:00:00\",\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20480,\n        \"propertyAddress\": \"1109 Blue Hill Creek Dr, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217055990\",\n        \"listDate\": \"2017-09-01T00:00:00\",\n        \"expiredDate\": \"2018-06-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20486,\n        \"propertyAddress\": \"2079 San Marco Rd , 2079, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218020218\",\n        \"listDate\": \"2018-03-13T00:00:00\",\n        \"expiredDate\": \"2019-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-02-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-03-05T00:00:00\",\n        \"processedDate\": \"2019-03-07T12:15:50\",\n        \"closingDate\": \"2019-03-06T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20487,\n        \"propertyAddress\": \"180 Waterside Cir , 201, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218020260\",\n        \"listDate\": \"2018-03-13T00:00:00\",\n        \"expiredDate\": \"2018-12-19T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-04-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-05-04T00:00:00\",\n        \"processedDate\": \"2018-05-04T16:04:52\",\n        \"closingDate\": \"2018-05-04T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20488,\n        \"propertyAddress\": \"850 Sea Dune Ln , Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"218020328DD\",\n        \"listDate\": \"2018-03-13T00:00:00\",\n        \"expiredDate\": \"2018-09-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-08-30T00:00:00\",\n        \"cancelDate\": \"2018-09-17T00:00:00\",\n        \"estimatedClosingDate\": \"2018-09-28T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20489,\n        \"propertyAddress\": \"58 N Collier Blvd , 607, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218020378\",\n        \"listDate\": \"2018-03-13T00:00:00\",\n        \"expiredDate\": \"2018-10-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-08-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-10-05T00:00:00\",\n        \"processedDate\": \"2018-10-10T08:58:18\",\n        \"closingDate\": \"2018-10-05T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20507,\n        \"propertyAddress\": \"140 Seaview Ct S, 1104S, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218020329\",\n        \"listDate\": \"2018-03-14T00:00:00\",\n        \"expiredDate\": \"2019-03-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20526,\n        \"propertyAddress\": \"750 N Collier Blvd, B-110, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-03-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-04-04T00:00:00\",\n        \"processedDate\": \"2018-04-05T15:16:20\",\n        \"closingDate\": \"2018-04-04T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20537,\n        \"propertyAddress\": \"1211 Winterberry Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218020793\",\n        \"listDate\": \"2018-03-16T00:00:00\",\n        \"expiredDate\": \"2018-08-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-03-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-04-17T00:00:00\",\n        \"processedDate\": \"2018-04-17T12:03:08\",\n        \"closingDate\": \"2018-04-17T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20554,\n        \"propertyAddress\": \"908 Panama Ct , 506, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218021817\",\n        \"listDate\": \"2018-03-19T00:00:00\",\n        \"expiredDate\": \"2019-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-04-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-06-08T00:00:00\",\n        \"processedDate\": \"2018-06-12T11:58:05\",\n        \"closingDate\": \"2018-06-08T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20563,\n        \"propertyAddress\": \"129 South Seas Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218020407\",\n        \"listDate\": \"2018-03-20T00:00:00\",\n        \"expiredDate\": \"2019-08-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20598,\n        \"propertyAddress\": \"601 E Blackmore Ct, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"217077665DD\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-03-20T00:00:00\",\n        \"cancelDate\": \"2018-03-26T00:00:00\",\n        \"estimatedClosingDate\": \"2018-05-17T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20606,\n        \"propertyAddress\": \"685 Cameo Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218022596\",\n        \"listDate\": \"2018-03-22T00:00:00\",\n        \"expiredDate\": \"2019-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20607,\n        \"propertyAddress\": \"1561 Honeysuckle Ave , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218022600\",\n        \"listDate\": \"2018-03-22T00:00:00\",\n        \"expiredDate\": \"2019-03-14T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-03-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-04-27T00:00:00\",\n        \"processedDate\": \"2018-05-02T13:17:14\",\n        \"closingDate\": \"2018-04-27T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20608,\n        \"propertyAddress\": \"870 Collier Ct , 403, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218022744\",\n        \"listDate\": \"2018-03-22T00:00:00\",\n        \"expiredDate\": \"2018-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-07-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-08-24T00:00:00\",\n        \"processedDate\": \"2018-08-23T11:38:14\",\n        \"closingDate\": \"2018-08-23T00:00:00\",\n        \"listAgent\": \"Sue Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20617,\n        \"propertyAddress\": \"940 Cape Marco Dr, 1906, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218022888\",\n        \"listDate\": \"2018-03-23T00:00:00\",\n        \"expiredDate\": \"2019-04-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20630,\n        \"propertyAddress\": \"231 Seahorse Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2170933\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-03-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-05-17T00:00:00\",\n        \"processedDate\": \"2018-05-17T13:32:45\",\n        \"closingDate\": \"2018-05-17T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Lori Hollsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20632,\n        \"propertyAddress\": \"6203 Island Park Ct, Fort Myers, FL, 33908\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218017687\",\n        \"listDate\": \"2018-03-05T00:00:00\",\n        \"expiredDate\": \"2018-09-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jacquie Lewsampley\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Boston\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20639,\n        \"propertyAddress\": \"1404  Butterfield Ct, ,Marco Island, FL, 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"STET061518IHEWD\",\n        \"listDate\": \"2018-03-26T00:00:00\",\n        \"expiredDate\": \"2018-11-16T00:00:00\",\n        \"withdrawnDate\": \"2018-06-15T16:47:39\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20642,\n        \"propertyAddress\": \"870 Collier Ct , 201, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"218023453DD\",\n        \"listDate\": \"2018-03-26T00:00:00\",\n        \"expiredDate\": \"2018-11-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-04-07T00:00:00\",\n        \"cancelDate\": \"2018-05-09T00:00:00\",\n        \"estimatedClosingDate\": \"2018-06-14T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20667,\n        \"propertyAddress\": \"1083 Old Marco Ln , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"218023970W\",\n        \"listDate\": \"2018-03-28T00:00:00\",\n        \"expiredDate\": \"2019-02-28T00:00:00\",\n        \"withdrawnDate\": \"2019-02-22T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20676,\n        \"propertyAddress\": \"1160 Marlin Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218021158\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-03-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-05-24T00:00:00\",\n        \"processedDate\": \"2018-06-04T11:04:00\",\n        \"closingDate\": \"2018-05-24T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20682,\n        \"propertyAddress\": \"260 Seaview Ct, 612, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218023508\",\n        \"listDate\": \"2018-03-29T00:00:00\",\n        \"expiredDate\": \"2018-09-24T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20683,\n        \"propertyAddress\": \"357 Morning Glory Ln , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218024169\",\n        \"listDate\": \"2018-03-29T00:00:00\",\n        \"expiredDate\": \"2019-03-23T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-02-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-03-26T00:00:00\",\n        \"processedDate\": \"2019-03-26T15:19:06\",\n        \"closingDate\": \"2019-03-26T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20691,\n        \"propertyAddress\": \"601 Seaview Ct , C-402, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218023732W\",\n        \"listDate\": \"2018-03-29T00:00:00\",\n        \"expiredDate\": \"2019-02-04T00:00:00\",\n        \"withdrawnDate\": \"2019-01-17T09:54:43\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20692,\n        \"propertyAddress\": \"180 Waterside Cir , 202, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218024340\",\n        \"listDate\": \"2018-03-29T00:00:00\",\n        \"expiredDate\": \"2019-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20693,\n        \"propertyAddress\": \"4000 Royal Marco Way , 328, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218024389\",\n        \"listDate\": \"2018-03-29T00:00:00\",\n        \"expiredDate\": \"2018-07-28T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-06-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-07-16T00:00:00\",\n        \"processedDate\": \"2018-07-16T15:14:19\",\n        \"closingDate\": \"2018-07-16T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20720,\n        \"propertyAddress\": \"871 Sea Dune Ln, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218024686\",\n        \"listDate\": \"2018-04-02T00:00:00\",\n        \"expiredDate\": \"2019-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20721,\n        \"propertyAddress\": \"967 Iris PYMT 1 Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-03-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-04-02T00:00:00\",\n        \"processedDate\": \"2018-04-02T15:33:44\",\n        \"closingDate\": \"2018-04-02T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20724,\n        \"propertyAddress\": \"929 Whiskey Creek Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215072152\",\n        \"listDate\": \"2015-12-22T00:00:00\",\n        \"expiredDate\": \"2019-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-09-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-12-10T00:00:00\",\n        \"processedDate\": \"2018-11-09T15:50:30\",\n        \"closingDate\": \"2018-11-09T00:00:00\",\n        \"listAgent\": \"Mark Masamplen\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Bay Village\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20741,\n        \"propertyAddress\": \"946 Sand Dune Drive, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215061725\",\n        \"listDate\": \"2015-11-02T00:00:00\",\n        \"expiredDate\": \"2018-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-04-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-10-29T00:00:00\",\n        \"processedDate\": \"2018-08-28T15:37:47\",\n        \"closingDate\": \"2018-08-28T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20759,\n        \"propertyAddress\": \"1690 N Copeland Dr, ,Marco Island, Florida, 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"FARR060118IHEDD\",\n        \"listDate\": \"2018-03-05T00:00:00\",\n        \"expiredDate\": \"2018-10-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-11-06T00:00:00\",\n        \"cancelDate\": \"2018-12-11T00:00:00\",\n        \"estimatedClosingDate\": \"2018-12-12T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20774,\n        \"propertyAddress\": \"32 Gulfport Ct., PYMT 2 Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-03-31T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-04-05T00:00:00\",\n        \"processedDate\": \"2018-04-05T13:54:29\",\n        \"closingDate\": \"2018-04-05T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20789,\n        \"propertyAddress\": \"320 Seaview Ct , 2010, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218025188\",\n        \"listDate\": \"2018-04-06T00:00:00\",\n        \"expiredDate\": \"2019-03-04T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-01-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-02-27T00:00:00\",\n        \"processedDate\": \"2019-02-22T13:36:51\",\n        \"closingDate\": \"2019-02-22T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": \"Helga Wsamplezold\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20795,\n        \"propertyAddress\": \"880 Huron Ct , 2-105, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218026272\",\n        \"listDate\": \"2018-04-06T00:00:00\",\n        \"expiredDate\": \"2018-12-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-05-29T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-07-25T00:00:00\",\n        \"processedDate\": \"2018-07-26T11:50:50\",\n        \"closingDate\": \"2018-07-24T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20796,\n        \"propertyAddress\": \"32 Gulfport Ct, Marco Island, FL, 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"218026284\",\n        \"listDate\": \"2018-04-06T00:00:00\",\n        \"expiredDate\": \"2019-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20798,\n        \"propertyAddress\": \"174 S Collier Blvd, 706,Marco Island, FL, 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218026396\",\n        \"listDate\": \"2018-04-06T00:00:00\",\n        \"expiredDate\": \"2019-03-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-06-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-07-31T00:00:00\",\n        \"processedDate\": \"2018-07-17T10:50:30\",\n        \"closingDate\": \"2018-07-13T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20809,\n        \"propertyAddress\": \"740 N Collier Blvd , 2-304, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217023552\",\n        \"listDate\": \"2017-03-30T00:00:00\",\n        \"expiredDate\": \"2018-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-04-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-05-22T00:00:00\",\n        \"processedDate\": \"2018-06-01T10:08:42\",\n        \"closingDate\": \"2018-05-22T00:00:00\",\n        \"listAgent\": \"Rosemarie Tsampleagni\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20813,\n        \"propertyAddress\": \"2019 San Marco Rd, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218026568\",\n        \"listDate\": \"2018-04-09T00:00:00\",\n        \"expiredDate\": \"2018-11-09T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20818,\n        \"propertyAddress\": \"750 W Elkcam Cir, 318, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2181080\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-04-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-04-27T00:00:00\",\n        \"processedDate\": \"2018-04-27T15:09:10\",\n        \"closingDate\": \"2018-04-27T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Janice samplegel\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20837,\n        \"propertyAddress\": \"1402 N Collier Blvd, B-83, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2181083\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-04-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-05-15T00:00:00\",\n        \"processedDate\": \"2018-05-15T14:49:31\",\n        \"closingDate\": \"2018-05-15T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20855,\n        \"propertyAddress\": \"706 Waterside Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218027390\",\n        \"listDate\": \"2018-04-12T00:00:00\",\n        \"expiredDate\": \"2019-03-29T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20860,\n        \"propertyAddress\": \"260 Seaview Ct, 1708, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218027677\",\n        \"listDate\": \"2018-05-04T00:00:00\",\n        \"expiredDate\": \"2019-04-05T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-06-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-07-31T00:00:00\",\n        \"processedDate\": \"2018-07-31T14:43:50\",\n        \"closingDate\": \"2018-07-31T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20867,\n        \"propertyAddress\": \"51 Useppa Island, Captiva, FL 33924\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-03-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-04-13T00:00:00\",\n        \"processedDate\": \"2018-04-13T15:31:54\",\n        \"closingDate\": \"2018-04-13T00:00:00\",\n        \"listAgent\": \"Jeffrey Bsamplens\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Cambridge\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20891,\n        \"propertyAddress\": \"901 Collier Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-04-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-04-16T00:00:00\",\n        \"processedDate\": \"2018-04-16T14:46:23\",\n        \"closingDate\": \"2018-04-16T00:00:00\",\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20893,\n        \"propertyAddress\": \"1217  Bluebird Ave, ,Marco Island, FL, 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"217057927W\",\n        \"listDate\": \"2017-09-21T00:00:00\",\n        \"expiredDate\": \"2019-06-01T00:00:00\",\n        \"withdrawnDate\": \"2018-05-18T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Dave Flowsamples\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20899,\n        \"propertyAddress\": \"4000 Royal Marco Way , 526, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"218028327DD\",\n        \"listDate\": \"2018-04-16T00:00:00\",\n        \"expiredDate\": \"2019-01-09T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-09-21T00:00:00\",\n        \"cancelDate\": \"2018-10-12T00:00:00\",\n        \"estimatedClosingDate\": \"2018-12-17T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20903,\n        \"propertyAddress\": \"240 Seaview Ct , 304, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218028644\",\n        \"listDate\": \"2018-04-16T00:00:00\",\n        \"expiredDate\": \"2019-03-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-11-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-12-03T00:00:00\",\n        \"processedDate\": \"2018-12-03T13:34:46\",\n        \"closingDate\": \"2018-12-03T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20905,\n        \"propertyAddress\": \"1510 Collingswood Ave , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218028706\",\n        \"listDate\": \"2018-04-16T00:00:00\",\n        \"expiredDate\": \"2018-10-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-06-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-07-16T00:00:00\",\n        \"processedDate\": \"2018-07-16T15:40:27\",\n        \"closingDate\": \"2018-07-16T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20906,\n        \"propertyAddress\": \"1216 Fruitland Ave , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218028773\",\n        \"listDate\": \"2018-04-16T00:00:00\",\n        \"expiredDate\": \"2019-01-13T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-04-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-05-11T00:00:00\",\n        \"processedDate\": \"2018-05-14T10:57:19\",\n        \"closingDate\": \"2018-05-11T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"ML Msamplede\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20907,\n        \"propertyAddress\": \"330 Marquesas Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218007024\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-04-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-10-05T00:00:00\",\n        \"processedDate\": \"2018-10-08T11:36:14\",\n        \"closingDate\": \"2018-10-05T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20916,\n        \"propertyAddress\": \"245 Waterside Cir , 6-102, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218028870\",\n        \"listDate\": \"2018-04-17T00:00:00\",\n        \"expiredDate\": \"2019-01-05T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-07-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-08-22T00:00:00\",\n        \"processedDate\": \"2018-08-23T13:35:45\",\n        \"closingDate\": \"2018-08-22T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20924,\n        \"propertyAddress\": \"240 Castaways St, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2181048\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-04-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-05-30T00:00:00\",\n        \"processedDate\": \"2018-06-09T16:20:22\",\n        \"closingDate\": \"2018-05-25T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Darlene sampleddy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20941,\n        \"propertyAddress\": \"140  Seaview Ct, 901S,Marco Island, Florida, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218029469\",\n        \"listDate\": \"2018-04-19T00:00:00\",\n        \"expiredDate\": \"2019-05-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20952,\n        \"propertyAddress\": \"327 Useppa Island , Useppa Island, FL 33924\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"216032983WD\",\n        \"listDate\": \"2016-05-11T00:00:00\",\n        \"expiredDate\": \"2019-07-31T00:00:00\",\n        \"withdrawnDate\": \"2019-03-29T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Brian McCsamplegan\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Cambridge\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20954,\n        \"propertyAddress\": \"310 Useppa Island , Useppa Island, FL 33924\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216077779\",\n        \"listDate\": \"2017-01-12T00:00:00\",\n        \"expiredDate\": \"2019-09-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Brian McCsamplegan\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Cambridge\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20955,\n        \"propertyAddress\": \"508  Useppa Island, ,Useppa Island, FL, 33924\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216051928\",\n        \"listDate\": \"2016-09-02T00:00:00\",\n        \"expiredDate\": \"2019-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Brian McCsamplegan\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Cambridge\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20956,\n        \"propertyAddress\": \"329 Useppa Island , Useppa Island, FL 33924\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217073576\",\n        \"listDate\": \"2017-12-01T00:00:00\",\n        \"expiredDate\": \"2019-05-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Brian McCsamplegan\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Cambridge\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20957,\n        \"propertyAddress\": \"524 Useppa Island, Captiva, FL 33924\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217010290\",\n        \"listDate\": \"2017-02-06T00:00:00\",\n        \"expiredDate\": \"2018-08-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Brian McCsamplegan\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Cambridge\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20960,\n        \"propertyAddress\": \"511 Useppa Island, Captiva, FL 33924\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"215062358\",\n        \"listDate\": \"2015-11-02T00:00:00\",\n        \"expiredDate\": \"2019-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-02-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-03-19T00:00:00\",\n        \"processedDate\": \"2019-03-20T15:04:08\",\n        \"closingDate\": \"2019-03-19T00:00:00\",\n        \"listAgent\": \"Brian McCsamplegan\",\n        \"sellAgent\": \"Brian McCsamplegan\",\n        \"listOffice\": \"Cambridge\",\n        \"sellOffice\": \"Cambridge\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20961,\n        \"propertyAddress\": \"325 Useppa Island , Useppa Island, FL 33924\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218017828\",\n        \"listDate\": \"2018-03-10T00:00:00\",\n        \"expiredDate\": \"2018-08-02T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Brian McCsamplegan\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Cambridge\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20963,\n        \"propertyAddress\": \"105 Useppa Island, A, Useppa Island, FL 33924\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217051555\",\n        \"listDate\": \"2017-08-08T00:00:00\",\n        \"expiredDate\": \"2018-08-02T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Brian McCsamplegan\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Cambridge\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20964,\n        \"propertyAddress\": \"159 South Seas Ct, Marco Island, FL, 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"218029791\",\n        \"listDate\": \"2018-04-20T00:00:00\",\n        \"expiredDate\": \"2019-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20967,\n        \"propertyAddress\": \"215 Useppa , Useppa Island, FL 33924\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218014571\",\n        \"listDate\": \"2018-02-21T00:00:00\",\n        \"expiredDate\": \"2019-02-18T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-06-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-07-31T00:00:00\",\n        \"processedDate\": \"2018-08-02T11:56:16\",\n        \"closingDate\": \"2018-07-31T00:00:00\",\n        \"listAgent\": \"Brian McCsamplegan\",\n        \"sellAgent\": \"Brian McCsamplegan\",\n        \"listOffice\": \"Cambridge\",\n        \"sellOffice\": \"Cambridge\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20968,\n        \"propertyAddress\": \"320 Useppa Island , Useppa Island, FL 33924\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217009330\",\n        \"listDate\": \"2017-08-23T00:00:00\",\n        \"expiredDate\": \"2018-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Brian McCsamplegan\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Cambridge\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20969,\n        \"propertyAddress\": \"517 Useppa Island, Captiva, FL 33924\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"216017463\",\n        \"listDate\": \"2016-03-08T00:00:00\",\n        \"expiredDate\": \"2018-08-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Brian McCsamplegan\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Cambridge\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20974,\n        \"propertyAddress\": \"235 Seaview Ct, G-4, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2181145\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-04-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-06-05T00:00:00\",\n        \"processedDate\": \"2018-06-13T14:44:42\",\n        \"closingDate\": \"2018-06-05T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jacki Stsampletegos\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20980,\n        \"propertyAddress\": \"951 Inlet Dr , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"217068840W\",\n        \"listDate\": \"2017-11-10T00:00:00\",\n        \"expiredDate\": \"2018-08-31T00:00:00\",\n        \"withdrawnDate\": \"2018-04-25T11:25:28\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20986,\n        \"propertyAddress\": \"993 Fieldstone Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217072383\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-04-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-06-20T00:00:00\",\n        \"processedDate\": \"2018-06-21T13:34:03\",\n        \"closingDate\": \"2018-06-19T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Vince Cosamplece\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 20997,\n        \"propertyAddress\": \"951 Inlet Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218030674\",\n        \"listDate\": \"2018-04-24T00:00:00\",\n        \"expiredDate\": \"2019-03-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21018,\n        \"propertyAddress\": \"149 Bald Eagle Dr, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218031181\",\n        \"listDate\": \"2018-04-26T00:00:00\",\n        \"expiredDate\": \"2018-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21028,\n        \"propertyAddress\": \"1143 Blue hill Crk, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218029012\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-04-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-05-31T00:00:00\",\n        \"processedDate\": \"2018-06-04T11:25:44\",\n        \"closingDate\": \"2018-05-31T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21043,\n        \"propertyAddress\": \"761 W Elkcam Cir , B109, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"218031700W\",\n        \"listDate\": \"2018-04-27T00:00:00\",\n        \"expiredDate\": \"2018-12-31T00:00:00\",\n        \"withdrawnDate\": \"2018-12-28T09:59:05\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21047,\n        \"propertyAddress\": \"748 N Barfield Dr, Marco Island, FL, 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"217048718\",\n        \"listDate\": \"2017-07-31T00:00:00\",\n        \"expiredDate\": \"2018-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21053,\n        \"propertyAddress\": \"748 N Barfield Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218032080\",\n        \"listDate\": \"2018-04-30T00:00:00\",\n        \"expiredDate\": \"2019-01-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-09-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-11-07T00:00:00\",\n        \"processedDate\": \"2018-11-07T14:52:10\",\n        \"closingDate\": \"2018-11-07T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21063,\n        \"propertyAddress\": \"1078 Cottonwood Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218032318\",\n        \"listDate\": \"2018-05-01T00:00:00\",\n        \"expiredDate\": \"2019-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21066,\n        \"propertyAddress\": \"3000 Royal Marco Way, 321, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218031628\",\n        \"listDate\": \"2018-05-01T00:00:00\",\n        \"expiredDate\": \"2019-04-25T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21071,\n        \"propertyAddress\": \"900 Collier Court , 406, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218018221\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-04-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-05-11T00:00:00\",\n        \"processedDate\": \"2018-05-11T13:36:04\",\n        \"closingDate\": \"2018-05-11T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cathy Bsampledie\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21078,\n        \"propertyAddress\": \"860 Panama Ct , 114, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218032420W\",\n        \"listDate\": \"2018-05-01T00:00:00\",\n        \"expiredDate\": \"2019-03-02T00:00:00\",\n        \"withdrawnDate\": \"2018-07-20T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21092,\n        \"propertyAddress\": \"961 Collier Ct , 107, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217033308\",\n        \"listDate\": \"2017-05-11T00:00:00\",\n        \"expiredDate\": \"2019-05-03T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-05-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-06-11T00:00:00\",\n        \"processedDate\": \"2018-06-13T15:01:10\",\n        \"closingDate\": \"2018-06-11T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21104,\n        \"propertyAddress\": \"1530 Winterberry Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218033144\",\n        \"listDate\": \"2018-05-04T00:00:00\",\n        \"expiredDate\": \"2019-01-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-07-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-10-03T00:00:00\",\n        \"processedDate\": \"2018-10-04T13:28:55\",\n        \"closingDate\": \"2018-10-03T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21107,\n        \"propertyAddress\": \"900 Collier Ct, 306, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218016648\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-05-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-05-24T00:00:00\",\n        \"processedDate\": \"2018-06-06T15:56:17\",\n        \"closingDate\": \"2018-05-24T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21124,\n        \"propertyAddress\": \"1559 Caxambas Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217061341\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-05-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-07-11T00:00:00\",\n        \"processedDate\": \"2018-07-11T15:14:45\",\n        \"closingDate\": \"2018-07-11T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Vince Cosamplece\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21130,\n        \"propertyAddress\": \"1490 Winterberry Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218033513\",\n        \"listDate\": \"2018-05-08T00:00:00\",\n        \"expiredDate\": \"2019-02-05T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-05-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-06-20T00:00:00\",\n        \"processedDate\": \"2018-06-21T15:15:46\",\n        \"closingDate\": \"2018-06-20T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21143,\n        \"propertyAddress\": \"1095 Dill Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2180505\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-05-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-06-06T00:00:00\",\n        \"processedDate\": \"2018-06-07T12:07:38\",\n        \"closingDate\": \"2018-06-06T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21155,\n        \"propertyAddress\": \"870 Collier Ct , 201, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"218023453W\",\n        \"listDate\": \"2018-03-26T00:00:00\",\n        \"expiredDate\": \"2018-11-30T00:00:00\",\n        \"withdrawnDate\": \"2018-05-10T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21158,\n        \"propertyAddress\": \"996 Spruce Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218005004\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-05-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-06-28T00:00:00\",\n        \"processedDate\": \"2018-06-29T11:54:24\",\n        \"closingDate\": \"2018-06-28T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cynthia Csampleogin\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21159,\n        \"propertyAddress\": \"870 Collier Ct, 201, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218023453\",\n        \"listDate\": \"2018-03-26T00:00:00\",\n        \"expiredDate\": \"2018-11-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21172,\n        \"propertyAddress\": \"8902 Lely Island Cir, Naples, FL 34113\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217078881\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-05-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-06-22T00:00:00\",\n        \"processedDate\": \"2018-06-22T12:41:30\",\n        \"closingDate\": \"2018-06-21T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jacki Stsampletegos\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21191,\n        \"propertyAddress\": \"824  Hideaway Cir  E, 3-324,Marco Island, Florida, 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218034948\",\n        \"listDate\": \"2018-05-14T00:00:00\",\n        \"expiredDate\": \"2018-11-10T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-07-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-08-28T00:00:00\",\n        \"processedDate\": \"2018-08-28T15:25:53\",\n        \"closingDate\": \"2018-08-28T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21202,\n        \"propertyAddress\": \"14520 Jekyll Island Ct, Naples, FL, 34119\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"218034921\",\n        \"listDate\": \"2018-05-14T00:00:00\",\n        \"expiredDate\": \"2018-09-18T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Monica samplewn\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Dorchester\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21206,\n        \"propertyAddress\": \"108 Landmark St , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"218005766\",\n        \"listDate\": \"2018-01-19T00:00:00\",\n        \"expiredDate\": \"2018-05-31T00:00:00\",\n        \"withdrawnDate\": \"2019-11-04T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21209,\n        \"propertyAddress\": \"950 Sand Dune Dr , Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"218003938DDD\",\n        \"listDate\": \"2018-01-12T00:00:00\",\n        \"expiredDate\": \"2019-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-02-07T00:00:00\",\n        \"cancelDate\": \"2019-02-26T00:00:00\",\n        \"estimatedClosingDate\": \"2019-03-07T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21212,\n        \"propertyAddress\": \"900 S Collier Blvd, 303, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218035584\",\n        \"listDate\": \"2018-05-15T00:00:00\",\n        \"expiredDate\": \"2019-08-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21266,\n        \"propertyAddress\": \"1929 Indian Hill Street, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218035833\",\n        \"listDate\": \"2018-05-18T00:00:00\",\n        \"expiredDate\": \"2019-05-18T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21270,\n        \"propertyAddress\": \"20 Covewood Court, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218037736\",\n        \"listDate\": \"2018-05-24T00:00:00\",\n        \"expiredDate\": \"2018-11-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-07-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-10-05T00:00:00\",\n        \"processedDate\": \"2018-10-08T11:43:10\",\n        \"closingDate\": \"2018-10-05T00:00:00\",\n        \"listAgent\": \"Janice samplegel\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21279,\n        \"propertyAddress\": \"1100 S Collier Boulevard, 920, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"218036864W\",\n        \"listDate\": \"2018-05-22T00:00:00\",\n        \"expiredDate\": \"2019-04-30T00:00:00\",\n        \"withdrawnDate\": \"2019-02-19T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21286,\n        \"propertyAddress\": \"370 Cottage Ct, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218037382\",\n        \"listDate\": \"2018-05-24T00:00:00\",\n        \"expiredDate\": \"2019-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21287,\n        \"propertyAddress\": \"1070 S Collier Blvd, PH-E, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218038875\",\n        \"listDate\": \"2018-06-01T00:00:00\",\n        \"expiredDate\": \"2019-03-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21288,\n        \"propertyAddress\": \"761 Plantation Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218038873\",\n        \"listDate\": \"2018-06-01T00:00:00\",\n        \"expiredDate\": \"2019-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-12-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-01-30T00:00:00\",\n        \"processedDate\": \"2019-01-30T15:06:16\",\n        \"closingDate\": \"2019-01-29T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21289,\n        \"propertyAddress\": \"933 Collier Court, C102, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218036381\",\n        \"listDate\": \"2018-05-18T00:00:00\",\n        \"expiredDate\": \"2018-10-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-07-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-08-30T00:00:00\",\n        \"processedDate\": \"2018-08-31T09:24:02\",\n        \"closingDate\": \"2018-08-30T00:00:00\",\n        \"listAgent\": \"Janice samplegel\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21293,\n        \"propertyAddress\": \"380 Cottage Court, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218037384\",\n        \"listDate\": \"2018-05-24T00:00:00\",\n        \"expiredDate\": \"2019-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21297,\n        \"propertyAddress\": \"1857 San Marco Rd, PH-1, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218036331\",\n        \"listDate\": \"2018-05-24T00:00:00\",\n        \"expiredDate\": \"2019-05-09T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21301,\n        \"propertyAddress\": \"439 Marquesas Court, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218037088\",\n        \"listDate\": \"2018-05-23T00:00:00\",\n        \"expiredDate\": \"2019-05-19T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-06-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-08-31T00:00:00\",\n        \"processedDate\": \"2018-09-04T12:03:07\",\n        \"closingDate\": \"2018-08-31T00:00:00\",\n        \"listAgent\": \"Gwen Tolssample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21306,\n        \"propertyAddress\": \"1044 Cottonwood Court, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218036734\",\n        \"listDate\": \"2018-05-21T00:00:00\",\n        \"expiredDate\": \"2019-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21307,\n        \"propertyAddress\": \"1121 Swallow Avenue, 701, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218036172\",\n        \"listDate\": \"2018-05-18T00:00:00\",\n        \"expiredDate\": \"2019-05-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-01-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-01-25T00:00:00\",\n        \"processedDate\": \"2019-01-25T11:40:15\",\n        \"closingDate\": \"2019-01-25T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": \"Helga Wsamplezold\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21310,\n        \"propertyAddress\": \"848 Rose Court, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218038165\",\n        \"listDate\": \"2018-05-29T00:00:00\",\n        \"expiredDate\": \"2019-02-09T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-06-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-08-31T00:00:00\",\n        \"processedDate\": \"2018-09-04T11:57:25\",\n        \"closingDate\": \"2018-08-31T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21313,\n        \"propertyAddress\": \"621 S Barfield Drive, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218035735\",\n        \"listDate\": \"2018-05-16T00:00:00\",\n        \"expiredDate\": \"2019-01-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-08-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-11-14T00:00:00\",\n        \"processedDate\": \"2018-11-15T15:33:17\",\n        \"closingDate\": \"2018-11-14T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21323,\n        \"propertyAddress\": \"142 Useppa Island, B, Useppa Island, FL, 33924\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"218037293\",\n        \"listDate\": \"2018-05-23T00:00:00\",\n        \"expiredDate\": \"2019-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle sample-sampleuzier\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Lexington\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21328,\n        \"propertyAddress\": \"142 Useppa Island, A, Useppa Island, FL, 33924\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"218037298\",\n        \"listDate\": \"2018-05-23T00:00:00\",\n        \"expiredDate\": \"2019-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle sample-sampleuzier\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Lexington\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21335,\n        \"propertyAddress\": \"235 Seaview Ct, G1, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218020145\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-05-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-07-02T00:00:00\",\n        \"processedDate\": \"2018-07-02T14:49:08\",\n        \"closingDate\": \"2018-07-02T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21336,\n        \"propertyAddress\": \"1128 Bald  Eagle , 101, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2181430\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-05-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-07-13T00:00:00\",\n        \"processedDate\": \"2018-07-12T13:22:25\",\n        \"closingDate\": \"2018-07-06T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Dave Flowsamples\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21345,\n        \"propertyAddress\": \"720 N Collier Blvd, 304, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218032998\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-05-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-07-30T00:00:00\",\n        \"processedDate\": \"2018-07-31T09:32:09\",\n        \"closingDate\": \"2018-07-30T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cathy Bsampledie\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21366,\n        \"propertyAddress\": \"108 Landmark St,PYMT 1, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-05-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-05-25T00:00:00\",\n        \"processedDate\": \"2018-06-06T09:06:00\",\n        \"closingDate\": \"2018-05-25T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21373,\n        \"propertyAddress\": \"846 Elm Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218038259\",\n        \"listDate\": \"2018-05-29T00:00:00\",\n        \"expiredDate\": \"2018-11-23T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21374,\n        \"propertyAddress\": \"945 Royal Marco Way , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218038273\",\n        \"listDate\": \"2018-06-01T00:00:00\",\n        \"expiredDate\": \"2019-05-18T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21375,\n        \"propertyAddress\": \"221 Hideaway Cir N, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218034144\",\n        \"listDate\": \"2018-06-01T00:00:00\",\n        \"expiredDate\": \"2018-11-05T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21424,\n        \"propertyAddress\": \"452 Parkhouse Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218004694\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-05-31T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-07-19T00:00:00\",\n        \"processedDate\": \"2018-07-19T11:18:33\",\n        \"closingDate\": \"2018-07-19T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Helga Wsamplezold\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21433,\n        \"propertyAddress\": \"1621 Begonia Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218039394\",\n        \"listDate\": \"2018-06-04T00:00:00\",\n        \"expiredDate\": \"2019-06-03T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jacki Stsampletegos\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21434,\n        \"propertyAddress\": \"1124 Strawberry Ct , Marco Island, FL 34145-3556\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218040572\",\n        \"listDate\": \"2018-06-08T00:00:00\",\n        \"expiredDate\": \"2019-06-07T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-07-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-09-18T00:00:00\",\n        \"processedDate\": \"2018-09-18T14:38:22\",\n        \"closingDate\": \"2018-09-18T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21438,\n        \"propertyAddress\": \"258 Bass Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218039824\",\n        \"listDate\": \"2018-06-07T00:00:00\",\n        \"expiredDate\": \"2019-03-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-06-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-08-29T00:00:00\",\n        \"processedDate\": \"2018-08-21T13:31:19\",\n        \"closingDate\": \"2018-08-16T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21450,\n        \"propertyAddress\": \"182 Coral Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218038743\",\n        \"listDate\": \"2018-05-31T00:00:00\",\n        \"expiredDate\": \"2019-11-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21451,\n        \"propertyAddress\": \"1150 Blue Hill Creek Dr , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"218040943W\",\n        \"listDate\": \"2018-06-11T00:00:00\",\n        \"expiredDate\": \"2019-06-07T00:00:00\",\n        \"withdrawnDate\": \"2019-02-20T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Lura Jsamplees\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21470,\n        \"propertyAddress\": \"716 Waterside Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"CONA060418IHE\",\n        \"listDate\": \"2018-06-04T00:00:00\",\n        \"expiredDate\": \"2018-12-04T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-06-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-07-20T00:00:00\",\n        \"processedDate\": \"2018-07-20T16:01:55\",\n        \"closingDate\": \"2018-07-20T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21471,\n        \"propertyAddress\": \"2011 Sheffield Ave , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218041250\",\n        \"listDate\": \"2018-06-12T00:00:00\",\n        \"expiredDate\": \"2019-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21474,\n        \"propertyAddress\": \"373 Rookery Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218026695\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-05-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-06-29T00:00:00\",\n        \"processedDate\": \"2018-06-29T14:06:04\",\n        \"closingDate\": \"2018-06-29T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Sue Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21493,\n        \"propertyAddress\": \"520 S Collier Blvd , 807, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218041189\",\n        \"listDate\": \"2018-06-14T00:00:00\",\n        \"expiredDate\": \"2019-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21500,\n        \"propertyAddress\": \"180 Seaview Ct Unit 105, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-05-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-06-15T00:00:00\",\n        \"processedDate\": \"2018-06-15T15:28:00\",\n        \"closingDate\": \"2018-06-15T00:00:00\",\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21518,\n        \"propertyAddress\": \"320 Seaview Ct , 2-703, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218038379\",\n        \"listDate\": \"2018-05-30T00:00:00\",\n        \"expiredDate\": \"2019-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21533,\n        \"propertyAddress\": \"270 N Collier Blvd, 603, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218041974\",\n        \"listDate\": \"2018-06-15T00:00:00\",\n        \"expiredDate\": \"2018-08-29T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21539,\n        \"propertyAddress\": \"4000 Royal Marco Way , 927, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218042444\",\n        \"listDate\": \"2018-06-18T00:00:00\",\n        \"expiredDate\": \"2019-05-10T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-09-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-11-30T00:00:00\",\n        \"processedDate\": \"2018-11-19T15:31:26\",\n        \"closingDate\": \"2018-11-16T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21547,\n        \"propertyAddress\": \"991 Collier Ct, B203, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"SIMM061918W\",\n        \"listDate\": \"2018-05-14T00:00:00\",\n        \"expiredDate\": \"2019-05-14T00:00:00\",\n        \"withdrawnDate\": \"2018-06-20T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21548,\n        \"propertyAddress\": \"991 Collier Ct, B203, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"SIMM061918IHEDD\",\n        \"listDate\": \"2018-06-19T00:00:00\",\n        \"expiredDate\": \"2019-05-04T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-06-19T00:00:00\",\n        \"cancelDate\": \"2018-06-27T00:00:00\",\n        \"estimatedClosingDate\": \"2018-07-17T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21549,\n        \"propertyAddress\": \"289 N Barfield Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218042570\",\n        \"listDate\": \"2018-06-19T00:00:00\",\n        \"expiredDate\": \"2019-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-02-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-04-05T00:00:00\",\n        \"processedDate\": \"2019-04-16T11:12:40.24\",\n        \"closingDate\": \"2019-04-16T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21555,\n        \"propertyAddress\": \"975 Royal Marco Way,PYMT 1, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-06-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-06-20T00:00:00\",\n        \"processedDate\": \"2018-06-20T14:52:03\",\n        \"closingDate\": \"2018-06-20T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21569,\n        \"propertyAddress\": \"1404 Butterfield Ct, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"STET061518IHE\",\n        \"listDate\": \"2018-06-15T00:00:00\",\n        \"expiredDate\": \"2018-11-16T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21588,\n        \"propertyAddress\": \"2000 Royal Marco Way, 405, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218043655\",\n        \"listDate\": \"2018-09-12T00:00:00\",\n        \"expiredDate\": \"2019-06-04T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-01-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-03-13T00:00:00\",\n        \"processedDate\": \"2019-03-13T14:49:01\",\n        \"closingDate\": \"2019-03-13T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21598,\n        \"propertyAddress\": \"522 Useppa Island , Useppa Island, FL 33924\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218035101\",\n        \"listDate\": \"2018-06-15T00:00:00\",\n        \"expiredDate\": \"2019-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Brian McCsamplegan\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Cambridge\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21619,\n        \"propertyAddress\": \"991 Collier Ct, B203, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218043634\",\n        \"listDate\": \"2018-06-25T00:00:00\",\n        \"expiredDate\": \"2019-05-14T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21635,\n        \"propertyAddress\": \"2000 Royal Marco Way, #409, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218042588\",\n        \"listDate\": \"2018-06-19T00:00:00\",\n        \"expiredDate\": \"2019-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21692,\n        \"propertyAddress\": \"1109 Blue Hill Creek Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218045604\",\n        \"listDate\": \"2018-07-05T00:00:00\",\n        \"expiredDate\": \"2019-07-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-07-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-10-15T00:00:00\",\n        \"processedDate\": \"2018-10-15T13:28:17\",\n        \"closingDate\": \"2018-10-15T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21695,\n        \"propertyAddress\": \"902 Park Ave , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218045601\",\n        \"listDate\": \"2018-07-05T00:00:00\",\n        \"expiredDate\": \"2019-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-08-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-10-19T00:00:00\",\n        \"processedDate\": \"2018-10-16T15:09:19\",\n        \"closingDate\": \"2018-10-16T00:00:00\",\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21696,\n        \"propertyAddress\": \"140 Seaview Ct, 1401-N, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2181690\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-07-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-08-13T00:00:00\",\n        \"processedDate\": \"2018-08-13T15:00:10\",\n        \"closingDate\": \"2018-08-13T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21717,\n        \"propertyAddress\": \"232 Shadowridge Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218042274\",\n        \"listDate\": \"2018-07-06T00:00:00\",\n        \"expiredDate\": \"2019-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-02-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-03-06T00:00:00\",\n        \"processedDate\": \"2019-03-07T12:12:30\",\n        \"closingDate\": \"2019-03-06T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21723,\n        \"propertyAddress\": \"1180 Blue Hill Creek Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218045299\",\n        \"listDate\": \"2018-06-28T00:00:00\",\n        \"expiredDate\": \"2018-10-18T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-08-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-10-18T00:00:00\",\n        \"processedDate\": \"2018-10-18T14:37:33\",\n        \"closingDate\": \"2018-10-18T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21728,\n        \"propertyAddress\": \"520 S Collier Blvd, 308, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218045848\",\n        \"listDate\": \"2018-07-06T00:00:00\",\n        \"expiredDate\": \"2019-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21734,\n        \"propertyAddress\": \"370 Cottaqe Court PYMT 2, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-07-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-07-06T00:00:00\",\n        \"processedDate\": \"2018-07-09T13:34:08\",\n        \"closingDate\": \"2018-07-06T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21774,\n        \"propertyAddress\": \"320 Seaview Ct, 1509, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218009681\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-07-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-08-10T00:00:00\",\n        \"processedDate\": \"2018-08-13T10:11:52\",\n        \"closingDate\": \"2018-08-10T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21778,\n        \"propertyAddress\": \"1036 S Collier Blvd, PH-C, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218046921\",\n        \"listDate\": \"2018-07-12T00:00:00\",\n        \"expiredDate\": \"2019-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21793,\n        \"propertyAddress\": \"730 S Collier Blvd , 505, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218047362\",\n        \"listDate\": \"2018-07-13T00:00:00\",\n        \"expiredDate\": \"2019-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-08-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-09-05T00:00:00\",\n        \"processedDate\": \"2018-09-05T14:40:45\",\n        \"closingDate\": \"2018-09-05T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21798,\n        \"propertyAddress\": \"730 W Elkcam Cir , 409, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218047408\",\n        \"listDate\": \"2018-07-13T00:00:00\",\n        \"expiredDate\": \"2019-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-07-29T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-09-28T00:00:00\",\n        \"processedDate\": \"2018-10-01T12:03:24\",\n        \"closingDate\": \"2018-09-28T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21799,\n        \"propertyAddress\": \"900 Huron Ct , Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"218047312DD\",\n        \"listDate\": \"2018-07-13T00:00:00\",\n        \"expiredDate\": \"2019-05-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-07-23T00:00:00\",\n        \"cancelDate\": \"2018-07-27T00:00:00\",\n        \"estimatedClosingDate\": \"2018-08-17T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21820,\n        \"propertyAddress\": \"382 Beach Lily Ln , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218047822\",\n        \"listDate\": \"2018-07-16T00:00:00\",\n        \"expiredDate\": \"2019-01-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-12-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-12-27T00:00:00\",\n        \"processedDate\": \"2018-12-28T12:02:23\",\n        \"closingDate\": \"2018-12-27T00:00:00\",\n        \"listAgent\": \"Janice samplegel\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21826,\n        \"propertyAddress\": \"350 S Collier Blvd , 908, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218047990\",\n        \"listDate\": \"2018-07-17T00:00:00\",\n        \"expiredDate\": \"2019-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-01-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-03-22T00:00:00\",\n        \"processedDate\": \"2019-03-25T14:53:55\",\n        \"closingDate\": \"2019-03-22T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21854,\n        \"propertyAddress\": \"900 S Collier Blvd , 202, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218048781\",\n        \"listDate\": \"2018-07-20T00:00:00\",\n        \"expiredDate\": \"2019-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-09-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-11-09T00:00:00\",\n        \"processedDate\": \"2018-11-01T10:46:49\",\n        \"closingDate\": \"2018-10-30T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21898,\n        \"propertyAddress\": \"764 Hull Ct , Marco Island, FL 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"218049645\",\n        \"listDate\": \"2018-07-24T00:00:00\",\n        \"expiredDate\": \"2019-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-01-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-05-31T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21904,\n        \"propertyAddress\": \"960 Cape Marco, 2203, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218013845\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-07-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-10-18T00:00:00\",\n        \"processedDate\": \"2018-10-19T10:07:15\",\n        \"closingDate\": \"2018-10-18T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21906,\n        \"propertyAddress\": \"159 Leeward Ct, Marco Island, FL 34146\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"WAST072518IHE\",\n        \"listDate\": \"2018-07-25T00:00:00\",\n        \"expiredDate\": \"2019-01-02T00:00:00\",\n        \"withdrawnDate\": \"2018-08-15T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21920,\n        \"propertyAddress\": \"900 Huron Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218047312\",\n        \"listDate\": \"2018-07-13T00:00:00\",\n        \"expiredDate\": \"2019-05-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-07-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-09-06T00:00:00\",\n        \"processedDate\": \"2018-09-07T09:37:16\",\n        \"closingDate\": \"2018-09-04T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21921,\n        \"propertyAddress\": \"929 San Marco Rd, Marco Island, FL 34146\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"SCHN072718IHE\",\n        \"listDate\": \"2018-07-27T00:00:00\",\n        \"expiredDate\": \"2019-04-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21924,\n        \"propertyAddress\": \"730 S Collier Blvd , 603, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218049948\",\n        \"listDate\": \"2018-07-27T00:00:00\",\n        \"expiredDate\": \"2019-05-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21963,\n        \"propertyAddress\": \"551 Century Dr , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"218025815WD1\",\n        \"listDate\": \"2018-04-04T00:00:00\",\n        \"expiredDate\": \"2019-12-31T00:00:00\",\n        \"withdrawnDate\": \"2018-09-26T15:55:50\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21974,\n        \"propertyAddress\": \"301 Lamplighter Dr , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"218036259\",\n        \"listDate\": \"2018-05-18T00:00:00\",\n        \"expiredDate\": \"2019-06-30T00:00:00\",\n        \"withdrawnDate\": \"2018-08-16T10:16:15\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 21989,\n        \"propertyAddress\": \"933 Collier Ct , C203, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218046506\",\n        \"listDate\": \"2018-07-10T00:00:00\",\n        \"expiredDate\": \"2019-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22003,\n        \"propertyAddress\": \"130 N Collier Blvd , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"218049471WD\",\n        \"listDate\": \"2018-07-23T00:00:00\",\n        \"expiredDate\": \"2019-12-31T00:00:00\",\n        \"withdrawnDate\": \"2018-09-14T14:17:57\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22004,\n        \"propertyAddress\": \"180 Seaview Ct, 108, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218049486\",\n        \"listDate\": \"2018-07-31T00:00:00\",\n        \"expiredDate\": \"2019-03-28T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22011,\n        \"propertyAddress\": \"1070 S Collier Blvd , 403, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218050940\",\n        \"listDate\": \"2018-07-31T00:00:00\",\n        \"expiredDate\": \"2018-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-08-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-09-27T00:00:00\",\n        \"processedDate\": \"2018-09-28T10:45:59\",\n        \"closingDate\": \"2018-09-27T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22012,\n        \"propertyAddress\": \"890 S Collier Blvd, 702, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218013017\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-07-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-09-14T00:00:00\",\n        \"processedDate\": \"2018-09-14T13:18:49\",\n        \"closingDate\": \"2018-09-14T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22018,\n        \"propertyAddress\": \"58 N Collier Blvd , 1907, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218051214\",\n        \"listDate\": \"2018-08-01T00:00:00\",\n        \"expiredDate\": \"2019-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22030,\n        \"propertyAddress\": \"300 S Collier Blvd, 1804, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2172786\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-07-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-08-22T00:00:00\",\n        \"processedDate\": \"2018-08-21T12:59:21\",\n        \"closingDate\": \"2018-08-20T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Angelica samplerews\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22049,\n        \"propertyAddress\": \"940 Tulip Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218003056\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-07-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-09-26T00:00:00\",\n        \"processedDate\": \"2018-09-24T12:05:10\",\n        \"closingDate\": \"2018-09-21T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22055,\n        \"propertyAddress\": \"272 N Barfield Dr, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"217055631DD\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-07-31T00:00:00\",\n        \"cancelDate\": \"2018-08-09T00:00:00\",\n        \"estimatedClosingDate\": \"2018-08-24T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22058,\n        \"propertyAddress\": \"970 Cape Marco Dr, 2504, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"216051037\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-07-29T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-08-28T00:00:00\",\n        \"processedDate\": \"2018-08-29T13:56:28\",\n        \"closingDate\": \"2018-08-28T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22061,\n        \"propertyAddress\": \"504 Tigertail Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": \"2018-07-29T00:00:00\",\n        \"expiredDate\": \"2018-09-29T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-07-29T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-08-28T00:00:00\",\n        \"processedDate\": \"2018-08-29T13:41:25\",\n        \"closingDate\": \"2018-08-28T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22070,\n        \"propertyAddress\": \"411 S Collier Blvd, 202, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218052206\",\n        \"listDate\": \"2018-08-06T00:00:00\",\n        \"expiredDate\": \"2019-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cynthia Csampleogin\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22081,\n        \"propertyAddress\": \"1325 Bayport Ave , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218051581\",\n        \"listDate\": \"2018-08-07T00:00:00\",\n        \"expiredDate\": \"2019-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-11-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-01-14T00:00:00\",\n        \"processedDate\": \"2019-01-15T10:54:24\",\n        \"closingDate\": \"2019-01-14T00:00:00\",\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22093,\n        \"propertyAddress\": \"730 S Collier Blvd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-08-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-08-08T00:00:00\",\n        \"processedDate\": \"2018-08-08T13:15:02\",\n        \"closingDate\": \"2018-08-08T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22107,\n        \"propertyAddress\": \"907 Panama Ct , 401, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218052633\",\n        \"listDate\": \"2018-07-27T00:00:00\",\n        \"expiredDate\": \"2019-07-27T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-08-29T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-10-12T00:00:00\",\n        \"processedDate\": \"2018-10-12T12:07:01\",\n        \"closingDate\": \"2018-10-12T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22122,\n        \"propertyAddress\": \"380 Seaview Court , 505, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2172794\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-08-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-09-24T00:00:00\",\n        \"processedDate\": \"2018-09-24T13:01:23\",\n        \"closingDate\": \"2018-09-24T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22137,\n        \"propertyAddress\": \"690 Amber Dr , 301, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"HAMM080818IHEWD1\",\n        \"listDate\": \"2017-08-24T00:00:00\",\n        \"expiredDate\": \"2018-12-31T00:00:00\",\n        \"withdrawnDate\": \"2018-09-27T12:16:33\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22150,\n        \"propertyAddress\": \"1402 Collier Blvd , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217046781\",\n        \"listDate\": \"2017-07-18T00:00:00\",\n        \"expiredDate\": \"2019-02-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22156,\n        \"propertyAddress\": \"159 Leeward Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218049776\",\n        \"listDate\": \"2018-08-15T00:00:00\",\n        \"expiredDate\": \"2019-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-01-29T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-03-15T00:00:00\",\n        \"processedDate\": \"2019-03-18T14:37:28\",\n        \"closingDate\": \"2019-03-15T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22158,\n        \"propertyAddress\": \"1517 Caxambas Ct, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218054208\",\n        \"listDate\": \"2018-08-15T00:00:00\",\n        \"expiredDate\": \"2019-06-14T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22196,\n        \"propertyAddress\": \"8864 Mustang Island Cir , Naples, FL 34113\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"218054387WD\",\n        \"listDate\": \"2018-08-16T00:00:00\",\n        \"expiredDate\": \"2019-12-31T00:00:00\",\n        \"withdrawnDate\": \"2019-02-21T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Kathryn Guidi Malsampleey\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22220,\n        \"propertyAddress\": \"567 Seaview Ct , E-3, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218055843\",\n        \"listDate\": \"2018-08-23T00:00:00\",\n        \"expiredDate\": \"2020-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22228,\n        \"propertyAddress\": \"1166 Lighthouse Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217076452\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-08-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-10-03T00:00:00\",\n        \"processedDate\": \"2018-10-03T12:00:48\",\n        \"closingDate\": \"2018-10-02T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Darlene sampleddy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22231,\n        \"propertyAddress\": \"1588 Shores Court , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"HEND082418IHEDD\",\n        \"listDate\": \"2018-02-22T00:00:00\",\n        \"expiredDate\": \"2018-12-01T00:00:00\",\n        \"withdrawnDate\": \"2018-10-10T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22283,\n        \"propertyAddress\": \"1374 Trinidad Ave , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218056161\",\n        \"listDate\": \"2018-08-30T00:00:00\",\n        \"expiredDate\": \"2019-08-24T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-09-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-10-15T00:00:00\",\n        \"processedDate\": \"2018-10-15T13:40:53\",\n        \"closingDate\": \"2018-10-12T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22284,\n        \"propertyAddress\": \"451 Barcelona Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218051409\",\n        \"listDate\": \"2018-08-30T00:00:00\",\n        \"expiredDate\": \"2019-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-01-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-02-04T00:00:00\",\n        \"processedDate\": \"2019-02-04T12:51:54\",\n        \"closingDate\": \"2019-02-04T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22289,\n        \"propertyAddress\": \"609 Crescent St , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218057153\",\n        \"listDate\": \"2018-08-30T00:00:00\",\n        \"expiredDate\": \"2019-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-12-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-02-25T00:00:00\",\n        \"processedDate\": \"2019-02-26T13:03:16\",\n        \"closingDate\": \"2019-02-25T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22300,\n        \"propertyAddress\": \"801 Inlet Dr, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218056150\",\n        \"listDate\": \"2018-08-31T00:00:00\",\n        \"expiredDate\": \"2019-04-29T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22301,\n        \"propertyAddress\": \"1070 Caxambas Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218056093\",\n        \"listDate\": \"2018-08-31T00:00:00\",\n        \"expiredDate\": \"2019-04-29T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22312,\n        \"propertyAddress\": \"300 S Collier Blvd, 1003, Marco Island, FL, 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"218057947\",\n        \"listDate\": \"2018-09-04T00:00:00\",\n        \"expiredDate\": \"2019-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22333,\n        \"propertyAddress\": \"1020 Swallow Ave , 302, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218058506\",\n        \"listDate\": \"2018-09-05T00:00:00\",\n        \"expiredDate\": \"2019-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-11-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-12-22T00:00:00\",\n        \"processedDate\": \"2018-12-27T14:50:56\",\n        \"closingDate\": \"2018-12-21T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22358,\n        \"propertyAddress\": \"961 Swallow Ave, 203, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218058654\",\n        \"listDate\": \"2018-09-06T00:00:00\",\n        \"expiredDate\": \"2019-09-03T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jacki Stsampletegos\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22378,\n        \"propertyAddress\": \"849 Caxambas Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218059451\",\n        \"listDate\": \"2018-09-10T00:00:00\",\n        \"expiredDate\": \"2019-09-07T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22385,\n        \"propertyAddress\": \"940 Cape Marco Dr , 1402, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"216063560WD2\",\n        \"listDate\": \"2016-10-06T00:00:00\",\n        \"expiredDate\": \"2018-12-31T00:00:00\",\n        \"withdrawnDate\": \"2018-09-14T14:19:37\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22387,\n        \"propertyAddress\": \"488 Pepperwood Ct , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"218059557W\",\n        \"listDate\": \"2018-09-11T00:00:00\",\n        \"expiredDate\": \"2019-05-31T00:00:00\",\n        \"withdrawnDate\": \"2019-02-06T16:33:58\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22397,\n        \"propertyAddress\": \"824 Hideaway Cir E, 3-324, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218059876\",\n        \"listDate\": \"2018-09-12T00:00:00\",\n        \"expiredDate\": \"2020-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22413,\n        \"propertyAddress\": \"863 Rose Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218068531\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-09-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-09-21T00:00:00\",\n        \"processedDate\": \"2018-09-24T11:37:41\",\n        \"closingDate\": \"2018-09-21T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22419,\n        \"propertyAddress\": \"320 Seaview Ct , 2-912, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218060196\",\n        \"listDate\": \"2018-09-13T00:00:00\",\n        \"expiredDate\": \"2019-09-14T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-01-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-02-28T00:00:00\",\n        \"processedDate\": \"2019-02-22T13:52:07\",\n        \"closingDate\": \"2019-02-20T00:00:00\",\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22424,\n        \"propertyAddress\": \"10455 Keewaydin Island , Naples, FL 34101\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218059665\",\n        \"listDate\": \"2018-09-12T00:00:00\",\n        \"expiredDate\": \"2019-09-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Sherry Irvsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Broad Avenue\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22430,\n        \"propertyAddress\": \"270 North Collier Blvd, 206, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2172170\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-09-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-10-12T00:00:00\",\n        \"processedDate\": \"2018-10-12T11:37:09\",\n        \"closingDate\": \"2018-10-12T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22437,\n        \"propertyAddress\": \"551 S Barfield Dr, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"11012018DD\",\n        \"listDate\": \"2018-08-01T00:00:00\",\n        \"expiredDate\": \"2019-08-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-09-03T00:00:00\",\n        \"cancelDate\": \"2018-11-01T00:00:00\",\n        \"estimatedClosingDate\": \"2018-11-01T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22445,\n        \"propertyAddress\": \"850 Sea Dune Ln , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218020328\",\n        \"listDate\": \"2018-03-13T00:00:00\",\n        \"expiredDate\": \"2019-03-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-10-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-10-31T00:00:00\",\n        \"processedDate\": \"2018-10-31T13:36:11\",\n        \"closingDate\": \"2018-10-31T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22455,\n        \"propertyAddress\": \"240 Seaview Ct , 409, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218060956\",\n        \"listDate\": \"2018-09-18T00:00:00\",\n        \"expiredDate\": \"2019-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22458,\n        \"propertyAddress\": \"1200 Edington Place, B101, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218061296\",\n        \"listDate\": \"2018-09-18T00:00:00\",\n        \"expiredDate\": \"2019-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-10-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-11-06T00:00:00\",\n        \"processedDate\": \"2018-11-06T14:01:18\",\n        \"closingDate\": \"2018-11-06T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22476,\n        \"propertyAddress\": \"140 Seaview Ct, 1506N, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218061454\",\n        \"listDate\": \"2018-09-20T00:00:00\",\n        \"expiredDate\": \"2019-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22478,\n        \"propertyAddress\": \"1217 Bluebird Ave , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"217057927W\",\n        \"listDate\": \"2017-09-21T00:00:00\",\n        \"expiredDate\": \"2019-06-01T00:00:00\",\n        \"withdrawnDate\": \"2019-03-12T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Dave Flowsamples\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22485,\n        \"propertyAddress\": \"320 Seaview Ct, 1702, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218060602\",\n        \"listDate\": \"2018-09-20T00:00:00\",\n        \"expiredDate\": \"2019-09-19T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22495,\n        \"propertyAddress\": \"941 Ironwood Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218061944\",\n        \"listDate\": \"2018-09-21T00:00:00\",\n        \"expiredDate\": \"2019-09-21T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-12-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-01-15T00:00:00\",\n        \"processedDate\": \"2019-01-11T12:26:14\",\n        \"closingDate\": \"2019-01-11T00:00:00\",\n        \"listAgent\": \"Jacki Stsampletegos\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22496,\n        \"propertyAddress\": \"1041 S Collier Blvd , 402, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218060935\",\n        \"listDate\": \"2018-09-20T00:00:00\",\n        \"expiredDate\": \"2019-09-17T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-03-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-03-26T00:00:00\",\n        \"processedDate\": \"2019-03-26T12:47:17\",\n        \"closingDate\": \"2019-03-26T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22503,\n        \"propertyAddress\": \"1185 Breakwater Ct, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"218050313DD\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-09-14T00:00:00\",\n        \"cancelDate\": \"2019-01-18T00:00:00\",\n        \"estimatedClosingDate\": \"2019-01-31T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22511,\n        \"propertyAddress\": \"24661 Canary Island Ct , 202, Bonita Springs, FL 34134\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218061898\",\n        \"listDate\": \"2018-09-24T00:00:00\",\n        \"expiredDate\": \"2019-05-13T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-01-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-03-01T00:00:00\",\n        \"processedDate\": \"2019-03-04T13:32:47\",\n        \"closingDate\": \"2019-03-01T00:00:00\",\n        \"listAgent\": \"Stephanie Cobsamplen\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Boston\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22529,\n        \"propertyAddress\": \"910 Sycamore Ct , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"218062629WD\",\n        \"listDate\": \"2018-09-24T00:00:00\",\n        \"expiredDate\": \"2020-12-31T00:00:00\",\n        \"withdrawnDate\": \"2018-10-05T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22537,\n        \"propertyAddress\": \"551 Century Dr , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"218025815WD2\",\n        \"listDate\": \"2018-04-04T00:00:00\",\n        \"expiredDate\": \"2019-12-31T00:00:00\",\n        \"withdrawnDate\": \"2018-10-05T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22553,\n        \"propertyAddress\": \"816 Elkcam Cir, 301, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218036702\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-09-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-11-06T00:00:00\",\n        \"processedDate\": \"2018-11-05T13:07:54\",\n        \"closingDate\": \"2018-11-05T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Darlene sampleddy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22554,\n        \"propertyAddress\": \"210 Waterway Ct , 2-202, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"217038349W\",\n        \"listDate\": \"2017-06-08T00:00:00\",\n        \"expiredDate\": \"2018-12-01T00:00:00\",\n        \"withdrawnDate\": \"2018-11-20T12:42:10\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cullen Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22561,\n        \"propertyAddress\": \"830 Partridge Ct, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218063389\",\n        \"listDate\": \"2018-09-27T00:00:00\",\n        \"expiredDate\": \"2019-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22610,\n        \"propertyAddress\": \"1536 Kingston Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218038541\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-09-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-11-07T00:00:00\",\n        \"processedDate\": \"2018-11-07T13:07:28\",\n        \"closingDate\": \"2018-11-07T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Sue Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22615,\n        \"propertyAddress\": \"1124 Breakwater Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218064579\",\n        \"listDate\": \"2018-10-03T00:00:00\",\n        \"expiredDate\": \"2019-06-13T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-01-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-01-29T00:00:00\",\n        \"processedDate\": \"2019-01-29T14:12:06\",\n        \"closingDate\": \"2019-01-29T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22624,\n        \"propertyAddress\": \"840 W Copeland Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218064931\",\n        \"listDate\": \"2018-10-03T00:00:00\",\n        \"expiredDate\": \"2019-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-11-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-12-12T00:00:00\",\n        \"processedDate\": \"2018-12-14T10:26:48\",\n        \"closingDate\": \"2018-12-12T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22627,\n        \"propertyAddress\": \"1659 Rainbow Court, Marco Island, FL 34145\",\n        \"status\": \"Closed\",\n        \"mlsNumber1\": \"218064987\",\n        \"listDate\": \"2018-09-28T00:00:00\",\n        \"expiredDate\": \"2019-06-28T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-02-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-07-26T00:00:00\",\n        \"processedDate\": \"2021-02-07T22:59:25.24\",\n        \"closingDate\": \"2021-02-07T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": \"Sandra McCsamplethy-Meeks\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Bay Village\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22637,\n        \"propertyAddress\": \"1217 Fruitland Ave , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218065234\",\n        \"listDate\": \"2018-10-04T00:00:00\",\n        \"expiredDate\": \"2019-10-06T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Lori Hollsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22646,\n        \"propertyAddress\": \"530 S Collier Blvd , 1003, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218065580\",\n        \"listDate\": \"2018-10-05T00:00:00\",\n        \"expiredDate\": \"2019-09-28T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-10-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-11-28T00:00:00\",\n        \"processedDate\": \"2018-11-30T08:25:46\",\n        \"closingDate\": \"2018-11-26T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22649,\n        \"propertyAddress\": \"1020 Dill Ct , Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"218065625DD\",\n        \"listDate\": \"2018-10-05T00:00:00\",\n        \"expiredDate\": \"2019-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-01-06T00:00:00\",\n        \"cancelDate\": \"2019-01-11T00:00:00\",\n        \"estimatedClosingDate\": \"2019-02-12T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22652,\n        \"propertyAddress\": \"910 Sycamore Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218062629\",\n        \"listDate\": \"2018-09-24T00:00:00\",\n        \"expiredDate\": \"2020-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22655,\n        \"propertyAddress\": \"821 S. Barfield Dr , Marco Island, FL 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"218065639\",\n        \"listDate\": \"2018-10-05T00:00:00\",\n        \"expiredDate\": \"2019-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-03-29T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-05-10T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22674,\n        \"propertyAddress\": \"480 S Collier Blvd , 710, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218066114\",\n        \"listDate\": \"2018-10-05T00:00:00\",\n        \"expiredDate\": \"2019-09-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-10-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-11-20T00:00:00\",\n        \"processedDate\": \"2018-11-14T15:31:09\",\n        \"closingDate\": \"2018-11-13T00:00:00\",\n        \"listAgent\": \"Lisa Tsamplehjian\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Broad Avenue\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22699,\n        \"propertyAddress\": \"300 S Collier Blvd, 1805, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2181373\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-09-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-10-22T00:00:00\",\n        \"processedDate\": \"2018-10-24T11:36:53\",\n        \"closingDate\": \"2018-10-22T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Angelica samplerews\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22707,\n        \"propertyAddress\": \"851 Collier Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218008889\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-10-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-10-26T00:00:00\",\n        \"processedDate\": \"2018-10-26T12:47:22\",\n        \"closingDate\": \"2018-10-26T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Gwen Tolssample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22719,\n        \"propertyAddress\": \"1024 Anglers Cv , C-404, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218066855\",\n        \"listDate\": \"2018-10-12T00:00:00\",\n        \"expiredDate\": \"2019-10-04T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-01-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-02-21T00:00:00\",\n        \"processedDate\": \"2019-02-22T13:42:07\",\n        \"closingDate\": \"2019-02-20T00:00:00\",\n        \"listAgent\": \"Angelica samplerews\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22722,\n        \"propertyAddress\": \"1404 Butterfield Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218067130\",\n        \"listDate\": \"2018-10-12T00:00:00\",\n        \"expiredDate\": \"2019-06-04T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-11-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-12-19T00:00:00\",\n        \"processedDate\": \"2018-12-17T15:02:12\",\n        \"closingDate\": \"2018-12-14T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22728,\n        \"propertyAddress\": \"4000 Royal Marco Way , 526, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218028327\",\n        \"listDate\": \"2018-04-16T00:00:00\",\n        \"expiredDate\": \"2019-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-11-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-01-15T00:00:00\",\n        \"processedDate\": \"2019-01-15T15:33:56\",\n        \"closingDate\": \"2019-01-15T00:00:00\",\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22731,\n        \"propertyAddress\": \"167 N Collier Blvd, C3, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-10-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-10-15T00:00:00\",\n        \"processedDate\": \"2018-10-15T09:32:43\",\n        \"closingDate\": \"2018-10-15T00:00:00\",\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22748,\n        \"propertyAddress\": \"524 Useppa Island, Useppa Island, FL 33924\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218065185\",\n        \"listDate\": \"2018-10-16T00:00:00\",\n        \"expiredDate\": \"2019-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Brian McCsamplegan\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Cambridge\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22749,\n        \"propertyAddress\": \"517 Useppa Island , Useppa Island, FL 33924\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"218065155\",\n        \"listDate\": \"2018-10-16T00:00:00\",\n        \"expiredDate\": \"2019-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-03-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-04-08T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Brian McCsamplegan\",\n        \"sellAgent\": \"Brian McCsamplegan\",\n        \"listOffice\": \"Cambridge\",\n        \"sellOffice\": \"Cambridge\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22762,\n        \"propertyAddress\": \"804 Whiskey Creek Drive Blue Hill Creek Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218067867\",\n        \"listDate\": \"2018-10-16T00:00:00\",\n        \"expiredDate\": \"2019-10-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22770,\n        \"propertyAddress\": \"994 Spruce Court , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-10-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-10-17T00:00:00\",\n        \"processedDate\": \"2018-10-17T16:34:01\",\n        \"closingDate\": \"2018-10-17T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Sue Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22771,\n        \"propertyAddress\": \"730 S Collier Blvd , 304, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"218068352W\",\n        \"listDate\": \"2018-10-17T00:00:00\",\n        \"expiredDate\": \"2019-06-05T00:00:00\",\n        \"withdrawnDate\": \"2019-03-19T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22773,\n        \"propertyAddress\": \"1100 Cara Ct, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218067881\",\n        \"listDate\": \"2018-10-17T00:00:00\",\n        \"expiredDate\": \"2019-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22781,\n        \"propertyAddress\": \"1381 Caxambas Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218066629\",\n        \"listDate\": \"2018-10-10T00:00:00\",\n        \"expiredDate\": \"2019-08-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22787,\n        \"propertyAddress\": \"643 Bimini Ave , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218066638\",\n        \"listDate\": \"2018-10-18T00:00:00\",\n        \"expiredDate\": \"2019-08-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22788,\n        \"propertyAddress\": \"1411 Butterfield Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218066636\",\n        \"listDate\": \"2018-10-18T00:00:00\",\n        \"expiredDate\": \"2019-08-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22792,\n        \"propertyAddress\": \"1588 Shores Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218068529\",\n        \"listDate\": \"2018-10-18T00:00:00\",\n        \"expiredDate\": \"2019-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22798,\n        \"propertyAddress\": \"941 Caxambas , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218066652\",\n        \"listDate\": \"2018-10-18T00:00:00\",\n        \"expiredDate\": \"2019-08-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22799,\n        \"propertyAddress\": \"945 Caxambas Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218066660\",\n        \"listDate\": \"2018-10-18T00:00:00\",\n        \"expiredDate\": \"2019-08-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22800,\n        \"propertyAddress\": \"970 Goldenrod Ave , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218068624\",\n        \"listDate\": \"2018-10-18T00:00:00\",\n        \"expiredDate\": \"2019-07-24T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22801,\n        \"propertyAddress\": \"712 Plantation Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218067827\",\n        \"listDate\": \"2018-10-18T00:00:00\",\n        \"expiredDate\": \"2019-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22817,\n        \"propertyAddress\": \"929 San Marco Rd, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218049464\",\n        \"listDate\": \"2018-10-19T00:00:00\",\n        \"expiredDate\": \"2019-04-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22819,\n        \"propertyAddress\": \"910 Sycamore Ct , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"218068805WD1\",\n        \"listDate\": \"2018-10-19T00:00:00\",\n        \"expiredDate\": \"2018-10-30T00:00:00\",\n        \"withdrawnDate\": \"2018-10-30T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22820,\n        \"propertyAddress\": \"380 Seaview Ct , 805, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"218068796W\",\n        \"listDate\": \"2018-10-19T00:00:00\",\n        \"expiredDate\": \"2019-05-31T00:00:00\",\n        \"withdrawnDate\": \"2019-03-22T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22837,\n        \"propertyAddress\": \"661 W Elkcam Cir , 923, Marco Island, FL 34145\",\n        \"status\": \"Closed\",\n        \"mlsNumber1\": \"218069343\",\n        \"listDate\": \"2018-10-22T00:00:00\",\n        \"expiredDate\": \"2019-04-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-12-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-04-01T00:00:00\",\n        \"processedDate\": \"2019-07-19T13:38:44.47\",\n        \"closingDate\": \"2019-07-19T00:00:00\",\n        \"listAgent\": \"Dave Flowsamples\",\n        \"sellAgent\": \"Dave Flowsamples\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22840,\n        \"propertyAddress\": \"114 Coco Plum Ln , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218065224\",\n        \"listDate\": \"2018-10-22T00:00:00\",\n        \"expiredDate\": \"2019-08-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-12-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-03-19T00:00:00\",\n        \"processedDate\": \"2019-03-19T14:39:00\",\n        \"closingDate\": \"2019-03-19T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22853,\n        \"propertyAddress\": \"1801 Olds Ct , Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"218069204DD\",\n        \"listDate\": \"2018-10-23T00:00:00\",\n        \"expiredDate\": \"2019-07-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-12-13T00:00:00\",\n        \"cancelDate\": \"2019-01-29T00:00:00\",\n        \"estimatedClosingDate\": \"2019-03-29T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22862,\n        \"propertyAddress\": \"2000 Royal Marco Way, PH-C, Marco Island, FL 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"BAST100818IHE\",\n        \"listDate\": \"2018-10-08T00:00:00\",\n        \"expiredDate\": \"2019-07-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-01-31T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-04-04T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22869,\n        \"propertyAddress\": \"58 N Collier Blvd, 1111, Marco Island, FL 34146\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"DEWO101018IHE\",\n        \"listDate\": \"2018-10-10T00:00:00\",\n        \"expiredDate\": \"2019-01-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22885,\n        \"propertyAddress\": \"341 Henderson Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218070349\",\n        \"listDate\": \"2018-10-26T00:00:00\",\n        \"expiredDate\": \"2019-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22892,\n        \"propertyAddress\": \"1057 Bonita Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218068677\",\n        \"listDate\": \"2018-10-16T00:00:00\",\n        \"expiredDate\": \"2019-10-16T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-12-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-01-17T00:00:00\",\n        \"processedDate\": \"2019-01-18T14:57:40\",\n        \"closingDate\": \"2019-01-17T00:00:00\",\n        \"listAgent\": \"Lura Jsamplees\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22894,\n        \"propertyAddress\": \"105 Useppa Island , Useppa Island, FL 33924\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"218065192\",\n        \"listDate\": \"2018-10-24T00:00:00\",\n        \"expiredDate\": \"2019-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-03-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-05-31T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Brian McCsamplegan\",\n        \"sellAgent\": \"Brian McCsamplegan\",\n        \"listOffice\": \"Cambridge\",\n        \"sellOffice\": \"Cambridge\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22895,\n        \"propertyAddress\": \"1379 Bayport Ave, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218067064\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-10-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-10-29T00:00:00\",\n        \"processedDate\": \"2018-10-29T12:35:58\",\n        \"closingDate\": \"2018-10-29T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cullen Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22896,\n        \"propertyAddress\": \"530 S Collier Blvd, 1101, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217030947\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-10-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-11-07T00:00:00\",\n        \"processedDate\": \"2018-11-07T14:43:31\",\n        \"closingDate\": \"2018-11-07T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cullen Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22913,\n        \"propertyAddress\": \"768 Whiskey Cree Dr, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"768W101918IHE\",\n        \"listDate\": \"2018-10-19T00:00:00\",\n        \"expiredDate\": \"2019-04-25T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22919,\n        \"propertyAddress\": \"910 Sycamore Ct , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"218068805WD2\",\n        \"listDate\": \"2018-10-19T00:00:00\",\n        \"expiredDate\": \"2020-12-31T00:00:00\",\n        \"withdrawnDate\": \"2018-11-07T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22920,\n        \"propertyAddress\": \"380 Seaview Ct, 507, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2182083\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-10-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-11-21T00:00:00\",\n        \"processedDate\": \"2018-11-27T11:38:18\",\n        \"closingDate\": \"2018-11-21T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22928,\n        \"propertyAddress\": \"1096 Blue Hill Creek Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218071042\",\n        \"listDate\": \"2018-10-30T00:00:00\",\n        \"expiredDate\": \"2019-05-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22940,\n        \"propertyAddress\": \"1259 Treasure Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218069557\",\n        \"listDate\": \"2018-10-31T00:00:00\",\n        \"expiredDate\": \"2019-10-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-12-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-01-31T00:00:00\",\n        \"processedDate\": \"2019-01-30T14:59:55\",\n        \"closingDate\": \"2019-01-29T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22941,\n        \"propertyAddress\": \"1830 Menorca Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217015769\",\n        \"listDate\": \"2017-02-27T00:00:00\",\n        \"expiredDate\": \"2019-03-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-12-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-02-08T00:00:00\",\n        \"processedDate\": \"2019-02-11T12:50:43\",\n        \"closingDate\": \"2019-02-08T00:00:00\",\n        \"listAgent\": \"Jacki Stsampletegos\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22950,\n        \"propertyAddress\": \"881 Eubanks Ct, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"GRIG110118IHEW\",\n        \"listDate\": \"2018-11-01T00:00:00\",\n        \"expiredDate\": \"2019-11-04T00:00:00\",\n        \"withdrawnDate\": \"2019-01-29T09:30:55\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22954,\n        \"propertyAddress\": \"508 Useppa Island , Captiva, FL 33924\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"ERCL102718IHEWD\",\n        \"listDate\": \"2018-10-27T00:00:00\",\n        \"expiredDate\": \"2019-07-31T00:00:00\",\n        \"withdrawnDate\": \"2018-12-06T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Brian McCsamplegan\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Cambridge\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22959,\n        \"propertyAddress\": \"850 S Collier Blvd , 701, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"218070492WD\",\n        \"listDate\": \"2018-10-26T00:00:00\",\n        \"expiredDate\": \"2020-12-31T00:00:00\",\n        \"withdrawnDate\": \"2019-02-05T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22964,\n        \"propertyAddress\": \"1590 Jamaica Ct , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"218071185W\",\n        \"listDate\": \"2018-11-01T00:00:00\",\n        \"expiredDate\": \"2019-10-31T00:00:00\",\n        \"withdrawnDate\": \"2018-11-19T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Rosemarie Tsampleagni\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22966,\n        \"propertyAddress\": \"320 Useppa Island, Useppa Island, FL 33924\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218065181\",\n        \"listDate\": \"2018-11-01T00:00:00\",\n        \"expiredDate\": \"2019-05-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Brian McCsamplegan\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Cambridge\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22967,\n        \"propertyAddress\": \"319 Useppa Island , Useppa Island, FL 33924\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218071469\",\n        \"listDate\": \"2018-11-01T00:00:00\",\n        \"expiredDate\": \"2019-05-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Brian McCsamplegan\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Cambridge\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22972,\n        \"propertyAddress\": \"740 N Collier Blvd , 2-309, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218071773\",\n        \"listDate\": \"2018-11-01T00:00:00\",\n        \"expiredDate\": \"2019-06-24T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 22987,\n        \"propertyAddress\": \"58 N Collier Blvd, 1206, Marco Island, FL, 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"218072192\",\n        \"listDate\": \"2018-11-01T00:00:00\",\n        \"expiredDate\": \"2019-08-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Angelica samplerews\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23003,\n        \"propertyAddress\": \"180 Seaview Ct , 900, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"218072279W\",\n        \"listDate\": \"2018-11-02T00:00:00\",\n        \"expiredDate\": \"2019-05-08T00:00:00\",\n        \"withdrawnDate\": \"2019-01-18T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23004,\n        \"propertyAddress\": \"631 S Barfield Dr, Marco Island, FL, 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"218072280\",\n        \"listDate\": \"2018-11-02T00:00:00\",\n        \"expiredDate\": \"2019-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23005,\n        \"propertyAddress\": \"551 S Barfield Dr , Marco Island, FL 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"218071399\",\n        \"listDate\": \"2018-11-02T00:00:00\",\n        \"expiredDate\": \"2019-08-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-02-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-04-09T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23009,\n        \"propertyAddress\": \"1584 San Marco Rd, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"GOOD103118IHEW\",\n        \"listDate\": \"2018-10-31T00:00:00\",\n        \"expiredDate\": \"2019-08-01T00:00:00\",\n        \"withdrawnDate\": \"2018-11-27T10:25:48\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Angelica samplerews\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23015,\n        \"propertyAddress\": \"530 S Collier Blvd , 702, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218073049\",\n        \"listDate\": \"2018-11-05T00:00:00\",\n        \"expiredDate\": \"2019-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-11-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-11-20T00:00:00\",\n        \"processedDate\": \"2018-11-21T13:03:46\",\n        \"closingDate\": \"2018-11-20T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23020,\n        \"propertyAddress\": \"8921 Lely Island Cir, Naples, FL 34113\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"218073716\",\n        \"listDate\": \"2018-11-05T00:00:00\",\n        \"expiredDate\": \"2019-05-05T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-03-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-04-15T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michael Hsampleted\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Brighton\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23023,\n        \"propertyAddress\": \"923 Whiskey Creek Dr , Marco Island, FL 34145-1701\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217053805\",\n        \"listDate\": \"2017-08-10T00:00:00\",\n        \"expiredDate\": \"2019-08-10T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23025,\n        \"propertyAddress\": \"641 Blackmore Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218073183\",\n        \"listDate\": \"2018-11-06T00:00:00\",\n        \"expiredDate\": \"2019-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23031,\n        \"propertyAddress\": \"350 S Collier Boulevard , Unit 608, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2181159\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-10-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-11-15T00:00:00\",\n        \"processedDate\": \"2018-11-16T14:18:18\",\n        \"closingDate\": \"2018-11-15T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Angelica samplerews\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23037,\n        \"propertyAddress\": \"240 Seaview Ct , 106, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218073377\",\n        \"listDate\": \"2018-11-07T00:00:00\",\n        \"expiredDate\": \"2019-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23043,\n        \"propertyAddress\": \"910 Sycamore Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218068805\",\n        \"listDate\": \"2018-10-19T00:00:00\",\n        \"expiredDate\": \"2020-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23052,\n        \"propertyAddress\": \"401 Marquesas Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218073278\",\n        \"listDate\": \"2018-11-07T00:00:00\",\n        \"expiredDate\": \"2019-11-05T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23060,\n        \"propertyAddress\": \"480 S Collier Blvd, 814, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218073851\",\n        \"listDate\": \"2018-11-07T00:00:00\",\n        \"expiredDate\": \"2019-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23065,\n        \"propertyAddress\": \"240 Seaview Ct, 407, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218073483\",\n        \"listDate\": \"2018-11-07T00:00:00\",\n        \"expiredDate\": \"2019-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23074,\n        \"propertyAddress\": \"140 Seaview Ct, 1705S, Marco Island, FL, 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"218074050\",\n        \"listDate\": \"2018-11-08T00:00:00\",\n        \"expiredDate\": \"2019-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23082,\n        \"propertyAddress\": \"794 W Elkcam Cir , 2003, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218074302\",\n        \"listDate\": \"2018-11-09T00:00:00\",\n        \"expiredDate\": \"2019-05-09T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-01-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-02-04T00:00:00\",\n        \"processedDate\": \"2019-02-04T13:27:20\",\n        \"closingDate\": \"2019-02-01T00:00:00\",\n        \"listAgent\": \"Dave Flowsamples\",\n        \"sellAgent\": \"Dave Flowsamples\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23088,\n        \"propertyAddress\": \"940 Sand Dune Dr, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218072940\",\n        \"listDate\": \"2018-11-09T00:00:00\",\n        \"expiredDate\": \"2019-08-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23091,\n        \"propertyAddress\": \"500 Saturn Ct , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"218074164W\",\n        \"listDate\": \"2018-11-09T00:00:00\",\n        \"expiredDate\": \"2019-08-31T00:00:00\",\n        \"withdrawnDate\": \"2019-01-08T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23092,\n        \"propertyAddress\": \"870 Collier Ct , P-4, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218074195\",\n        \"listDate\": \"2018-11-09T00:00:00\",\n        \"expiredDate\": \"2019-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Sue Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23095,\n        \"propertyAddress\": \"1040 Cottonwood Ct, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218074370\",\n        \"listDate\": \"2018-11-09T00:00:00\",\n        \"expiredDate\": \"2019-07-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23107,\n        \"propertyAddress\": \"730 Austin Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218074680\",\n        \"listDate\": \"2018-11-12T00:00:00\",\n        \"expiredDate\": \"2019-08-05T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-11-29T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-12-19T00:00:00\",\n        \"processedDate\": \"2018-12-21T15:47:00\",\n        \"closingDate\": \"2018-12-19T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23110,\n        \"propertyAddress\": \"8710 Mustang Island Cir , Naples, FL 34113\",\n        \"status\": \"Current\",\n        \"mlsNumber1\": \"218074876\",\n        \"listDate\": \"2018-11-13T00:00:00\",\n        \"expiredDate\": \"2022-01-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Faith Squisamples\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23111,\n        \"propertyAddress\": \"1632 Barbarosa Ct , Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"218074682DD\",\n        \"listDate\": \"2018-11-12T00:00:00\",\n        \"expiredDate\": \"2019-08-05T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-11-16T00:00:00\",\n        \"cancelDate\": \"2018-11-26T00:00:00\",\n        \"estimatedClosingDate\": \"2019-01-15T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23115,\n        \"propertyAddress\": \"24671 Canary Island Ct , 101, Bonita Springs, FL 34134\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"218074092\",\n        \"listDate\": \"2018-11-02T00:00:00\",\n        \"expiredDate\": \"2019-05-02T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-02-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-04-03T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Stephanie Cobsamplen\",\n        \"sellAgent\": \"Pam samplescheid\",\n        \"listOffice\": \"Boston\",\n        \"sellOffice\": \"Boston\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23123,\n        \"propertyAddress\": \"530 S Collier Blvd , 703, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218075155\",\n        \"listDate\": \"2018-11-12T00:00:00\",\n        \"expiredDate\": \"2019-11-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-11-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-12-18T00:00:00\",\n        \"processedDate\": \"2018-12-18T11:20:32\",\n        \"closingDate\": \"2018-12-18T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23133,\n        \"propertyAddress\": \"835 Saturn Ct, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"218002350DD\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-11-13T00:00:00\",\n        \"cancelDate\": \"2018-12-11T00:00:00\",\n        \"estimatedClosingDate\": \"2019-01-11T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Vince Cosamplece\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23150,\n        \"propertyAddress\": \"58 N Collier Blvd , 1914, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218075813\",\n        \"listDate\": \"2018-11-16T00:00:00\",\n        \"expiredDate\": \"2019-08-12T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23156,\n        \"propertyAddress\": \"1071 Blue Hill Creek Dr , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218076069\",\n        \"listDate\": \"2018-11-16T00:00:00\",\n        \"expiredDate\": \"2019-11-16T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-12-31T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-01-31T00:00:00\",\n        \"processedDate\": \"2019-01-31T15:13:52\",\n        \"closingDate\": \"2019-01-31T00:00:00\",\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23157,\n        \"propertyAddress\": \"1066 Blue Hill Creek Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218076072\",\n        \"listDate\": \"2018-11-16T00:00:00\",\n        \"expiredDate\": \"2019-11-16T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23177,\n        \"propertyAddress\": \"6000 Royal Marco Way , 545, Marco Island, FL 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"218076740\",\n        \"listDate\": \"2018-11-19T00:00:00\",\n        \"expiredDate\": \"2019-06-19T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-01-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-04-18T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23205,\n        \"propertyAddress\": \"671 W Elkcam Cir , 515, Marco Island, FL 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"218077237\",\n        \"listDate\": \"2018-11-21T00:00:00\",\n        \"expiredDate\": \"2019-11-20T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-02-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-04-15T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cullen Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23207,\n        \"propertyAddress\": \"210 Waterway Ct , 2-202, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218077022\",\n        \"listDate\": \"2018-11-20T00:00:00\",\n        \"expiredDate\": \"2019-11-20T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-02-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-03-14T00:00:00\",\n        \"processedDate\": \"2019-03-14T13:18:06\",\n        \"closingDate\": \"2019-03-13T00:00:00\",\n        \"listAgent\": \"Cullen Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23218,\n        \"propertyAddress\": \"1069 Bald Eagle Dr, S-1003, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218028817\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-11-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-12-10T00:00:00\",\n        \"processedDate\": \"2018-12-10T13:26:19\",\n        \"closingDate\": \"2018-12-10T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Bill Fsamplentz (Hail Mary Home)\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Broad Avenue\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23226,\n        \"propertyAddress\": \"1598 San Marco Rd, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218074991\",\n        \"listDate\": \"2018-11-26T00:00:00\",\n        \"expiredDate\": \"2019-10-25T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23227,\n        \"propertyAddress\": \"1215 Edington Pl, O-3, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218077333\",\n        \"listDate\": \"2018-11-26T00:00:00\",\n        \"expiredDate\": \"2019-09-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Doug Rsampleher\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Dorchester\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23230,\n        \"propertyAddress\": \"1584 San Marco Rd , Marco Island, FL 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"218075971\",\n        \"listDate\": \"2018-11-26T00:00:00\",\n        \"expiredDate\": \"2019-08-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-02-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-05-06T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Angelica samplerews\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23234,\n        \"propertyAddress\": \"8935 Lely Island Cir , Naples, FL 34113\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218076502\",\n        \"listDate\": \"2018-11-19T00:00:00\",\n        \"expiredDate\": \"2019-05-19T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michael Hsampleted\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Brighton\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23236,\n        \"propertyAddress\": \"1632 Barbarosa Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218074682\",\n        \"listDate\": \"2018-11-12T00:00:00\",\n        \"expiredDate\": \"2019-08-05T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23239,\n        \"propertyAddress\": \"210 Columbus Way , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218076798\",\n        \"listDate\": \"2018-11-27T00:00:00\",\n        \"expiredDate\": \"2019-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Rosemarie Tsampleagni\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23254,\n        \"propertyAddress\": \"792 Whiskey Creek Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218076090\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-11-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-12-28T00:00:00\",\n        \"processedDate\": \"2019-01-02T13:40:29\",\n        \"closingDate\": \"2018-12-28T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23256,\n        \"propertyAddress\": \"1759 Watson Rd , Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"218078405DD\",\n        \"listDate\": \"2018-11-28T00:00:00\",\n        \"expiredDate\": \"2019-08-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-12-06T00:00:00\",\n        \"cancelDate\": \"2019-01-03T00:00:00\",\n        \"estimatedClosingDate\": \"2019-02-05T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23258,\n        \"propertyAddress\": \"347 N Collier Blvd, Marco Island, FL, 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"218078306\",\n        \"listDate\": \"2018-11-28T00:00:00\",\n        \"expiredDate\": \"2019-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23261,\n        \"propertyAddress\": \"1888 Bahama Ave , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218078304\",\n        \"listDate\": \"2018-11-28T00:00:00\",\n        \"expiredDate\": \"2019-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23284,\n        \"propertyAddress\": \"210 Waterway Ct , 2-202, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"218078783WD1\",\n        \"listDate\": \"2018-11-29T00:00:00\",\n        \"expiredDate\": \"2020-12-31T00:00:00\",\n        \"withdrawnDate\": \"2019-01-14T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23293,\n        \"propertyAddress\": \"12117 Cannon Island , Naples, FL 34102\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217044994\",\n        \"listDate\": \"2017-06-01T00:00:00\",\n        \"expiredDate\": \"2019-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Sherry Irvsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Broad Avenue\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23305,\n        \"propertyAddress\": \"1468 Butterfield Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2182806\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-12-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-12-19T00:00:00\",\n        \"processedDate\": \"2018-12-20T09:02:51\",\n        \"closingDate\": \"2018-12-19T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23309,\n        \"propertyAddress\": \"530 S Collier Blvd , 1003, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218078810\",\n        \"listDate\": \"2018-11-29T00:00:00\",\n        \"expiredDate\": \"2020-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23322,\n        \"propertyAddress\": \"900 S Collier Blvd, 203, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218079512\",\n        \"listDate\": \"2018-12-05T00:00:00\",\n        \"expiredDate\": \"2019-08-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23324,\n        \"propertyAddress\": \"190 N Collier Blvd , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218080123\",\n        \"listDate\": \"2018-12-05T00:00:00\",\n        \"expiredDate\": \"2019-05-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23342,\n        \"propertyAddress\": \"147 Dan River Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218080645\",\n        \"listDate\": \"2018-12-06T00:00:00\",\n        \"expiredDate\": \"2019-06-03T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-12-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-02-07T00:00:00\",\n        \"processedDate\": \"2019-02-12T14:34:56\",\n        \"closingDate\": \"2019-02-07T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23345,\n        \"propertyAddress\": \"740 N Collier Blvd , 2-309, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"218078932WD\",\n        \"listDate\": \"2018-11-30T00:00:00\",\n        \"expiredDate\": \"2020-12-31T00:00:00\",\n        \"withdrawnDate\": \"2019-02-27T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23350,\n        \"propertyAddress\": \"68 Marco Villas Dr , R-5, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218080697\",\n        \"listDate\": \"2018-12-06T00:00:00\",\n        \"expiredDate\": \"2020-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23359,\n        \"propertyAddress\": \"870 Eubanks Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218080915\",\n        \"listDate\": \"2018-12-07T00:00:00\",\n        \"expiredDate\": \"2019-11-26T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-01-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-02-22T00:00:00\",\n        \"processedDate\": \"2019-02-21T15:37:04\",\n        \"closingDate\": \"2019-02-21T00:00:00\",\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23360,\n        \"propertyAddress\": \"61 Peach Ct , Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"218080765DD\",\n        \"listDate\": \"2018-12-07T00:00:00\",\n        \"expiredDate\": \"2019-06-19T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-12-26T00:00:00\",\n        \"cancelDate\": \"2019-01-02T00:00:00\",\n        \"estimatedClosingDate\": \"2019-01-11T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23378,\n        \"propertyAddress\": \"220 SE Collier Blvd, 701, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218066252\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-10-29T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-12-12T00:00:00\",\n        \"processedDate\": \"2018-12-12T15:01:13\",\n        \"closingDate\": \"2018-12-12T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cullen Ssampleughnessy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23392,\n        \"propertyAddress\": \"508 Useppa Island, Captiva, FL 33924\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"ERCL102718IHEWD\",\n        \"listDate\": \"2018-10-27T00:00:00\",\n        \"expiredDate\": \"2019-07-31T00:00:00\",\n        \"withdrawnDate\": \"2018-12-17T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Brian McCsamplegan\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Cambridge\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23397,\n        \"propertyAddress\": \"1690 Copeland Dr N, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"FARR060118IHEDD\",\n        \"listDate\": \"2018-06-01T00:00:00\",\n        \"expiredDate\": \"2018-12-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": \"2018-12-24T00:00:00\",\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23432,\n        \"propertyAddress\": \"780 S Collier Blvd, Unit 904, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-12-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-12-13T00:00:00\",\n        \"processedDate\": \"2018-12-13T12:25:26\",\n        \"closingDate\": \"2018-12-13T00:00:00\",\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23434,\n        \"propertyAddress\": \"477 Driftwood Ct, Marco Island, FL 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"2172860\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-12-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-04-16T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23443,\n        \"propertyAddress\": \"140 Seaview Ct , 701S, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218082142\",\n        \"listDate\": \"2018-12-13T00:00:00\",\n        \"expiredDate\": \"2019-09-10T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23444,\n        \"propertyAddress\": \"1224 Bluebird Ave , Marco Island, FL 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"218080059\",\n        \"listDate\": \"2018-12-04T00:00:00\",\n        \"expiredDate\": \"2019-09-02T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-03-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-04-11T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Angelica samplerews\",\n        \"sellAgent\": \"Angelica samplerews\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23470,\n        \"propertyAddress\": \"508 Useppa Island , Useppa Island, FL 33924\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218082093\",\n        \"listDate\": \"2018-12-15T00:00:00\",\n        \"expiredDate\": \"2019-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Brian McCsamplegan\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Cambridge\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23473,\n        \"propertyAddress\": \"588 Spinnaker Dr, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"218076361DD\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-12-15T00:00:00\",\n        \"cancelDate\": \"2018-12-21T00:00:00\",\n        \"estimatedClosingDate\": \"2019-01-31T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"ML Msamplede\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23495,\n        \"propertyAddress\": \"130 N Collier Blvd, D-3, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": \"2018-12-17T00:00:00\",\n        \"expiredDate\": \"2018-12-17T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-12-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-01-09T00:00:00\",\n        \"processedDate\": \"2019-01-10T12:59:25\",\n        \"closingDate\": \"2019-01-09T00:00:00\",\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": \"Cathy Bsampledie\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23508,\n        \"propertyAddress\": \"1590 Jamaica Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218071185\",\n        \"listDate\": \"2018-11-01T00:00:00\",\n        \"expiredDate\": \"2019-10-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Rosemarie Tsampleagni\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23517,\n        \"propertyAddress\": \"243 Edgewater Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218082463\",\n        \"listDate\": \"2018-12-18T00:00:00\",\n        \"expiredDate\": \"2019-12-10T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23518,\n        \"propertyAddress\": \"211 Seminole Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218082465\",\n        \"listDate\": \"2018-12-18T00:00:00\",\n        \"expiredDate\": \"2019-12-10T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23528,\n        \"propertyAddress\": \"591 Hammock Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-12-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-03-08T00:00:00\",\n        \"processedDate\": \"2019-02-18T11:19:31\",\n        \"closingDate\": \"2019-02-18T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23533,\n        \"propertyAddress\": \"1036 Goldenrod Ave , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218081517\",\n        \"listDate\": \"2018-12-19T00:00:00\",\n        \"expiredDate\": \"2019-12-10T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23536,\n        \"propertyAddress\": \"1511 Jamaica Ct, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218083474\",\n        \"listDate\": \"2018-12-19T00:00:00\",\n        \"expiredDate\": \"2019-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23558,\n        \"propertyAddress\": \"616 Crescent St, Marco Island, FL, 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"218081703\",\n        \"listDate\": \"2018-12-20T00:00:00\",\n        \"expiredDate\": \"2019-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23561,\n        \"propertyAddress\": \"4000 Royal Marco Way , 424, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"218083889DD\",\n        \"listDate\": \"2018-12-20T00:00:00\",\n        \"expiredDate\": \"2019-11-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-01-18T00:00:00\",\n        \"cancelDate\": \"2019-02-20T00:00:00\",\n        \"estimatedClosingDate\": \"2019-03-11T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23563,\n        \"propertyAddress\": \"930 Caxambas Dr , Marco Island, FL 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"218083844\",\n        \"listDate\": \"2018-12-20T00:00:00\",\n        \"expiredDate\": \"2019-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-01-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-05-30T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23577,\n        \"propertyAddress\": \"221 Hideaway Cir N, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218084016\",\n        \"listDate\": \"2018-12-20T00:00:00\",\n        \"expiredDate\": \"2019-06-28T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-02-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-03-08T00:00:00\",\n        \"processedDate\": \"2019-03-08T11:35:24\",\n        \"closingDate\": \"2019-03-08T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23578,\n        \"propertyAddress\": \"395 Gumbo Limbo Ln , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": null,\n        \"listDate\": \"2018-12-20T00:00:00\",\n        \"expiredDate\": \"2019-06-28T00:00:00\",\n        \"withdrawnDate\": \"2019-02-19T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23581,\n        \"propertyAddress\": \"601 Seaview Ct , C-404, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218082400\",\n        \"listDate\": \"2018-12-21T00:00:00\",\n        \"expiredDate\": \"2019-09-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23597,\n        \"propertyAddress\": \"672 Waterside Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218083318\",\n        \"listDate\": \"2018-12-26T00:00:00\",\n        \"expiredDate\": \"2019-12-11T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23607,\n        \"propertyAddress\": \"688 W Elkcam Cir , 1024, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218080381\",\n        \"listDate\": \"2018-12-26T00:00:00\",\n        \"expiredDate\": \"2019-11-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-01-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-04-01T00:00:00\",\n        \"processedDate\": \"2019-04-02T12:50:07\",\n        \"closingDate\": \"2019-04-01T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23626,\n        \"propertyAddress\": \"761 W Elkcam Cir, B109, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218084611\",\n        \"listDate\": \"2018-12-27T00:00:00\",\n        \"expiredDate\": \"2019-09-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23639,\n        \"propertyAddress\": \"3000 Royal Marco Way , PH-K, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218084846\",\n        \"listDate\": \"2018-12-28T00:00:00\",\n        \"expiredDate\": \"2019-09-10T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-02-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-03-26T00:00:00\",\n        \"processedDate\": \"2019-03-26T16:18:17\",\n        \"closingDate\": \"2019-03-26T00:00:00\",\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23640,\n        \"propertyAddress\": \"968 N Barfield Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218084079\",\n        \"listDate\": \"2018-12-28T00:00:00\",\n        \"expiredDate\": \"2019-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23644,\n        \"propertyAddress\": \"652 Crescent St, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218084961\",\n        \"listDate\": \"2019-01-01T00:00:00\",\n        \"expiredDate\": \"2019-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Richard samplems\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23649,\n        \"propertyAddress\": \"61 Peach Ct, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218080765\",\n        \"listDate\": \"2018-12-07T00:00:00\",\n        \"expiredDate\": \"2019-06-19T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23695,\n        \"propertyAddress\": \"1759 Watson Rd , Marco Island, FL 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"218078405\",\n        \"listDate\": \"2018-11-28T00:00:00\",\n        \"expiredDate\": \"2019-08-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-03-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-05-15T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23697,\n        \"propertyAddress\": \"730 S Collier Blvd , 507, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218085022\",\n        \"listDate\": \"2019-01-03T00:00:00\",\n        \"expiredDate\": \"2019-09-11T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23703,\n        \"propertyAddress\": \"2003 Sheffield Ave , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218085023\",\n        \"listDate\": \"2019-01-03T00:00:00\",\n        \"expiredDate\": \"2019-08-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23725,\n        \"propertyAddress\": \"341 Nassau Ct., PYMT 1 , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-12-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-01-03T00:00:00\",\n        \"processedDate\": \"2019-01-04T15:10:24\",\n        \"closingDate\": \"2019-01-03T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23755,\n        \"propertyAddress\": \"300 S Collier Blvd, 1904, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219001977\",\n        \"listDate\": \"2019-01-07T00:00:00\",\n        \"expiredDate\": \"2019-05-06T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Angelica samplerews\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23756,\n        \"propertyAddress\": \"5000 Royal Marco Way , 330, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218084886\",\n        \"listDate\": \"2019-01-07T00:00:00\",\n        \"expiredDate\": \"2019-12-02T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23759,\n        \"propertyAddress\": \"1060 Caxambas Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218081597\",\n        \"listDate\": \"2019-01-07T00:00:00\",\n        \"expiredDate\": \"2019-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23760,\n        \"propertyAddress\": \"1721 Ludlow Rd , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218082144\",\n        \"listDate\": \"2019-01-07T00:00:00\",\n        \"expiredDate\": \"2019-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23762,\n        \"propertyAddress\": \"449 Adirondack Ct , Marco Island, FL 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"219001267\",\n        \"listDate\": \"2019-01-07T00:00:00\",\n        \"expiredDate\": \"2020-01-06T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-02-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-05-10T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jacki Stsampletegos\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23816,\n        \"propertyAddress\": \"1036 S Collier Blvd, 502, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218084102\",\n        \"listDate\": \"2019-01-10T00:00:00\",\n        \"expiredDate\": \"2019-11-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23825,\n        \"propertyAddress\": \"975 Royal Marco Way PYMT2, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-12-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-01-10T00:00:00\",\n        \"processedDate\": \"2019-01-10T14:55:15\",\n        \"closingDate\": \"2019-01-10T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23834,\n        \"propertyAddress\": \"1649 Barbarosa Ct , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"219002544\",\n        \"listDate\": \"2019-01-10T00:00:00\",\n        \"expiredDate\": \"2019-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-01-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-03-26T00:00:00\",\n        \"processedDate\": \"2019-03-26T13:51:59\",\n        \"closingDate\": \"2019-03-26T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23844,\n        \"propertyAddress\": \"1151 Vernon Pl, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"217042613\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-01-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-01-24T00:00:00\",\n        \"processedDate\": \"2019-01-24T14:03:17\",\n        \"closingDate\": \"2019-01-24T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"ML Msamplede\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23851,\n        \"propertyAddress\": \"1020 Dill Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218065625\",\n        \"listDate\": \"2018-10-05T00:00:00\",\n        \"expiredDate\": \"2019-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23852,\n        \"propertyAddress\": \"1030 Baltic , Marco Island, FL 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"219000444\",\n        \"listDate\": \"2019-01-11T00:00:00\",\n        \"expiredDate\": \"2019-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-03-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-04-09T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23853,\n        \"propertyAddress\": \"1040 Baltic , Marco Island, FL 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"219000451\",\n        \"listDate\": \"2019-01-10T00:00:00\",\n        \"expiredDate\": \"2019-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-03-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-04-16T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": \"Cathy Bsampledie\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23860,\n        \"propertyAddress\": \"979 Daisy Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219003496\",\n        \"listDate\": \"2019-01-11T00:00:00\",\n        \"expiredDate\": \"2019-07-09T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Sue Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23863,\n        \"propertyAddress\": \"147 Stillwater Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218002325\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-01-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-01-14T00:00:00\",\n        \"processedDate\": \"2019-01-14T13:51:58\",\n        \"closingDate\": \"2019-01-14T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Darlene sampleddy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23866,\n        \"propertyAddress\": \"140 Seaview Ct, 506N, Marco Island, FL 34146\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"BTLA011119IHE\",\n        \"listDate\": \"2019-01-11T00:00:00\",\n        \"expiredDate\": \"2019-06-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23873,\n        \"propertyAddress\": \"132 Saxon St , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"219003451\",\n        \"listDate\": \"2019-01-11T00:00:00\",\n        \"expiredDate\": \"2019-06-28T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-02-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-05-01T00:00:00\",\n        \"processedDate\": \"2019-04-01T15:18:53\",\n        \"closingDate\": \"2019-04-01T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23874,\n        \"propertyAddress\": \"2175 San Marco Rd, 1-204, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219003594\",\n        \"listDate\": \"2019-01-11T00:00:00\",\n        \"expiredDate\": \"2019-09-09T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Angelica samplerews\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23894,\n        \"propertyAddress\": \"210 Waterway Ct , 2-202, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"218078783WD2\",\n        \"listDate\": \"2018-11-29T00:00:00\",\n        \"expiredDate\": \"2020-12-31T00:00:00\",\n        \"withdrawnDate\": \"2019-03-05T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23905,\n        \"propertyAddress\": \"100 N Collier Blvd , 1002, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"219003325\",\n        \"listDate\": \"2019-01-14T00:00:00\",\n        \"expiredDate\": \"2019-07-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-01-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-03-14T00:00:00\",\n        \"processedDate\": \"2019-02-22T11:10:32\",\n        \"closingDate\": \"2019-02-21T00:00:00\",\n        \"listAgent\": \"Cynthia Csampleogin\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23909,\n        \"propertyAddress\": \"295 Hideaway Cir S, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219003449\",\n        \"listDate\": \"2019-01-14T00:00:00\",\n        \"expiredDate\": \"2019-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23921,\n        \"propertyAddress\": \"372 Rookery Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219004363\",\n        \"listDate\": \"2019-01-14T00:00:00\",\n        \"expiredDate\": \"2019-12-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23960,\n        \"propertyAddress\": \"424 Driftwood Ct , Marco Island, FL 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"219004779\",\n        \"listDate\": \"2019-01-15T00:00:00\",\n        \"expiredDate\": \"2019-07-14T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-02-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-04-01T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cullen Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23964,\n        \"propertyAddress\": \"24651 Canary Island Ct, #202, Bonita Springs, FL 34134\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218052080\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-01-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-02-13T00:00:00\",\n        \"processedDate\": \"2019-02-13T15:04:12\",\n        \"closingDate\": \"2019-02-13T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Bonnie Nagesample De Lestang\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Bay Village\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 23980,\n        \"propertyAddress\": \"670 Club Marco Cir , 101, Marco Island, FL 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"219004967\",\n        \"listDate\": \"2019-01-16T00:00:00\",\n        \"expiredDate\": \"2019-06-28T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-03-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-04-23T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24019,\n        \"propertyAddress\": \"900 S Collier Blvd , 210, Marco Island, FL 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"219005595\",\n        \"listDate\": \"2019-01-17T00:00:00\",\n        \"expiredDate\": \"2019-07-16T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-03-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-05-15T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24042,\n        \"propertyAddress\": \"601 Seaview Ct, C-402, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218023732\",\n        \"listDate\": \"2018-03-29T00:00:00\",\n        \"expiredDate\": \"2019-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24052,\n        \"propertyAddress\": \"130 Useppa Island , Useppa Island, FL 33924\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219002090\",\n        \"listDate\": \"2018-12-16T00:00:00\",\n        \"expiredDate\": \"2019-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Brian McCsamplegan\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Cambridge\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24060,\n        \"propertyAddress\": \"320 Seaview Ct , 2003, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219005902\",\n        \"listDate\": \"2019-01-18T00:00:00\",\n        \"expiredDate\": \"2020-01-16T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24062,\n        \"propertyAddress\": \"845 S Heathwood Dr, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219005807\",\n        \"listDate\": \"2019-01-18T00:00:00\",\n        \"expiredDate\": \"2019-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24068,\n        \"propertyAddress\": \"1731 Ludlow Rd, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"NOMLSDD\",\n        \"listDate\": \"2019-01-21T00:00:00\",\n        \"expiredDate\": \"2019-11-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-01-21T00:00:00\",\n        \"cancelDate\": \"2019-01-21T00:00:00\",\n        \"estimatedClosingDate\": \"2019-05-01T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24075,\n        \"propertyAddress\": \"1149 Bond Ct, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217042313\",\n        \"listDate\": \"2017-06-27T00:00:00\",\n        \"expiredDate\": \"2019-06-10T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24081,\n        \"propertyAddress\": \"1231 Laurel Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219006605\",\n        \"listDate\": \"2019-01-21T00:00:00\",\n        \"expiredDate\": \"2019-06-18T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24088,\n        \"propertyAddress\": \"380 Lamplighter Dr , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"219006366W\",\n        \"listDate\": \"2019-01-21T00:00:00\",\n        \"expiredDate\": \"2019-10-31T00:00:00\",\n        \"withdrawnDate\": \"2019-02-07T10:21:41\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24102,\n        \"propertyAddress\": \"504 Tigertail Court, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-01-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-01-21T00:00:00\",\n        \"processedDate\": \"2019-01-22T11:57:35\",\n        \"closingDate\": \"2019-01-21T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24126,\n        \"propertyAddress\": \"181 South Beach Dr, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219000233\",\n        \"listDate\": \"2019-01-22T00:00:00\",\n        \"expiredDate\": \"2019-07-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24145,\n        \"propertyAddress\": \"220 S Collier Blvd, 703, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219007279\",\n        \"listDate\": \"2019-01-23T00:00:00\",\n        \"expiredDate\": \"2019-06-23T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24154,\n        \"propertyAddress\": \"1450 Salvadore Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219007085\",\n        \"listDate\": \"2019-01-23T00:00:00\",\n        \"expiredDate\": \"2019-08-21T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24155,\n        \"propertyAddress\": \"531 Hammock Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219007165\",\n        \"listDate\": \"2019-01-23T00:00:00\",\n        \"expiredDate\": \"2020-01-17T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24164,\n        \"propertyAddress\": \"550 South Barfield Drive, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-01-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-01-23T00:00:00\",\n        \"processedDate\": \"2019-01-24T13:29:29\",\n        \"closingDate\": \"2019-01-23T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24172,\n        \"propertyAddress\": \"1731 Ludlow Rd , Marco Island, FL 34145-6623\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219000698\",\n        \"listDate\": \"2019-01-24T00:00:00\",\n        \"expiredDate\": \"2019-11-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24173,\n        \"propertyAddress\": \"760 N Collier Blvd , 3-209, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219007562\",\n        \"listDate\": \"2019-01-24T00:00:00\",\n        \"expiredDate\": \"2020-01-17T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24182,\n        \"propertyAddress\": \"1777 Dogwood Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219007163\",\n        \"listDate\": \"2019-01-24T00:00:00\",\n        \"expiredDate\": \"2019-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24190,\n        \"propertyAddress\": \"140 Seaview Ct, 1101N, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219007920\",\n        \"listDate\": \"2019-01-25T00:00:00\",\n        \"expiredDate\": \"2020-01-18T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24205,\n        \"propertyAddress\": \"226 Waterway Ct , 6-201, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219006380\",\n        \"listDate\": \"2019-01-25T00:00:00\",\n        \"expiredDate\": \"2019-07-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24206,\n        \"propertyAddress\": \"100 N Collier Blvd, PH-3, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219008018\",\n        \"listDate\": \"2019-01-25T00:00:00\",\n        \"expiredDate\": \"2019-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24230,\n        \"propertyAddress\": \"260 Seaview Court , 605, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"219005307\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-01-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-03-01T00:00:00\",\n        \"processedDate\": \"2019-03-01T14:36:36\",\n        \"closingDate\": \"2019-03-01T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Vince Cosamplece\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24258,\n        \"propertyAddress\": \"893 Collier Ct , 3-405, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"219006857\",\n        \"listDate\": \"2019-01-29T00:00:00\",\n        \"expiredDate\": \"2019-10-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-02-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-02-20T00:00:00\",\n        \"processedDate\": \"2019-02-20T12:09:37\",\n        \"closingDate\": \"2019-02-20T00:00:00\",\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24259,\n        \"propertyAddress\": \"881 Eubanks Ct , Marco Island, FL 34145-6613\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219008709\",\n        \"listDate\": \"2019-01-28T00:00:00\",\n        \"expiredDate\": \"2019-11-04T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24276,\n        \"propertyAddress\": \"861 S Collier Blvd, S-301, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219009120\",\n        \"listDate\": \"2019-01-29T00:00:00\",\n        \"expiredDate\": \"2019-08-28T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24286,\n        \"propertyAddress\": \"507 Tigertail Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218024357\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-01-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-03-11T00:00:00\",\n        \"processedDate\": \"2019-03-11T13:17:37\",\n        \"closingDate\": \"2019-03-11T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24303,\n        \"propertyAddress\": \"1801 Olds Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218069204\",\n        \"listDate\": \"2018-10-23T00:00:00\",\n        \"expiredDate\": \"2019-07-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24344,\n        \"propertyAddress\": \"631 S Barfield Dr , Marco Island, FL 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"219009663\",\n        \"listDate\": \"2019-02-01T00:00:00\",\n        \"expiredDate\": \"2019-11-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-03-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-04-15T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24345,\n        \"propertyAddress\": \"385 Century Dr, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219009755\",\n        \"listDate\": \"2019-02-01T00:00:00\",\n        \"expiredDate\": \"2019-10-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Angelica samplerews\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24430,\n        \"propertyAddress\": \"1010 Mendel Avenue , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"VOLP020418IHEW\",\n        \"listDate\": \"2019-02-04T00:00:00\",\n        \"expiredDate\": \"2019-08-30T00:00:00\",\n        \"withdrawnDate\": \"2019-02-28T15:29:33\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24435,\n        \"propertyAddress\": \"850 S Collier Blvd , 701, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218070492\",\n        \"listDate\": \"2018-10-26T00:00:00\",\n        \"expiredDate\": \"2020-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24442,\n        \"propertyAddress\": \"651 Seaview Ct , B207, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217058094\",\n        \"listDate\": \"2017-09-22T00:00:00\",\n        \"expiredDate\": \"2020-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24454,\n        \"propertyAddress\": \"140 Seaview Ct, 305S, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219009777\",\n        \"listDate\": \"2019-02-05T00:00:00\",\n        \"expiredDate\": \"2019-07-09T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24457,\n        \"propertyAddress\": \"494 Tallwood St, 503, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219010267\",\n        \"listDate\": \"2019-02-05T00:00:00\",\n        \"expiredDate\": \"2019-07-05T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jacki Stsampletegos\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24473,\n        \"propertyAddress\": \"824 Hideaway Circle E, 3-341, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219010740\",\n        \"listDate\": \"2019-02-06T00:00:00\",\n        \"expiredDate\": \"2019-08-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24478,\n        \"propertyAddress\": \"32 Gulfport Ct , Marco Island, FL 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"219011079\",\n        \"listDate\": \"2019-02-06T00:00:00\",\n        \"expiredDate\": \"2019-11-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-03-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-05-07T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24483,\n        \"propertyAddress\": \"140 Seaview Ct, 204N, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218077960\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-02-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-03-13T00:00:00\",\n        \"processedDate\": \"2019-03-18T14:06:17\",\n        \"closingDate\": \"2019-03-15T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Gwen Tolssample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24506,\n        \"propertyAddress\": \"488 Pepperwood Ct , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"219011364W\",\n        \"listDate\": \"2019-02-07T00:00:00\",\n        \"expiredDate\": \"2019-07-31T00:00:00\",\n        \"withdrawnDate\": \"2019-03-27T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24531,\n        \"propertyAddress\": \"995 Anglers Cv , N-405, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"219011997\",\n        \"listDate\": \"2019-02-08T00:00:00\",\n        \"expiredDate\": \"2019-08-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-02-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-03-29T00:00:00\",\n        \"processedDate\": \"2019-03-29T14:13:50\",\n        \"closingDate\": \"2019-03-29T00:00:00\",\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": \"Darlene sampleddy\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24535,\n        \"propertyAddress\": \"440 Seaview Ct , 1709, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"219012148\",\n        \"listDate\": \"2019-02-08T00:00:00\",\n        \"expiredDate\": \"2020-02-06T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-02-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-02-28T00:00:00\",\n        \"processedDate\": \"2019-02-28T13:33:50\",\n        \"closingDate\": \"2019-02-28T00:00:00\",\n        \"listAgent\": \"Lori Hollsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24536,\n        \"propertyAddress\": \"1065 Blue Hill Creek Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219011765\",\n        \"listDate\": \"2019-02-08T00:00:00\",\n        \"expiredDate\": \"2020-02-07T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24571,\n        \"propertyAddress\": \"991 N Barfield Dr , 207, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"219011784\",\n        \"listDate\": \"2019-02-11T00:00:00\",\n        \"expiredDate\": \"2020-01-18T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-02-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-03-01T00:00:00\",\n        \"processedDate\": \"2019-03-04T15:08:56\",\n        \"closingDate\": \"2019-03-01T00:00:00\",\n        \"listAgent\": \"Dave Flowsamples\",\n        \"sellAgent\": \"Dave Flowsamples\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24573,\n        \"propertyAddress\": \"190 N Collier Blvd, R7, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219012661\",\n        \"listDate\": \"2019-02-11T00:00:00\",\n        \"expiredDate\": \"2019-07-12T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24574,\n        \"propertyAddress\": \"380 Seaview Ct, 1802, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219012669\",\n        \"listDate\": \"2019-02-11T00:00:00\",\n        \"expiredDate\": \"2019-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24587,\n        \"propertyAddress\": \"1890 Honduras Ave, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"219005554\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-02-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-03-29T00:00:00\",\n        \"processedDate\": \"2019-04-01T12:35:46\",\n        \"closingDate\": \"2019-04-01T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Darlene sampleddy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24597,\n        \"propertyAddress\": \"500 Saturn Ct, Marco Island, FL 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"WBIN021119IHE\",\n        \"listDate\": \"2019-02-11T00:00:00\",\n        \"expiredDate\": \"2019-02-11T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-02-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-05-07T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": \"Cathy Bsampledie\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24603,\n        \"propertyAddress\": \"280 S Collier Blvd , 1401, Marco Island, FL 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"219012667\",\n        \"listDate\": \"2019-02-12T00:00:00\",\n        \"expiredDate\": \"2019-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-02-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-05-01T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24611,\n        \"propertyAddress\": \"980 Cape Marco Dr, 1004, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"RED021219IHE\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-02-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-02-22T00:00:00\",\n        \"processedDate\": \"2019-02-22T15:12:15\",\n        \"closingDate\": \"2019-02-22T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Angelica samplerews\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24616,\n        \"propertyAddress\": \"881 Whiskey Creek Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219013195\",\n        \"listDate\": \"2019-02-13T00:00:00\",\n        \"expiredDate\": \"2019-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24626,\n        \"propertyAddress\": \"530 S Collier Blvd , 1101, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219007963\",\n        \"listDate\": \"2019-01-25T00:00:00\",\n        \"expiredDate\": \"2021-02-28T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24629,\n        \"propertyAddress\": \"987 Hunt Ct, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219013073\",\n        \"listDate\": \"2019-02-13T00:00:00\",\n        \"expiredDate\": \"2019-08-11T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Dave Flowsamples\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24631,\n        \"propertyAddress\": \"159 South Seas Ct, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219013155\",\n        \"listDate\": \"2019-02-13T00:00:00\",\n        \"expiredDate\": \"2019-11-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24657,\n        \"propertyAddress\": \"970 Cape Marco Dr, 607, Marco Island, FL 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"219007604\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-02-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-04-29T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Vince Cosamplece\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24661,\n        \"propertyAddress\": \"140 Seaview Ct , 1806S, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"219013908W\",\n        \"listDate\": \"2019-02-15T00:00:00\",\n        \"expiredDate\": \"2020-02-12T00:00:00\",\n        \"withdrawnDate\": \"2019-03-07T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24689,\n        \"propertyAddress\": \"720 N Collier Blvd , 602, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"217063956\",\n        \"listDate\": \"2017-10-20T00:00:00\",\n        \"expiredDate\": \"2020-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24730,\n        \"propertyAddress\": \"2000 Royal Marco Way , 2-509, Marco Island, FL 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"217029848\",\n        \"listDate\": \"2017-04-27T00:00:00\",\n        \"expiredDate\": \"2019-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-03-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-04-05T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": \"Cathy Bsampledie\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24735,\n        \"propertyAddress\": \"520 S Collier Blvd , 501, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"219014660\",\n        \"listDate\": \"2019-02-18T00:00:00\",\n        \"expiredDate\": \"2019-11-12T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-03-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-03-28T00:00:00\",\n        \"processedDate\": \"2019-03-20T15:08:11\",\n        \"closingDate\": \"2019-03-20T00:00:00\",\n        \"listAgent\": \"Angelica samplerews\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24755,\n        \"propertyAddress\": \"1141 Cara Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219013980\",\n        \"listDate\": \"2019-02-19T00:00:00\",\n        \"expiredDate\": \"2020-02-18T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jacki Stsampletegos\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24761,\n        \"propertyAddress\": \"970 Cape Marco Dr , 1505, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"219015090\",\n        \"listDate\": \"2019-02-20T00:00:00\",\n        \"expiredDate\": \"2019-11-14T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-02-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-03-15T00:00:00\",\n        \"processedDate\": \"2019-03-15T12:54:11\",\n        \"closingDate\": \"2019-03-14T00:00:00\",\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24766,\n        \"propertyAddress\": \"223 Seahorse Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219015086\",\n        \"listDate\": \"2019-02-20T00:00:00\",\n        \"expiredDate\": \"2019-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24767,\n        \"propertyAddress\": \"700 Rockport Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219015311\",\n        \"listDate\": \"2019-02-20T00:00:00\",\n        \"expiredDate\": \"2019-08-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24777,\n        \"propertyAddress\": \"889 Collier Ct, 304, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2163681\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-02-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-03-29T00:00:00\",\n        \"processedDate\": \"2019-03-29T13:56:57\",\n        \"closingDate\": \"2019-03-28T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24800,\n        \"propertyAddress\": \"341 Nassau Court PYMT 2, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-02-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-02-20T00:00:00\",\n        \"processedDate\": \"2019-02-21T14:23:36\",\n        \"closingDate\": \"2019-02-20T00:00:00\",\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24806,\n        \"propertyAddress\": \"4000 Royal Marco Way , 424, Marco Island, FL 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"218083889\",\n        \"listDate\": \"2018-12-20T00:00:00\",\n        \"expiredDate\": \"2019-11-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-02-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-04-17T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24886,\n        \"propertyAddress\": \"213 Windbrook Ct, Marco Island, FL, 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"219016369\",\n        \"listDate\": \"2019-02-25T00:00:00\",\n        \"expiredDate\": \"2019-12-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24893,\n        \"propertyAddress\": \"27 Greenbrier St , 206, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"214058515\",\n        \"listDate\": \"2014-10-23T00:00:00\",\n        \"expiredDate\": \"2020-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24895,\n        \"propertyAddress\": \"950 Sand Dune Dr , Marco Island, FL 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"218003938\",\n        \"listDate\": \"2018-01-12T00:00:00\",\n        \"expiredDate\": \"2019-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-02-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-05-13T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24909,\n        \"propertyAddress\": \"891 Huron Ct , 302, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"219016595DD\",\n        \"listDate\": \"2019-02-26T00:00:00\",\n        \"expiredDate\": \"2019-10-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-03-05T00:00:00\",\n        \"cancelDate\": \"2019-03-27T00:00:00\",\n        \"estimatedClosingDate\": \"2019-04-22T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24917,\n        \"propertyAddress\": \"740 N Collier Blvd , 2-309, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218078932\",\n        \"listDate\": \"2018-11-30T00:00:00\",\n        \"expiredDate\": \"2020-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24927,\n        \"propertyAddress\": \"520 Useppa Island , Useppa Island, FL 33924\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219002094\",\n        \"listDate\": \"2018-12-23T00:00:00\",\n        \"expiredDate\": \"2019-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Brian McCsamplegan\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Cambridge\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24966,\n        \"propertyAddress\": \"1010 Mendel Ave , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219009984\",\n        \"listDate\": \"2019-02-28T00:00:00\",\n        \"expiredDate\": \"2019-08-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24972,\n        \"propertyAddress\": \"625 Spinnaker Dr , Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"219017132DD\",\n        \"listDate\": \"2019-02-28T00:00:00\",\n        \"expiredDate\": \"2019-08-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-03-07T00:00:00\",\n        \"cancelDate\": \"2019-03-15T00:00:00\",\n        \"estimatedClosingDate\": \"2019-04-24T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24973,\n        \"propertyAddress\": \"4000 Royal Marco Way , 829, Marco Island, FL 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"219017328\",\n        \"listDate\": \"2019-02-28T00:00:00\",\n        \"expiredDate\": \"2019-08-25T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-03-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-04-04T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Barbara Fsampleney\",\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": \"Fairfield\",\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24981,\n        \"propertyAddress\": \"424 Driftwood, Marco Island, Fl 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": \"2019-11-27T00:00:00\",\n        \"expiredDate\": \"2019-11-29T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy McCarthy - samplsampleger\",\n        \"sellAgent\": \"Vanya Demisampleva\",\n        \"listOffice\": \"Bay Village\",\n        \"sellOffice\": \"Boston\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24990,\n        \"propertyAddress\": \"841 Caxambas Dr, Marco Island, FL 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"2172804\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-02-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-04-30T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Jim Psamplenge\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24992,\n        \"propertyAddress\": \"58 N Collier Blvd, 504, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219017208\",\n        \"listDate\": \"2019-03-01T00:00:00\",\n        \"expiredDate\": \"2019-11-29T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 24994,\n        \"propertyAddress\": \"245 N Barfield , Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218017166\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-02-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-03-08T00:00:00\",\n        \"processedDate\": \"2019-03-07T15:12:39\",\n        \"closingDate\": \"2019-03-07T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Angelica samplerews\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25002,\n        \"propertyAddress\": \"1610 Winterberry Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219017414\",\n        \"listDate\": \"2019-03-01T00:00:00\",\n        \"expiredDate\": \"2019-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25023,\n        \"propertyAddress\": \"125 Shorecrest Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219017340\",\n        \"listDate\": \"2019-03-04T00:00:00\",\n        \"expiredDate\": \"2019-08-04T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jacki Stsampletegos\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25032,\n        \"propertyAddress\": \"20944 Island Sound Cir , 203, Estero, FL 33928\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"219014909\",\n        \"listDate\": \"2019-02-12T00:00:00\",\n        \"expiredDate\": \"2019-12-02T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-03-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-04-01T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Debron Fowsamples\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Boston\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25046,\n        \"propertyAddress\": \"930 Cape Marco Dr , 1304, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219018320\",\n        \"listDate\": \"2019-03-05T00:00:00\",\n        \"expiredDate\": \"2019-09-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25052,\n        \"propertyAddress\": \"350 Seabreeze Dr, Marco Island, FL 34146\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"BGEN030519IHEW\",\n        \"listDate\": \"2019-03-05T00:00:00\",\n        \"expiredDate\": \"2020-02-11T00:00:00\",\n        \"withdrawnDate\": \"2019-03-19T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25055,\n        \"propertyAddress\": \"210 Waterway Ct , 2-202, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"218078783WD3\",\n        \"listDate\": \"2018-11-29T00:00:00\",\n        \"expiredDate\": \"2020-12-31T00:00:00\",\n        \"withdrawnDate\": \"2019-03-07T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25062,\n        \"propertyAddress\": \"1020 S Collier Blvd , 707, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219018470\",\n        \"listDate\": \"2019-03-05T00:00:00\",\n        \"expiredDate\": \"2019-08-25T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25064,\n        \"propertyAddress\": \"210 Hideaway Cir N, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"218056191\",\n        \"listDate\": \"2018-08-24T00:00:00\",\n        \"expiredDate\": \"2020-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Annie Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25151,\n        \"propertyAddress\": \"163 Cyrus St, Marco Island, FL 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"219010510\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-03-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-04-17T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25156,\n        \"propertyAddress\": \"20000 Royal Marco Way, Unit 509, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": \"2020-02-14T00:00:00\",\n        \"expiredDate\": \"2020-02-21T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Greg Kimmelsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Boston\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25161,\n        \"propertyAddress\": \"325 Wild Orchid Ln , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219016637\",\n        \"listDate\": \"2019-03-01T00:00:00\",\n        \"expiredDate\": \"2020-02-12T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25165,\n        \"propertyAddress\": \"1103 Blue Hill Creek Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219017227\",\n        \"listDate\": \"2019-03-08T00:00:00\",\n        \"expiredDate\": \"2020-03-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25166,\n        \"propertyAddress\": \"992 Royal Marco Way , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219018864\",\n        \"listDate\": \"2019-03-08T00:00:00\",\n        \"expiredDate\": \"2019-04-18T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25180,\n        \"propertyAddress\": \"889 Collier Ct , 2-403, Marco Island, FL 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"219019224\",\n        \"listDate\": \"2019-03-11T00:00:00\",\n        \"expiredDate\": \"2019-11-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-03-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-04-15T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25198,\n        \"propertyAddress\": \"591 Seaview Ct, A-306, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219019867\",\n        \"listDate\": \"2019-03-11T00:00:00\",\n        \"expiredDate\": \"2020-02-21T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25232,\n        \"propertyAddress\": \"1065 Dill Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219020164\",\n        \"listDate\": \"2019-03-12T00:00:00\",\n        \"expiredDate\": \"2019-11-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25233,\n        \"propertyAddress\": \"220 Seaview Ct, 315, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219020232\",\n        \"listDate\": \"2019-03-12T00:00:00\",\n        \"expiredDate\": \"2019-09-13T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Dave Flowsamples\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25239,\n        \"propertyAddress\": \"1781 Barbados Ave , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219020051\",\n        \"listDate\": \"2019-03-12T00:00:00\",\n        \"expiredDate\": \"2020-05-11T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Gwen Tolssample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25240,\n        \"propertyAddress\": \"468 Barcelona Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219020152\",\n        \"listDate\": \"2019-03-12T00:00:00\",\n        \"expiredDate\": \"2019-08-02T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25241,\n        \"propertyAddress\": \"330 Marquesas Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219020166\",\n        \"listDate\": \"2019-03-12T00:00:00\",\n        \"expiredDate\": \"2019-11-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25243,\n        \"propertyAddress\": \"1231 Stone Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219019548\",\n        \"listDate\": \"2019-03-12T00:00:00\",\n        \"expiredDate\": \"2019-08-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25305,\n        \"propertyAddress\": \"845 Collier Ct , 501, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219020999\",\n        \"listDate\": \"2019-03-14T00:00:00\",\n        \"expiredDate\": \"2020-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Gwen Tolssample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25324,\n        \"propertyAddress\": \"961 Swallow Ave , 106, Marco Island, FL 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"219019613\",\n        \"listDate\": \"2019-03-15T00:00:00\",\n        \"expiredDate\": \"2019-09-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-03-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-04-12T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jacki Stsampletegos\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25335,\n        \"propertyAddress\": \"625 Spinnaker Dr , Marco Island, FL 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"219017132\",\n        \"listDate\": \"2019-02-28T00:00:00\",\n        \"expiredDate\": \"2019-08-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-03-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-04-16T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25349,\n        \"propertyAddress\": \"951 Dolphin Ct, Marco Island, FL 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"2190829\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-03-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-04-30T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Cathy samplegers\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25365,\n        \"propertyAddress\": \"693 Seaview Ct , A-609, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219021587\",\n        \"listDate\": \"2019-03-18T00:00:00\",\n        \"expiredDate\": \"2019-11-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25387,\n        \"propertyAddress\": \"320 Seaview Ct, 812, Marco Island, FL 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"2190646\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-03-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-04-22T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Helga Wsamplezold\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25393,\n        \"propertyAddress\": \"350 Seabreeze Dr , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219021710\",\n        \"listDate\": \"2019-03-18T00:00:00\",\n        \"expiredDate\": \"2020-02-11T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25422,\n        \"propertyAddress\": \"325 Marquesas Ct, Marco Island, FL, 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"219010433\",\n        \"listDate\": \"2019-02-01T00:00:00\",\n        \"expiredDate\": \"2020-02-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25423,\n        \"propertyAddress\": \"980 Cape Marco Dr , 1004, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219022064\",\n        \"listDate\": \"2019-03-20T00:00:00\",\n        \"expiredDate\": \"2019-11-18T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Angelica samplerews\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25444,\n        \"propertyAddress\": \"929 Collier Ct , B304, Marco Island, FL 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"219018098\",\n        \"listDate\": \"2019-03-01T00:00:00\",\n        \"expiredDate\": \"2020-03-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-03-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-06-14T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25476,\n        \"propertyAddress\": \"1079 Bald Eagle Dr, Marco Island, FL 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"218052096\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-03-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-04-30T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"ML Msamplede\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25498,\n        \"propertyAddress\": \"225 Hideaway Cir N, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219022115\",\n        \"listDate\": \"2019-03-22T00:00:00\",\n        \"expiredDate\": \"2019-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25538,\n        \"propertyAddress\": \"640 Blackmore Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219022150\",\n        \"listDate\": \"2019-03-25T00:00:00\",\n        \"expiredDate\": \"2019-09-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25567,\n        \"propertyAddress\": \"485 N Collier Blvd, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"218066925\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-03-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-03-28T00:00:00\",\n        \"processedDate\": \"2019-03-28T13:36:22\",\n        \"closingDate\": \"2019-03-28T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cynthia Csampleogin\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25576,\n        \"propertyAddress\": \"626 Bimini Ave , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219023361\",\n        \"listDate\": \"2019-03-26T00:00:00\",\n        \"expiredDate\": \"2020-03-14T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25579,\n        \"propertyAddress\": \"4000 Royal Marco Way, 429, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219023487\",\n        \"listDate\": \"2019-03-26T00:00:00\",\n        \"expiredDate\": \"2019-07-25T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25588,\n        \"propertyAddress\": \"850 S Collier Blvd, 401, Marco Island, FL 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"2183077\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-03-19T00:00:00\",\n        \"cancelDate\": \"2019-03-27T00:00:00\",\n        \"estimatedClosingDate\": \"2019-04-22T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Helga Wsamplezold\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25589,\n        \"propertyAddress\": \"850 S Collier Blvd, 401, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"2183077DD\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-03-19T00:00:00\",\n        \"cancelDate\": \"2019-03-27T00:00:00\",\n        \"estimatedClosingDate\": \"2019-04-22T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Helga Wsamplezold\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25592,\n        \"propertyAddress\": \"440 Seaview Ct, 202, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219021780\",\n        \"listDate\": \"2019-03-27T00:00:00\",\n        \"expiredDate\": \"2019-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25608,\n        \"propertyAddress\": \"891 Huron Ct , 302, Marco Island, FL 34145\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"219016595DDD\",\n        \"listDate\": \"2019-02-26T00:00:00\",\n        \"expiredDate\": \"2019-10-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-03-27T00:00:00\",\n        \"cancelDate\": \"2019-04-01T00:00:00\",\n        \"estimatedClosingDate\": \"2019-04-30T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25614,\n        \"propertyAddress\": \"210 Waterway Ct, 201, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"2182569\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-12-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-03-28T00:00:00\",\n        \"processedDate\": \"2019-03-28T13:50:42\",\n        \"closingDate\": \"2019-03-28T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Julie Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25630,\n        \"propertyAddress\": \"117 Bond St, Marco Island, FL 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"2181886\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-03-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-04-22T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25635,\n        \"propertyAddress\": \"692 Cameo Ct, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219024095\",\n        \"listDate\": \"2019-03-28T00:00:00\",\n        \"expiredDate\": \"2019-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25637,\n        \"propertyAddress\": \"710 Kendall Dr, Marco Island, FL 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"218064423\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-03-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-05-28T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Larry Csampleuso\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25703,\n        \"propertyAddress\": \"891 Huron Ct , 302, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219016595\",\n        \"listDate\": \"2019-02-26T00:00:00\",\n        \"expiredDate\": \"2019-10-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25706,\n        \"propertyAddress\": \"910 Huron Ct , 202, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219025190\",\n        \"listDate\": \"2019-04-01T00:00:00\",\n        \"expiredDate\": \"2020-03-27T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25707,\n        \"propertyAddress\": \"235 Seminole Ct , Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219025417\",\n        \"listDate\": \"2019-04-01T00:00:00\",\n        \"expiredDate\": \"2019-10-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25710,\n        \"propertyAddress\": \"140 Seaview Ct S, 1104S, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219025268\",\n        \"listDate\": \"2019-04-01T00:00:00\",\n        \"expiredDate\": \"2019-09-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25711,\n        \"propertyAddress\": \"87 N Collier Blvd, H 3, Marco Island, FL 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"2190947\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-04-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-05-01T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Michelle Thomsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Mansfield\",\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25715,\n        \"propertyAddress\": \"1761 Ludlow Rd, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"TEMP040219IHE\",\n        \"listDate\": \"2019-04-02T00:00:00\",\n        \"expiredDate\": \"2020-03-11T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25716,\n        \"propertyAddress\": \"1751 Ludlow Rd, Marco Island, FL 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"TEMP040119IHE\",\n        \"listDate\": \"2019-04-02T00:00:00\",\n        \"expiredDate\": \"2020-03-11T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25731,\n        \"propertyAddress\": \"8884 Mustang Island Circle, Naples, FL 34113\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-03-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-03-29T00:00:00\",\n        \"processedDate\": \"2019-04-02T12:36:24\",\n        \"closingDate\": \"2019-03-29T00:00:00\",\n        \"listAgent\": \"Cynthia Msamplees\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Dorchester\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 25829,\n        \"propertyAddress\": \"60 Island Ct      \",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"A380719\",\n        \"listDate\": \"2008-04-10T00:00:00\",\n        \"expiredDate\": \"2009-04-24T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Devon Davsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Plaza\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 25842,\n        \"propertyAddress\": \"458 Island Cir\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"A382948\",\n        \"listDate\": \"2008-05-08T00:00:00\",\n        \"expiredDate\": \"2010-10-31T00:00:00\",\n        \"withdrawnDate\": \"2010-10-21T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Judie Bsamplegsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Plaza\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 25889,\n        \"propertyAddress\": \"325 Island Cir     \",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"A387865\",\n        \"listDate\": \"2008-07-15T00:00:00\",\n        \"expiredDate\": \"2009-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2009-04-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2009-05-30T00:00:00\",\n        \"processedDate\": \"2009-08-21T00:00:00\",\n        \"closingDate\": null,\n        \"listAgent\": \"Roberta Tengsampledy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Plaza\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 25892,\n        \"propertyAddress\": \"41 Island Ct      \",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"A388374\",\n        \"listDate\": \"2008-07-23T00:00:00\",\n        \"expiredDate\": \"2010-06-01T00:00:00\",\n        \"withdrawnDate\": \"2010-04-12T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Devon Davsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Plaza\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 25895,\n        \"propertyAddress\": \"472 Island Cir     \",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"A388536\",\n        \"listDate\": \"2008-07-29T00:00:00\",\n        \"expiredDate\": \"2009-06-23T00:00:00\",\n        \"withdrawnDate\": \"2009-03-27T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Heidi Psampletsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Plaza\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 25940,\n        \"propertyAddress\": \"30 Island Ct      \",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"A3895545\",\n        \"listDate\": \"2008-10-03T00:00:00\",\n        \"expiredDate\": \"2010-03-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2009-10-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2009-12-25T00:00:00\",\n        \"processedDate\": \"2009-12-04T00:00:00\",\n        \"closingDate\": null,\n        \"listAgent\": \"Devon Davsample\",\n        \"sellAgent\": \"Devon Davsample\",\n        \"listOffice\": \"Signature - Signature - Plaza\",\n        \"sellOffice\": \"Signature - Signature - Plaza\",\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 25973,\n        \"propertyAddress\": \"208 Island Cir     \",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"A3898620\",\n        \"listDate\": \"2008-11-30T00:00:00\",\n        \"expiredDate\": \"2009-11-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2009-09-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2009-09-30T00:00:00\",\n        \"processedDate\": \"2009-10-01T00:00:00\",\n        \"closingDate\": null,\n        \"listAgent\": \"Cindy Migsamplee\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Plaza\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 26010,\n        \"propertyAddress\": \"239 Island Cir     \",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"A363033\",\n        \"listDate\": \"2007-09-19T00:00:00\",\n        \"expiredDate\": \"2009-10-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2009-10-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2009-10-22T00:00:00\",\n        \"processedDate\": \"2009-10-22T00:00:00\",\n        \"closingDate\": null,\n        \"listAgent\": \"Pat Warsamplen\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Lakewood Ranch\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 26070,\n        \"propertyAddress\": \"239 Island Cir\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"A3894120\",\n        \"listDate\": \"2008-09-05T00:00:00\",\n        \"expiredDate\": \"2009-03-04T00:00:00\",\n        \"withdrawnDate\": \"2009-01-26T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Pat Warsamplen\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Lakewood Ranch\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 26080,\n        \"propertyAddress\": \"615 Dream Island Road, 306, Longboat Key, FL 34228\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"A3896430\",\n        \"listDate\": \"2008-10-17T00:00:00\",\n        \"expiredDate\": \"2012-11-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Karin Stepsamplen\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - LBK\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 26121,\n        \"propertyAddress\": \"415 Bryn Mawr Island \",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"A3900501\",\n        \"listDate\": \"2009-01-07T00:00:00\",\n        \"expiredDate\": \"2009-10-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Rinat Sikdsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Plaza\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 26294,\n        \"propertyAddress\": \"50 Island Ct      \",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"A3904628\",\n        \"listDate\": \"2009-03-12T00:00:00\",\n        \"expiredDate\": \"2010-03-02T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2010-01-15T00:00:00\",\n        \"cancelDate\": \"2010-03-02T00:00:00\",\n        \"estimatedClosingDate\": \"2010-12-25T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Devon Davsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Plaza\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 26320,\n        \"propertyAddress\": \"47 Island Cir \",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2009-03-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2009-03-24T00:00:00\",\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Cindy Migsamplee\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Signature - Signature - Plaza\",\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 26828,\n        \"propertyAddress\": \"160 Island Cir     \",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"A3916186\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2009-11-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2010-12-14T00:00:00\",\n        \"processedDate\": \"2009-12-15T00:00:00\",\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Vince sampleMaida\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Signature - Signature - Plaza\",\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 27084,\n        \"propertyAddress\": \"318 Island Cir\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"A3921113\",\n        \"listDate\": \"2010-02-17T00:00:00\",\n        \"expiredDate\": \"2010-12-21T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2010-09-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2010-10-04T00:00:00\",\n        \"processedDate\": \"2010-10-11T00:00:00\",\n        \"closingDate\": null,\n        \"listAgent\": \"Judie Bsamplegsample\",\n        \"sellAgent\": \"Joel Schemmsample\",\n        \"listOffice\": \"Signature - Signature - Plaza\",\n        \"sellOffice\": \"Signature - Signature - Plaza\",\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 27088,\n        \"propertyAddress\": \"160 Island Cir     \",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"A3921226\",\n        \"listDate\": \"2010-02-18T00:00:00\",\n        \"expiredDate\": \"2011-01-20T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2010-02-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2010-02-26T00:00:00\",\n        \"processedDate\": \"2010-02-26T00:00:00\",\n        \"closingDate\": null,\n        \"listAgent\": \"Vince sampleMaida\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Plaza\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 27116,\n        \"propertyAddress\": \"50 Island Ct      \",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"A3904628\",\n        \"listDate\": \"2009-03-12T00:00:00\",\n        \"expiredDate\": \"2010-09-02T00:00:00\",\n        \"withdrawnDate\": \"2010-07-06T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Devon Davsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Plaza\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 27880,\n        \"propertyAddress\": \"7102 Orchid Island Pl\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"A3935579\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-01-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2011-01-31T00:00:00\",\n        \"processedDate\": \"2011-02-07T00:00:00\",\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Charles Totsamplesample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Signature - Signature - Lakewood Ranch\",\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 27898,\n        \"propertyAddress\": \"7444 Sea Island Ln\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"A3937482\",\n        \"listDate\": \"2011-01-11T00:00:00\",\n        \"expiredDate\": \"2011-07-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-02-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2011-03-29T00:00:00\",\n        \"processedDate\": \"2011-03-28T00:00:00\",\n        \"closingDate\": null,\n        \"listAgent\": \"Craig Cerreta - samplsampleger\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Plaza\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 28374,\n        \"propertyAddress\": \"238 Island Cir\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"A3940513\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-06-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2011-08-01T00:00:00\",\n        \"processedDate\": \"2011-08-01T00:00:00\",\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Darlene Gambsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Signature - Signature - Plaza\",\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 28413,\n        \"propertyAddress\": \"7424 Sea Island Ln\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"A3945388\",\n        \"listDate\": \"2011-06-27T00:00:00\",\n        \"expiredDate\": \"2011-12-16T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-06-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2011-07-15T00:00:00\",\n        \"processedDate\": \"2011-07-15T00:00:00\",\n        \"closingDate\": null,\n        \"listAgent\": \"Craig Cerreta - samplsampleger\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Plaza\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 28426,\n        \"propertyAddress\": \"105 Island Circle\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"A3940511\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-03-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2011-07-05T00:00:00\",\n        \"processedDate\": \"2011-07-05T00:00:00\",\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Judie Bsamplegsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Signature - Signature - Plaza\",\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 28487,\n        \"propertyAddress\": \"3707 Hawk Island Dr\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"A3924518\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-07-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2011-09-01T00:00:00\",\n        \"processedDate\": \"2011-09-02T00:00:00\",\n        \"closingDate\": \"2011-09-02T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Devon Davsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Signature - Signature - Plaza\",\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 29726,\n        \"propertyAddress\": \"7432 SEA ISLAND LN, UNIVERSITY PARK,  34201\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"A3949823\",\n        \"listDate\": \"2011-10-07T00:00:00\",\n        \"expiredDate\": \"2012-04-03T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2011-12-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-01-20T00:00:00\",\n        \"processedDate\": \"2012-01-31T00:00:00\",\n        \"closingDate\": \"2012-01-20T00:00:00\",\n        \"listAgent\": \"Craig Cerreta - samplsampleger\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Plaza\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 29831,\n        \"propertyAddress\": \"925 Island Grove Dr, DeLand, FL 32724\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2011-11-01T00:00:00\",\n        \"closingDate\": \"2011-11-01T00:00:00\",\n        \"listAgent\": \"Roberta Tengsampledy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Plaza\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 31028,\n        \"propertyAddress\": \"7560 Bay Island Drive, 141, S Pasadena, FL 33707\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-01-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-01-26T00:00:00\",\n        \"processedDate\": \"2012-01-26T00:00:00\",\n        \"closingDate\": \"2012-01-26T00:00:00\",\n        \"listAgent\": \"Ken Ipsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - LBK\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 31134,\n        \"propertyAddress\": \"51 Island Way, 40734, Clearwater, FL 33767\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"U7536283\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-02-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-03-08T00:00:00\",\n        \"processedDate\": \"2012-03-12T00:00:00\",\n        \"closingDate\": \"2012-03-08T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Helena Nsampledstsamplem\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Signature - Signature - Plaza\",\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 31296,\n        \"propertyAddress\": \"7458 Palm Island Drive, Placida, FL 33946\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"N5776003\",\n        \"listDate\": \"2012-03-08T00:00:00\",\n        \"expiredDate\": \"2012-08-27T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michael Debsampleetto\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Venice 0003\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 31307,\n        \"propertyAddress\": \"3711 Hawk Island Drive , Bradenton, FL 34208\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"A3937315\",\n        \"listDate\": \"2011-01-05T00:00:00\",\n        \"expiredDate\": \"2014-01-21T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cindy Migsamplee\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Plaza\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 31902,\n        \"propertyAddress\": \"7436 Sea Island Ln, University Park, FL 34201\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"A3948949\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-07-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-12-25T00:00:00\",\n        \"processedDate\": \"2012-08-30T00:00:00\",\n        \"closingDate\": \"2012-08-27T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Craig Cerreta - samplsampleger\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Signature - Signature - Plaza\",\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 32006,\n        \"propertyAddress\": \"46 (Broadbent) Hawk Island Drive, Bradenton, FL 34208\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"NWC46\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-07-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-10-31T00:00:00\",\n        \"processedDate\": \"2012-11-05T00:00:00\",\n        \"closingDate\": \"2012-11-01T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Devon Davsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Signature - Signature - Plaza\",\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 32070,\n        \"propertyAddress\": \"485 Island Cir , Sarasota, FL 34242\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"A3964552\",\n        \"listDate\": \"2012-08-14T00:00:00\",\n        \"expiredDate\": \"2012-11-14T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-08-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-09-21T00:00:00\",\n        \"processedDate\": \"2012-09-21T00:00:00\",\n        \"closingDate\": \"2012-09-18T00:00:00\",\n        \"listAgent\": \"Andrew Bsamples\",\n        \"sellAgent\": \"Judie Bsamplegsample\",\n        \"listOffice\": \"Signature - Signature - LBK\",\n        \"sellOffice\": \"Signature - Signature - Plaza\",\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 32297,\n        \"propertyAddress\": \"7412 Sea Island Lane, University Park, FL 34201\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"A3967092\",\n        \"listDate\": \"2012-10-10T00:00:00\",\n        \"expiredDate\": \"2013-04-10T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2012-10-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2012-12-28T00:00:00\",\n        \"processedDate\": \"2012-12-28T00:00:00\",\n        \"closingDate\": \"2012-12-28T00:00:00\",\n        \"listAgent\": \"Craig Cerreta - samplsampleger\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Plaza\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 32341,\n        \"propertyAddress\": \"41 Island Ct, Terra Ceia, FL 34250\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"M5832534\",\n        \"listDate\": \"2012-10-17T00:00:00\",\n        \"expiredDate\": \"2013-04-10T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-02-19T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-05-14T00:00:00\",\n        \"processedDate\": \"2013-05-14T00:00:00\",\n        \"closingDate\": \"2013-05-14T00:00:00\",\n        \"listAgent\": \"Devon Davsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Plaza\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 32521,\n        \"propertyAddress\": \"60 Tidy Island Blvd, Bradenton, FL 34210\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"A3969162\",\n        \"listDate\": \"2012-11-21T00:00:00\",\n        \"expiredDate\": \"2013-11-14T00:00:00\",\n        \"withdrawnDate\": \"2013-02-04T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Martha Marsampler\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Plaza\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 32709,\n        \"propertyAddress\": \"4817 Snead Island Road , Palmetto, FL 34221\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"A3971038\",\n        \"listDate\": \"2013-01-04T00:00:00\",\n        \"expiredDate\": \"2013-12-17T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-10-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-12-09T00:00:00\",\n        \"processedDate\": \"2013-12-11T00:00:00\",\n        \"closingDate\": \"2013-12-09T00:00:00\",\n        \"listAgent\": \"Martha Marsampler\",\n        \"sellAgent\": \"Martha Marsampler\",\n        \"listOffice\": \"Signature - Signature - Plaza\",\n        \"sellOffice\": \"Signature - Signature - Plaza\",\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 33279,\n        \"propertyAddress\": \"275 Capri Cir N, 101, Treasure Island, FL 33706\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"U7572477\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-03-29T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2013-06-20T00:00:00\",\n        \"processedDate\": \"2013-06-20T00:00:00\",\n        \"closingDate\": \"2013-06-20T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Helena Nsampledstsamplem\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Signature - Signature - Plaza\",\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 33488,\n        \"propertyAddress\": \"114 Tidy Island Boulevard , Bradenton, FL 34210\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"M5837667\",\n        \"listDate\": \"2013-05-17T00:00:00\",\n        \"expiredDate\": \"2013-11-18T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Victoria Hsamplestsamplen\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - LBK\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 34748,\n        \"propertyAddress\": \"7435 Sea Island Ln , University Park, FL 34201\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"A3991267\",\n        \"listDate\": \"2014-01-21T00:00:00\",\n        \"expiredDate\": \"2014-07-16T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-07T00:00:00\",\n        \"processedDate\": \"2014-04-14T00:00:00\",\n        \"closingDate\": \"2014-04-07T00:00:00\",\n        \"listAgent\": \"Craig Cerreta - samplsampleger\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Plaza\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 34880,\n        \"propertyAddress\": \"458 Island Cir , Sarasota, FL 34242\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"A3992451\",\n        \"listDate\": \"2014-02-07T00:00:00\",\n        \"expiredDate\": \"2015-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Judie Bsamplegsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Plaza\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 34931,\n        \"propertyAddress\": \"1762 Island Way , Osprey, FL 34229\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"N5783643\",\n        \"listDate\": \"2014-02-17T00:00:00\",\n        \"expiredDate\": \"2014-09-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-06-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-09-15T00:00:00\",\n        \"processedDate\": \"2014-09-15T00:00:00\",\n        \"closingDate\": \"2014-09-15T00:00:00\",\n        \"listAgent\": \"Melissa Caldwsamplel\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Venice 0003\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 35088,\n        \"propertyAddress\": \"114 Tidy Island Blvd , 114, Bradenton, FL 34210\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"M5844688\",\n        \"listDate\": \"2014-03-12T00:00:00\",\n        \"expiredDate\": \"2014-06-05T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-06-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-08-08T00:00:00\",\n        \"processedDate\": \"2014-08-08T00:00:00\",\n        \"closingDate\": \"2014-08-08T00:00:00\",\n        \"listAgent\": \"Victoria Hsamplestsamplen\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - LBK\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 35120,\n        \"propertyAddress\": \"7427 Sea Island Lane , University Park, FL 34201\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"A3994883\",\n        \"listDate\": \"2014-03-19T00:00:00\",\n        \"expiredDate\": \"2014-09-09T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-31T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-05-23T00:00:00\",\n        \"processedDate\": \"2014-05-23T00:00:00\",\n        \"closingDate\": \"2014-05-23T00:00:00\",\n        \"listAgent\": \"Craig Cerreta - samplsampleger\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Plaza\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 35169,\n        \"propertyAddress\": \"3919 Hawk Island Dr., Bradenton, FL 34208\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"M5843362\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-04T00:00:00\",\n        \"processedDate\": \"2014-04-08T00:00:00\",\n        \"closingDate\": \"2014-04-04T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Joe Vusampleo\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Signature - Signature - Venice 0003\",\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 35516,\n        \"propertyAddress\": \"7206 Treasure Island Rd , Leesburg, FL 34788\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"A3998646W\",\n        \"listDate\": \"2014-05-23T00:00:00\",\n        \"expiredDate\": \"2015-01-22T00:00:00\",\n        \"withdrawnDate\": \"2014-07-23T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Janice Csamplery\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Lakewood Ranch\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 35569,\n        \"propertyAddress\": \"7404 Sea Island Ln, Braden River, FL 34201\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"DD\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-06-10T00:00:00\",\n        \"cancelDate\": \"2014-06-20T00:00:00\",\n        \"estimatedClosingDate\": \"2014-07-10T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Carol Budnsamplek\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Signature - Signature - Lakewood Ranch\",\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 35652,\n        \"propertyAddress\": \"3711 Hawk Island Dr , Bradenton, FL 34208\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"A4100436\",\n        \"listDate\": \"2014-06-17T00:00:00\",\n        \"expiredDate\": \"2015-05-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cindy Migsamplee\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Plaza\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 35692,\n        \"propertyAddress\": \"7404 Sea Island Ln, University Park, FL 34201\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-08-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-08-14T00:00:00\",\n        \"processedDate\": \"2014-08-14T00:00:00\",\n        \"closingDate\": \"2014-08-14T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Craig Cerreta - samplsampleger\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Signature - Signature - Plaza\",\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 35725,\n        \"propertyAddress\": \"661 Dream Island Rd , Longboat Key, FL 34228\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"A4101224\",\n        \"listDate\": \"2014-07-08T00:00:00\",\n        \"expiredDate\": \"2015-06-28T00:00:00\",\n        \"withdrawnDate\": \"2015-04-16T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cheryl Loeffsampler\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Plaza\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 35900,\n        \"propertyAddress\": \"84 Tidy Island Blvd , Bradenton, FL 34210\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"A4102965\",\n        \"listDate\": \"2014-08-11T00:00:00\",\n        \"expiredDate\": \"2016-05-01T00:00:00\",\n        \"withdrawnDate\": \"2016-04-13T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vittoria Rsampleigliano\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - LBK\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 36336,\n        \"propertyAddress\": \"7432 Sea Island Ln , University Park, FL 34201\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"A4107340\",\n        \"listDate\": \"2014-10-31T00:00:00\",\n        \"expiredDate\": \"2015-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-11-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-12-15T00:00:00\",\n        \"processedDate\": \"2014-12-16T00:00:00\",\n        \"closingDate\": \"2014-12-15T00:00:00\",\n        \"listAgent\": \"Craig Cerreta - samplsampleger\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Plaza\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 36880,\n        \"propertyAddress\": \"724 Dream Island Rd, Longboat Key, FL 34228\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"a3960762\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-01-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-02-16T00:00:00\",\n        \"processedDate\": \"2015-02-16T00:00:00\",\n        \"closingDate\": \"2015-02-13T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Dennis Gsampleamplerd\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Signature - Signature - LBK\",\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 37162,\n        \"propertyAddress\": \"108 Tina Island Dr , Osprey, FL 34229\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"N5903183\",\n        \"listDate\": \"2015-03-11T00:00:00\",\n        \"expiredDate\": \"2015-10-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-07-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-12-17T00:00:00\",\n        \"processedDate\": \"2015-12-18T00:00:00\",\n        \"closingDate\": \"2015-12-17T00:00:00\",\n        \"listAgent\": \"Terry Hsampleschbsamplegsample\",\n        \"sellAgent\": \"Stephen Lsampleley\",\n        \"listOffice\": \"Signature - Signature - Venice 0003\",\n        \"sellOffice\": \"Signature - Signature - Venice 0003\",\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 37683,\n        \"propertyAddress\": \"7228 Orchid Island Pl , Bradenton, FL 34202\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"A4124105\",\n        \"listDate\": \"2015-06-05T00:00:00\",\n        \"expiredDate\": \"2015-12-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-06-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-07-16T00:00:00\",\n        \"processedDate\": \"2015-07-20T00:00:00\",\n        \"closingDate\": \"2015-07-17T00:00:00\",\n        \"listAgent\": \"Jim Ssamplea\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Lakewood Ranch\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 38513,\n        \"propertyAddress\": \"350 Grow Ave, Bainbridge Island, WA 98110\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-10-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-11-03T00:00:00\",\n        \"processedDate\": \"2015-11-05T00:00:00\",\n        \"closingDate\": \"2015-11-03T00:00:00\",\n        \"listAgent\": \"Roberta Tengsampledy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Plaza\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 38578,\n        \"propertyAddress\": \"1762 Island Way, Osprey, FL 34229\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"A4133938\",\n        \"listDate\": \"2015-10-15T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-10-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-02-12T00:00:00\",\n        \"processedDate\": \"2016-02-17T00:00:00\",\n        \"closingDate\": \"2016-02-12T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Carolyn Csamplelins\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Signature - Signature - Plaza\",\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 39070,\n        \"propertyAddress\": \"1744 Island Way, Osprey, FL 34229\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"N5907164\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-02-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-03-11T00:00:00\",\n        \"processedDate\": \"2016-03-14T00:00:00\",\n        \"closingDate\": \"2016-03-11T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Louise samplemel\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Signature - Signature - Venice 0003\",\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 39327,\n        \"propertyAddress\": \"Point White Dr NE, Lot A Lot B, Bainbridge Island, WA 98110\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-01-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2016-01-25T00:00:00\",\n        \"closingDate\": \"2016-01-22T00:00:00\",\n        \"listAgent\": \"Roberta Tengsampledy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Plaza\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 39368,\n        \"propertyAddress\": \"7130 Orchid Island Pl , Bradenton, FL 34202\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"A4141587\",\n        \"listDate\": \"2016-01-11T00:00:00\",\n        \"expiredDate\": \"2016-07-02T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-03-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-04-29T00:00:00\",\n        \"processedDate\": \"2016-05-03T00:00:00\",\n        \"closingDate\": \"2016-04-29T00:00:00\",\n        \"listAgent\": \"Sandi Anssampleio\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Lakewood Ranch\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 39445,\n        \"propertyAddress\": \"39 Tidy Island Blvd , Bradenton, FL 34210\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"A4148981\",\n        \"listDate\": \"2016-03-15T00:00:00\",\n        \"expiredDate\": \"2017-02-15T00:00:00\",\n        \"withdrawnDate\": \"2016-04-13T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vittoria Rsampleigliano\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - LBK\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 39719,\n        \"propertyAddress\": \"151 Bonita Ct, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-04-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-04-20T00:00:00\",\n        \"processedDate\": \"2016-04-20T00:00:00\",\n        \"closingDate\": \"2016-04-20T00:00:00\",\n        \"listAgent\": \"Frieda Fulsampler\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Venice 0003\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 39976,\n        \"propertyAddress\": \"21 Tidy Island, Bradenton, FL 34210\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"A4119050\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-05-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-07-29T00:00:00\",\n        \"processedDate\": \"2016-08-01T11:30:47\",\n        \"closingDate\": \"2016-07-29T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Martha Marsampler\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Signature - Signature - Plaza\",\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 40068,\n        \"propertyAddress\": \"1136 Edington Pl, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-06-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-06-06T00:00:00\",\n        \"processedDate\": \"2016-06-06T15:52:27\",\n        \"closingDate\": \"2016-06-06T00:00:00\",\n        \"listAgent\": \"Charlotte Hsamplege\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Plaza\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 40606,\n        \"propertyAddress\": \"7425 Sea Island Ln, Bradenton, FL 34201\",\n        \"status\": \"Current\",\n        \"mlsNumber1\": \"A386193\",\n        \"listDate\": \"2016-06-10T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Loretta Bausample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Rentals\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 40897,\n        \"propertyAddress\": \"31 Island Ct , Terra Ceia, FL 34250\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"A4166587\",\n        \"listDate\": \"2016-10-17T00:00:00\",\n        \"expiredDate\": \"2017-04-03T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-02-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-03-21T00:00:00\",\n        \"processedDate\": \"2017-03-24T15:10:57\",\n        \"closingDate\": \"2017-03-21T00:00:00\",\n        \"listAgent\": \"Cindy Piersample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Lakewood Ranch\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 41678,\n        \"propertyAddress\": \"1143 Blue Hill Creek Dr , Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"A4176992WD\",\n        \"listDate\": \"2017-02-07T00:00:00\",\n        \"expiredDate\": \"2018-01-15T00:00:00\",\n        \"withdrawnDate\": \"2017-07-05T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Martie Liebersample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Plaza\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 41900,\n        \"propertyAddress\": \"11655 3rd Street E, 8, Treasure Island, FL 33706\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": \"2017-02-22T00:00:00\",\n        \"expiredDate\": \"2017-03-17T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-02-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-03-10T00:00:00\",\n        \"processedDate\": \"2017-03-13T12:18:29\",\n        \"closingDate\": \"2017-03-10T00:00:00\",\n        \"listAgent\": \"Jason Skowrsampleski\",\n        \"sellAgent\": \"Jason Skowrsampleski\",\n        \"listOffice\": \"Signature - Signature - Plaza\",\n        \"sellOffice\": \"Signature - Signature - Plaza\",\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 42160,\n        \"propertyAddress\": \"11655 3rd St E, Treasure Island, FL 33706\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"A4183638\",\n        \"listDate\": \"2017-04-13T00:00:00\",\n        \"expiredDate\": \"2017-10-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-09-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-09-20T00:00:00\",\n        \"processedDate\": \"2017-09-22T12:03:36\",\n        \"closingDate\": \"2017-09-20T00:00:00\",\n        \"listAgent\": \"Jason Skowrsampleski\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Plaza\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 42593,\n        \"propertyAddress\": \"7152 Orchid Island Pl, Lakewood Ranch, FL 34202\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"A4175598\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-06-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-06-30T00:00:00\",\n        \"processedDate\": \"2017-06-30T14:20:17\",\n        \"closingDate\": \"2017-06-30T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jason Skowrsampleski\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Signature - Signature - Plaza\",\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 42612,\n        \"propertyAddress\": \"7224 Orchid Island Pl, Lakewood Ranch, FL 34202\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"A4181862CA\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-06-13T00:00:00\",\n        \"cancelDate\": \"2017-06-28T00:00:00\",\n        \"estimatedClosingDate\": \"2017-07-17T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Greg Van Nsampleter\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Signature - Signature - Plaza\",\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 42845,\n        \"propertyAddress\": \"7576 NE Golden Ln, Bainbridge Island, WA 98110\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-07-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-07-31T00:00:00\",\n        \"processedDate\": \"2017-07-31T13:34:41\",\n        \"closingDate\": \"2017-07-31T00:00:00\",\n        \"listAgent\": \"Barbara Msample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Plaza\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 43405,\n        \"propertyAddress\": \"67 Tidy Island Blvd, 67, Bradenton, FL 34210\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"A4197117\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-11-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-12-01T00:00:00\",\n        \"processedDate\": \"2017-12-01T15:46:37\",\n        \"closingDate\": \"2017-12-01T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Devon Davsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Signature - Signature - Plaza\",\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 44632,\n        \"propertyAddress\": \"595  Dream Island Rd, 36B,Longboat Key, Florida, 34228\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"A4400262\",\n        \"listDate\": \"2018-04-16T00:00:00\",\n        \"expiredDate\": \"2019-04-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jo Rsamplestein\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Plaza\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 44876,\n        \"propertyAddress\": \"1143 Blue Hill Crk, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-06-04T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-06-07T00:00:00\",\n        \"processedDate\": \"2018-06-07T10:47:30\",\n        \"closingDate\": \"2018-06-07T00:00:00\",\n        \"listAgent\": \"Judie Bsamplegsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Plaza\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 45444,\n        \"propertyAddress\": \"5107 Island Date St , Sarasota, FL 34232\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"A4410901\",\n        \"listDate\": \"2018-08-14T00:00:00\",\n        \"expiredDate\": \"2019-02-06T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-08-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-09-28T00:00:00\",\n        \"processedDate\": \"2018-10-01T14:35:49\",\n        \"closingDate\": \"2018-09-28T00:00:00\",\n        \"listAgent\": \"Charlotte Hsamplege\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Plaza\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 45553,\n        \"propertyAddress\": \"285 107th Ave, Unit 505, Treasure Island, FL 33706\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-08-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-08-31T00:00:00\",\n        \"processedDate\": \"2018-08-31T10:09:45\",\n        \"closingDate\": \"2018-08-31T00:00:00\",\n        \"listAgent\": \"Lou Ssampleuppe\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Venice 0003\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 45970,\n        \"propertyAddress\": \"50 Island Ct , Terra Ceia, FL 34250\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"A4418001\",\n        \"listDate\": \"2018-11-05T00:00:00\",\n        \"expiredDate\": \"2019-05-05T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cindy Piersample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Lakewood Ranch\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 46306,\n        \"propertyAddress\": \"1149 Blue Hill Creek Dr, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-12-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-12-27T00:00:00\",\n        \"processedDate\": \"2018-12-27T14:15:23\",\n        \"closingDate\": \"2018-12-27T00:00:00\",\n        \"listAgent\": \"Martie Liebersample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Plaza\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 46500,\n        \"propertyAddress\": \"1744 Island Way, Osprey, FL 34229\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"N6103740\",\n        \"listDate\": \"2019-01-21T00:00:00\",\n        \"expiredDate\": \"2019-07-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Louise samplemel\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Venice 0003\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 46550,\n        \"propertyAddress\": \"5110 Island Date St , Sarasota, FL 34232\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"A4425960\",\n        \"listDate\": \"2019-01-31T00:00:00\",\n        \"expiredDate\": \"2019-07-20T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-02-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-03-29T00:00:00\",\n        \"processedDate\": \"2019-03-28T14:04:29\",\n        \"closingDate\": \"2019-03-28T00:00:00\",\n        \"listAgent\": \"Marty Warsamplen\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - Plaza\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 47667,\n        \"propertyAddress\": \"39 Tidy Island Blvd , Bradenton, FL 34210\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"A4169614\",\n        \"listDate\": \"2016-11-23T00:00:00\",\n        \"expiredDate\": \"2017-11-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vittoria Rsampleigliano\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - LBK\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 47840,\n        \"propertyAddress\": \"39 Tidy Island Blvd , Bradenton, FL 34210\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"A4202735\",\n        \"listDate\": \"2017-11-27T00:00:00\",\n        \"expiredDate\": \"2019-11-11T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vittoria Rsampleigliano\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Signature - Signature - LBK\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 9\"\n    },\n    {\n        \"propertyId\": 49231,\n        \"propertyAddress\": \"Lot 119 Island Point Rd , Charlotte, NC 28278\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"3432368\",\n        \"listDate\": \"2018-09-10T00:00:00\",\n        \"expiredDate\": \"2018-10-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Giles Bsampleker\",\n        \"sellAgent\": null,\n        \"listOffice\": \"PremierNC - Charlotte\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 6\"\n    },\n    {\n        \"propertyId\": 49479,\n        \"propertyAddress\": \"9026 Island Point Rd , Charlotte, NC 28278\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"3467627\",\n        \"listDate\": \"2019-01-22T00:00:00\",\n        \"expiredDate\": \"2019-10-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Giles Bsampleker\",\n        \"sellAgent\": null,\n        \"listOffice\": \"PremierNC - Charlotte\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 6\"\n    },\n    {\n        \"propertyId\": 49833,\n        \"propertyAddress\": \"1021 Big Island Rd, Rutherfordton, NC 28139\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"3197147\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-08-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-11-01T00:00:00\",\n        \"processedDate\": \"2017-11-03T12:39:21\",\n        \"closingDate\": \"2017-11-01T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Carol Psampleker\",\n        \"listOffice\": null,\n        \"sellOffice\": \"PremierNC - Asheville\",\n        \"companyName\": \"Company 6\"\n    },\n    {\n        \"propertyId\": 49953,\n        \"propertyAddress\": \"127 Swift Island Pl , New London, NC 28127\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"3198282\",\n        \"listDate\": \"2016-07-18T00:00:00\",\n        \"expiredDate\": \"2017-01-27T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"David Wsampletsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"PremierNC - Lake Norman\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 6\"\n    },\n    {\n        \"propertyId\": 50670,\n        \"propertyAddress\": \"9026 Island Point Rd , Charlotte, NC 28278\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"3333607W\",\n        \"listDate\": \"2017-10-28T00:00:00\",\n        \"expiredDate\": \"2018-10-31T00:00:00\",\n        \"withdrawnDate\": \"2018-10-31T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Giles Bsampleker\",\n        \"sellAgent\": null,\n        \"listOffice\": \"PremierNC - Charlotte\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 6\"\n    },\n    {\n        \"propertyId\": 50745,\n        \"propertyAddress\": \"112 Island View Dr, New London, NC 28127\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"3112158\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-05-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-06-17T00:00:00\",\n        \"processedDate\": \"2016-06-20T15:11:21\",\n        \"closingDate\": \"2016-06-17T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Brandi Hsampleeycutt\",\n        \"listOffice\": null,\n        \"sellOffice\": \"PremierNC - Charlotte\",\n        \"companyName\": \"Company 6\"\n    },\n    {\n        \"propertyId\": 51239,\n        \"propertyAddress\": \"6839 Rock Island Rd , Charlotte, NC 28278\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"3152321CA\",\n        \"listDate\": \"2016-03-02T00:00:00\",\n        \"expiredDate\": \"2016-10-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-05-02T00:00:00\",\n        \"cancelDate\": \"2016-06-09T00:00:00\",\n        \"estimatedClosingDate\": \"2016-07-07T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Gail McDsampleell\",\n        \"sellAgent\": null,\n        \"listOffice\": \"PremierNC - Charlotte\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 6\"\n    },\n    {\n        \"propertyId\": 52007,\n        \"propertyAddress\": \"210 Island Drive, Unit A, Linville, NC 28646\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"204016\",\n        \"listDate\": \"2017-10-11T00:00:00\",\n        \"expiredDate\": \"2018-11-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-07-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-08-10T00:00:00\",\n        \"processedDate\": \"2018-08-13T10:19:35\",\n        \"closingDate\": \"2018-08-10T00:00:00\",\n        \"listAgent\": \"Lawson Fisampleds\",\n        \"sellAgent\": null,\n        \"listOffice\": \"PremierNC - Banner Elk\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 6\"\n    },\n    {\n        \"propertyId\": 52319,\n        \"propertyAddress\": \"2870 Island Point Dr NW, Concord, NC 28027\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"3198230\",\n        \"listDate\": \"2016-08-03T00:00:00\",\n        \"expiredDate\": \"2016-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-08-05T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-08-25T00:00:00\",\n        \"processedDate\": \"2016-08-29T15:08:33\",\n        \"closingDate\": \"2016-08-26T00:00:00\",\n        \"listAgent\": \"Al DiRsampleso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"PremierNC - Lake Norman\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 6\"\n    },\n    {\n        \"propertyId\": 52345,\n        \"propertyAddress\": \"2926 Island Point Dr NW, Concord, NC 28027\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"3195889\",\n        \"listDate\": \"2016-07-22T00:00:00\",\n        \"expiredDate\": \"2016-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-08-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-09-06T00:00:00\",\n        \"processedDate\": \"2016-09-07T15:33:52\",\n        \"closingDate\": \"2016-09-06T00:00:00\",\n        \"listAgent\": \"Al DiRsampleso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"PremierNC - Lake Norman\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 6\"\n    },\n    {\n        \"propertyId\": 52367,\n        \"propertyAddress\": \"299 old Island Trl, Kingsport, TN 37664\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"402242\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-03-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-06-15T00:00:00\",\n        \"processedDate\": \"2018-06-19T15:05:27\",\n        \"closingDate\": \"2018-06-15T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Loretta Tsampleyer\",\n        \"listOffice\": null,\n        \"sellOffice\": \"PremierNC - Banner Elk\",\n        \"companyName\": \"Company 6\"\n    },\n    {\n        \"propertyId\": 52589,\n        \"propertyAddress\": \"3423 Governors Island Dr , Denver, NC 28037\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"3024571\",\n        \"listDate\": \"2014-08-30T00:00:00\",\n        \"expiredDate\": \"2014-10-06T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-08-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-12-11T00:00:00\",\n        \"processedDate\": \"2014-12-20T00:00:00\",\n        \"closingDate\": \"2014-12-20T00:00:00\",\n        \"listAgent\": \"Nadine Dsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"PremierNC - Lake Norman\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 6\"\n    },\n    {\n        \"propertyId\": 52704,\n        \"propertyAddress\": \"3903 Island Ford Rd, Brevard, NC 28712\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-05-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-06-22T00:00:00\",\n        \"processedDate\": \"2016-06-24T16:15:12\",\n        \"closingDate\": \"2016-06-22T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Marilyn Wsampleght\",\n        \"listOffice\": null,\n        \"sellOffice\": \"PremierNC - Asheville\",\n        \"companyName\": \"Company 6\"\n    },\n    {\n        \"propertyId\": 52753,\n        \"propertyAddress\": \"4029 Channel Islands Way, Lancaster, SC 29720\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-03-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-05-08T00:00:00\",\n        \"processedDate\": \"2018-05-08T13:04:04\",\n        \"closingDate\": \"2018-05-08T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Linda Rsamples\",\n        \"listOffice\": null,\n        \"sellOffice\": \"PremierNC - Charlotte\",\n        \"companyName\": \"Company 6\"\n    },\n    {\n        \"propertyId\": 52818,\n        \"propertyAddress\": \"416 Snowy Egret Ln, Johns Island, SC 29455\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-03-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-03-25T00:00:00\",\n        \"processedDate\": \"2016-03-30T00:00:00\",\n        \"closingDate\": \"2016-03-25T00:00:00\",\n        \"listAgent\": \"Jason Gentry - samplsampleger\",\n        \"sellAgent\": null,\n        \"listOffice\": \"PremierNC - Lake Norman\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 6\"\n    },\n    {\n        \"propertyId\": 52870,\n        \"propertyAddress\": \"4341 Sea Forest Dr, Kiawah Island, SC 29455\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2014-12-30T00:00:00\",\n        \"closingDate\": \"2014-12-15T00:00:00\",\n        \"listAgent\": \"Jason Gentry - samplsampleger\",\n        \"sellAgent\": null,\n        \"listOffice\": \"PremierNC - Lake Norman\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 6\"\n    },\n    {\n        \"propertyId\": 52871,\n        \"propertyAddress\": \"4354 Island Dr, Sneads Ferry, NC 28460\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-11-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-11-15T00:00:00\",\n        \"processedDate\": \"2017-11-15T15:11:40\",\n        \"closingDate\": \"2017-11-15T00:00:00\",\n        \"listAgent\": \"Melinda Eggsamples\",\n        \"sellAgent\": null,\n        \"listOffice\": \"PremierNC - Banner Elk\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 6\"\n    },\n    {\n        \"propertyId\": 53629,\n        \"propertyAddress\": \"8921 Island Point Rd , 125, Charlotte, NC 28278\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"3188877\",\n        \"listDate\": \"2016-06-13T00:00:00\",\n        \"expiredDate\": \"2017-06-13T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-02-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-04-05T00:00:00\",\n        \"processedDate\": \"2017-03-29T14:20:17\",\n        \"closingDate\": \"2017-03-21T00:00:00\",\n        \"listAgent\": \"Tanya Bsamplewn\",\n        \"sellAgent\": null,\n        \"listOffice\": \"PremierNC - Charlotte\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 6\"\n    },\n    {\n        \"propertyId\": 53633,\n        \"propertyAddress\": \"8930 Island Point Rd , 117, Charlotte, NC 28278\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"3187989 ca\",\n        \"listDate\": \"2016-06-13T00:00:00\",\n        \"expiredDate\": \"2017-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-06-12T00:00:00\",\n        \"cancelDate\": \"2017-07-13T00:00:00\",\n        \"estimatedClosingDate\": \"2017-07-31T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Tanya Bsamplewn\",\n        \"sellAgent\": null,\n        \"listOffice\": \"PremierNC - Charlotte\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 6\"\n    },\n    {\n        \"propertyId\": 53634,\n        \"propertyAddress\": \"8930 Island Point Rd , 117, Charlotte, NC 28278\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"3187989\",\n        \"listDate\": \"2016-06-13T00:00:00\",\n        \"expiredDate\": \"2018-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-05-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-07-06T00:00:00\",\n        \"processedDate\": \"2018-06-29T15:12:54\",\n        \"closingDate\": \"2018-06-28T00:00:00\",\n        \"listAgent\": \"Tanya Bsamplewn\",\n        \"sellAgent\": null,\n        \"listOffice\": \"PremierNC - Charlotte\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 6\"\n    },\n    {\n        \"propertyId\": 53662,\n        \"propertyAddress\": \"9044 Island Point Rd , Charlotte, NC 28278\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"3289497\",\n        \"listDate\": \"2017-06-09T00:00:00\",\n        \"expiredDate\": \"2018-03-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-10-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-11-14T00:00:00\",\n        \"processedDate\": \"2017-11-16T14:54:52\",\n        \"closingDate\": \"2017-11-14T00:00:00\",\n        \"listAgent\": \"Giles Bsampleker\",\n        \"sellAgent\": null,\n        \"listOffice\": \"PremierNC - Charlotte\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 6\"\n    },\n    {\n        \"propertyId\": 53685,\n        \"propertyAddress\": \"9128 Island Point Rd , Charlotte, NC 28278\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"3239019\",\n        \"listDate\": \"2017-01-01T00:00:00\",\n        \"expiredDate\": \"2017-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-03-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-04-10T00:00:00\",\n        \"processedDate\": \"2017-04-11T11:03:10\",\n        \"closingDate\": \"2017-04-10T00:00:00\",\n        \"listAgent\": \"Giles Bsampleker\",\n        \"sellAgent\": null,\n        \"listOffice\": \"PremierNC - Charlotte\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 6\"\n    },\n    {\n        \"propertyId\": 53796,\n        \"propertyAddress\": \"2-16 Bonne Esperance, St Thomas Virgin Islands\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-07-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-08-02T00:00:00\",\n        \"processedDate\": \"2017-08-02T15:03:35\",\n        \"closingDate\": \"2017-08-02T00:00:00\",\n        \"listAgent\": \"Sasha Csamplepepper\",\n        \"sellAgent\": null,\n        \"listOffice\": \"PremierNC - Charlotte\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 6\"\n    },\n    {\n        \"propertyId\": 53992,\n        \"propertyAddress\": \"6839 Rock Island Rd , Charlotte, NC 28278\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"3152321\",\n        \"listDate\": \"2016-03-02T00:00:00\",\n        \"expiredDate\": \"2016-06-26T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-06-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-07-25T00:00:00\",\n        \"processedDate\": \"2016-07-28T12:41:14\",\n        \"closingDate\": \"2016-07-27T00:00:00\",\n        \"listAgent\": \"Gail McDsampleell\",\n        \"sellAgent\": null,\n        \"listOffice\": \"PremierNC - Charlotte\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 6\"\n    },\n    {\n        \"propertyId\": 54123,\n        \"propertyAddress\": \"Serenity Villa, Turks and Caicos Island TKCA 122\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-08-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-08-15T00:00:00\",\n        \"processedDate\": \"2017-08-15T16:39:01\",\n        \"closingDate\": \"2017-08-15T00:00:00\",\n        \"listAgent\": \"Giles Bsampleker\",\n        \"sellAgent\": null,\n        \"listOffice\": \"PremierNC - Charlotte\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 6\"\n    },\n    {\n        \"propertyId\": 54317,\n        \"propertyAddress\": \"12852 Roberts Island Rd , Orlando, FL 32832\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"O5558965\",\n        \"listDate\": \"2018-02-02T00:00:00\",\n        \"expiredDate\": \"2018-08-22T00:00:00\",\n        \"withdrawnDate\": \"2018-06-14T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Teresa Gsampleino\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Osterville\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 5\"\n    },\n    {\n        \"propertyId\": 54385,\n        \"propertyAddress\": \"2697 Newfound Harbor Dr , Merritt Island, FL 32952\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"O5725176\",\n        \"listDate\": \"2018-08-10T00:00:00\",\n        \"expiredDate\": \"2019-07-12T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Wendy Stephenssample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Osterville\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 5\"\n    },\n    {\n        \"propertyId\": 55132,\n        \"propertyAddress\": \"14422 Island Cove Dr , Orlando, FL 32824\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"O5435619\",\n        \"listDate\": \"2016-04-22T00:00:00\",\n        \"expiredDate\": \"2017-04-16T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-04-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-06-09T00:00:00\",\n        \"processedDate\": \"2016-06-13T08:58:58\",\n        \"closingDate\": \"2016-06-09T00:00:00\",\n        \"listAgent\": \"Elsa Bensampleez\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Orange county\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 5\"\n    },\n    {\n        \"propertyId\": 55154,\n        \"propertyAddress\": \"1462 Bent Palm Dr , Merritt Island, FL 32952\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"O5534516\",\n        \"listDate\": \"2017-09-05T00:00:00\",\n        \"expiredDate\": \"2018-03-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-10-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-12-19T00:00:00\",\n        \"processedDate\": \"2017-12-20T10:54:58\",\n        \"closingDate\": \"2017-12-19T00:00:00\",\n        \"listAgent\": \"Peter Lsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Osterville\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 5\"\n    },\n    {\n        \"propertyId\": 55663,\n        \"propertyAddress\": \"2398 Newfound Harbor Dr , Merritt Island, FL 32952\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"O5511815\",\n        \"listDate\": \"2017-05-18T00:00:00\",\n        \"expiredDate\": \"2018-05-12T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-04-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-05-22T00:00:00\",\n        \"processedDate\": \"2018-06-10T00:51:56\",\n        \"closingDate\": \"2018-05-22T00:00:00\",\n        \"listAgent\": \"Wendy Stephenssample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Osterville\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 5\"\n    },\n    {\n        \"propertyId\": 55708,\n        \"propertyAddress\": \"350 Peninsula Island Point\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"O5370912\",\n        \"listDate\": \"2015-06-03T00:00:00\",\n        \"expiredDate\": \"2017-10-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Patricia Kant - samplsampleger\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Lake Maryville\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 5\"\n    },\n    {\n        \"propertyId\": 55738,\n        \"propertyAddress\": \"120 Honeymoon Hill Ln , Merritt Island, FL 32952\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"O5425472\",\n        \"listDate\": \"2016-03-08T00:00:00\",\n        \"expiredDate\": \"2016-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Maria Henderssample-Scholl\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Osterville\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 5\"\n    },\n    {\n        \"propertyId\": 55744,\n        \"propertyAddress\": \"2195 S Courtenay Pkwy , Merritt Island, FL 32952\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"O5432102\",\n        \"listDate\": \"2016-04-07T00:00:00\",\n        \"expiredDate\": \"2016-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Maria Henderssample-Scholl\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Osterville\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 5\"\n    },\n    {\n        \"propertyId\": 55841,\n        \"propertyAddress\": \"346 Peninsula Island Pt , Longwood, FL 32750\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"O5497564\",\n        \"listDate\": \"2017-03-14T00:00:00\",\n        \"expiredDate\": \"2018-02-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Patricia Kant - samplsampleger\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Lake Maryville\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 5\"\n    },\n    {\n        \"propertyId\": 55930,\n        \"propertyAddress\": \"103 Enclave Ln, Saint Simons Island, GA 31522\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-01-31T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-02-01T00:00:00\",\n        \"processedDate\": \"2018-02-01T12:04:20\",\n        \"closingDate\": \"2018-02-01T00:00:00\",\n        \"listAgent\": \"Deborah Bulsamplen\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Osterville\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 5\"\n    },\n    {\n        \"propertyId\": 56283,\n        \"propertyAddress\": \"2591 Sykes Creek Dr, Merritt Island, FL 32953\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"813091\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-06-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-07-18T00:00:00\",\n        \"processedDate\": \"2018-07-18T14:01:47\",\n        \"closingDate\": \"2018-07-18T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Michelle Hochfeldsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Waterpark\",\n        \"companyName\": \"Company 5\"\n    },\n    {\n        \"propertyId\": 56286,\n        \"propertyAddress\": \"260 Surf Spray Dr, Merritt Island, FL 32953\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"811238DD\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-06-09T00:00:00\",\n        \"cancelDate\": \"2018-06-15T00:00:00\",\n        \"estimatedClosingDate\": \"2018-07-18T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Michelle Hochfeldsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Waterpark\",\n        \"companyName\": \"Company 5\"\n    },\n    {\n        \"propertyId\": 56290,\n        \"propertyAddress\": \"2573 Sykes Creek Dr, Merritt Island, FL 32953\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"798544\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-06-19T00:00:00\",\n        \"cancelDate\": \"2018-06-25T00:00:00\",\n        \"estimatedClosingDate\": \"2018-07-16T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Michelle Hochfeldsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"Waterpark\",\n        \"companyName\": \"Company 5\"\n    },\n    {\n        \"propertyId\": 56388,\n        \"propertyAddress\": \"290 Drayton Island Rd , Georgetown, FL 32139\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"O5480288\",\n        \"listDate\": \"2016-12-08T00:00:00\",\n        \"expiredDate\": \"2017-12-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-02-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-03-31T00:00:00\",\n        \"processedDate\": \"2017-04-03T09:36:31\",\n        \"closingDate\": \"2017-03-31T00:00:00\",\n        \"listAgent\": \"Chris Flsamplenn\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Orange county\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 5\"\n    },\n    {\n        \"propertyId\": 56615,\n        \"propertyAddress\": \"460 Pyber Lane, Merritt Island, FL 32953\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"714836\",\n        \"listDate\": \"2015-01-11T00:00:00\",\n        \"expiredDate\": \"2016-03-09T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-09-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-11-05T00:00:00\",\n        \"processedDate\": \"2015-11-05T00:00:00\",\n        \"closingDate\": \"2015-11-05T00:00:00\",\n        \"listAgent\": \"David Warsamplen\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Lake Maryville\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 5\"\n    },\n    {\n        \"propertyId\": 57205,\n        \"propertyAddress\": \"30216  Island Club Dr   , Tavares, FL 32778\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"O5401939\",\n        \"listDate\": \"2015-11-02T00:00:00\",\n        \"expiredDate\": \"2016-08-02T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-05-17T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-07-18T00:00:00\",\n        \"processedDate\": \"2016-07-18T10:02:07\",\n        \"closingDate\": \"2016-07-12T00:00:00\",\n        \"listAgent\": \"Janice Csamplery\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Lake Maryville\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 5\"\n    },\n    {\n        \"propertyId\": 57292,\n        \"propertyAddress\": \"326 Peninsula Island Pt, Longwood, FL 32750\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"OAKW0824215IHE\",\n        \"listDate\": \"2015-07-31T00:00:00\",\n        \"expiredDate\": \"2017-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-08-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-11-15T00:00:00\",\n        \"processedDate\": \"2017-10-26T10:51:23\",\n        \"closingDate\": \"2017-10-25T00:00:00\",\n        \"listAgent\": \"Marisol Santiago Soderstsamplem\",\n        \"sellAgent\": \"Marisol Santiago Soderstsamplem\",\n        \"listOffice\": \"Lake Maryville\",\n        \"sellOffice\": \"Lake Maryville\",\n        \"companyName\": \"Company 5\"\n    },\n    {\n        \"propertyId\": 57319,\n        \"propertyAddress\": \"334 Peninsula Island Point\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"O5371023\",\n        \"listDate\": \"2015-06-03T00:00:00\",\n        \"expiredDate\": \"2016-05-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-12-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-12-31T00:00:00\",\n        \"processedDate\": \"2016-01-05T00:00:00\",\n        \"closingDate\": \"2015-12-31T00:00:00\",\n        \"listAgent\": \"Marisol Santiago Soderstsamplem\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Lake Maryville\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 5\"\n    },\n    {\n        \"propertyId\": 57320,\n        \"propertyAddress\": \"334 Peninsula Island Pt, PYMT 1, Longwood, FL 32750\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-04-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-07-14T00:00:00\",\n        \"processedDate\": \"2017-07-14T14:50:08\",\n        \"closingDate\": \"2017-07-14T00:00:00\",\n        \"listAgent\": \"Marisol Santiago Soderstsamplem\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Lake Maryville\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 5\"\n    },\n    {\n        \"propertyId\": 57321,\n        \"propertyAddress\": \"334 Peninsula Island Pt, PYMT 2, Longwood, FL 32750\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-06-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-07-14T00:00:00\",\n        \"processedDate\": \"2017-07-14T14:53:13\",\n        \"closingDate\": \"2017-07-14T00:00:00\",\n        \"listAgent\": \"Marisol Santiago Soderstsamplem\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Lake Maryville\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 5\"\n    },\n    {\n        \"propertyId\": 57322,\n        \"propertyAddress\": \"334 Peninsula Island Pt, PYMT 5, Longwood, FL 32750\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-11-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-11-17T00:00:00\",\n        \"processedDate\": \"2017-11-20T15:30:22\",\n        \"closingDate\": \"2017-11-17T00:00:00\",\n        \"listAgent\": \"Marisol Santiago Soderstsamplem\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Lake Maryville\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 5\"\n    },\n    {\n        \"propertyId\": 57323,\n        \"propertyAddress\": \"334 Peninsula Island Pt, PYMT 6, Longwood, FL 32750\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-11-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-11-17T00:00:00\",\n        \"processedDate\": \"2017-11-20T15:34:05\",\n        \"closingDate\": \"2017-11-17T00:00:00\",\n        \"listAgent\": \"Marisol Santiago Soderstsamplem\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Lake Maryville\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 5\"\n    },\n    {\n        \"propertyId\": 57324,\n        \"propertyAddress\": \"334 Peninsula Island Pt., PYMT3, Longwood, FL 32750\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-08-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-08-28T00:00:00\",\n        \"processedDate\": \"2017-08-30T12:41:52\",\n        \"closingDate\": \"2017-08-28T00:00:00\",\n        \"listAgent\": \"Marisol Santiago Soderstsamplem\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Lake Maryville\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 5\"\n    },\n    {\n        \"propertyId\": 57325,\n        \"propertyAddress\": \"334 Peninsula Island Pt., PYMT4, Longwood, FL 32750\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-08-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-08-28T00:00:00\",\n        \"processedDate\": \"2017-08-30T12:38:41\",\n        \"closingDate\": \"2017-08-28T00:00:00\",\n        \"listAgent\": \"Marisol Santiago Soderstsamplem\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Lake Maryville\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 5\"\n    },\n    {\n        \"propertyId\": 57330,\n        \"propertyAddress\": \"335 Peninsula Island Point\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"O5371028\",\n        \"listDate\": \"2015-06-03T00:00:00\",\n        \"expiredDate\": \"2016-05-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-03-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-03-24T00:00:00\",\n        \"processedDate\": \"2016-03-29T00:00:00\",\n        \"closingDate\": \"2016-03-28T00:00:00\",\n        \"listAgent\": \"Marisol Santiago Soderstsamplem\",\n        \"sellAgent\": \"Marisol Santiago Soderstsamplem\",\n        \"listOffice\": \"Lake Maryville\",\n        \"sellOffice\": \"Lake Maryville\",\n        \"companyName\": \"Company 5\"\n    },\n    {\n        \"propertyId\": 57337,\n        \"propertyAddress\": \"338 Peninsula Island Point\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"O5371022\",\n        \"listDate\": \"2015-06-03T00:00:00\",\n        \"expiredDate\": \"2016-05-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-12-31T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-01-08T00:00:00\",\n        \"processedDate\": \"2016-01-08T00:00:00\",\n        \"closingDate\": \"2016-01-08T00:00:00\",\n        \"listAgent\": \"Marisol Santiago Soderstsamplem\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Lake Maryville\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 5\"\n    },\n    {\n        \"propertyId\": 57356,\n        \"propertyAddress\": \"347 Peninsula Island Pt , Longwood, FL 32750\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"O5377330\",\n        \"listDate\": \"2015-07-01T00:00:00\",\n        \"expiredDate\": \"2017-06-24T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-12-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-06-15T00:00:00\",\n        \"processedDate\": \"2017-06-13T14:41:04\",\n        \"closingDate\": \"2017-06-13T00:00:00\",\n        \"listAgent\": \"Marisol Santiago Soderstsamplem\",\n        \"sellAgent\": \"Marisol Santiago Soderstsamplem\",\n        \"listOffice\": \"Lake Maryville\",\n        \"sellOffice\": \"Lake Maryville\",\n        \"companyName\": \"Company 5\"\n    },\n    {\n        \"propertyId\": 57398,\n        \"propertyAddress\": \"343 Peninsula Island Point, Longwood, FL 32750\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"o5371036\",\n        \"listDate\": \"2015-05-15T00:00:00\",\n        \"expiredDate\": \"2016-05-15T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-07-29T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-09-15T00:00:00\",\n        \"processedDate\": \"2015-11-03T00:00:00\",\n        \"closingDate\": \"2015-10-21T00:00:00\",\n        \"listAgent\": \"Roger Soderstsamplem\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Lake Maryville\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 5\"\n    },\n    {\n        \"propertyId\": 57399,\n        \"propertyAddress\": \"343 Peninsula Island, Longwood, FL 32750\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"NO 343\",\n        \"listDate\": \"2015-10-01T00:00:00\",\n        \"expiredDate\": \"2016-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-10-01T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-12-15T00:00:00\",\n        \"processedDate\": \"2017-12-11T13:31:28\",\n        \"closingDate\": \"2017-12-11T00:00:00\",\n        \"listAgent\": \"Marisol Santiago Soderstsamplem\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Lake Maryville\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 5\"\n    },\n    {\n        \"propertyId\": 57800,\n        \"propertyAddress\": \"Lot 25 Live Oak, Deer Island, FL 32778\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"POCKET LIST\",\n        \"listDate\": \"2016-03-09T00:00:00\",\n        \"expiredDate\": \"2016-04-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-03-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-04-20T00:00:00\",\n        \"processedDate\": \"2016-04-21T00:00:00\",\n        \"closingDate\": \"2016-04-20T00:00:00\",\n        \"listAgent\": \"Janice Csamplery\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Lake Maryville\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 5\"\n    },\n    {\n        \"propertyId\": 57851,\n        \"propertyAddress\": \"Lot H-6 Island Club Drive, 6, Tavares, FL 32778\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"O5507623\",\n        \"listDate\": \"2017-04-30T00:00:00\",\n        \"expiredDate\": \"2018-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-06-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-07-24T00:00:00\",\n        \"processedDate\": \"2017-07-25T10:48:54\",\n        \"closingDate\": \"2017-07-24T00:00:00\",\n        \"listAgent\": \"Janice Csamplery\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Lake Maryville\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 5\"\n    },\n    {\n        \"propertyId\": 57873,\n        \"propertyAddress\": \"346 Peninsula Island Pt , Longwood, FL 32750\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"O5370925\",\n        \"listDate\": \"2015-06-03T00:00:00\",\n        \"expiredDate\": \"2016-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-12-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-03-13T00:00:00\",\n        \"processedDate\": \"2017-03-14T14:24:49\",\n        \"closingDate\": \"2017-03-13T00:00:00\",\n        \"listAgent\": \"Marisol Santiago Soderstsamplem\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Lake Maryville\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 5\"\n    },\n    {\n        \"propertyId\": 57879,\n        \"propertyAddress\": \"338 Peninsula Island, Longwood, FL 32750\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"OAKW050515IHE\",\n        \"listDate\": \"2015-05-05T00:00:00\",\n        \"expiredDate\": \"2016-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-01-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-04-28T00:00:00\",\n        \"processedDate\": \"2017-04-28T16:14:50\",\n        \"closingDate\": \"2017-04-28T00:00:00\",\n        \"listAgent\": \"Marisol Santiago Soderstsamplem\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Lake Maryville\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 5\"\n    },\n    {\n        \"propertyId\": 57884,\n        \"propertyAddress\": \"330 Peninsula Island Pt , Longwood, FL 32750\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"O5371024\",\n        \"listDate\": \"2015-06-03T00:00:00\",\n        \"expiredDate\": \"2016-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-12-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-02-10T00:00:00\",\n        \"processedDate\": \"2017-02-10T13:34:45\",\n        \"closingDate\": \"2017-02-10T00:00:00\",\n        \"listAgent\": \"Marisol Santiago Soderstsamplem\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Lake Maryville\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 5\"\n    },\n    {\n        \"propertyId\": 58143,\n        \"propertyAddress\": \"16925 Deer Island Rd , Tavares, FL 32778\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"O5553484\",\n        \"listDate\": \"2017-12-26T00:00:00\",\n        \"expiredDate\": \"2018-09-26T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-06-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-06-29T00:00:00\",\n        \"processedDate\": \"2018-06-29T16:17:57\",\n        \"closingDate\": \"2018-06-29T00:00:00\",\n        \"listAgent\": \"Janice Csamplery\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Lake Maryville\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 5\"\n    },\n    {\n        \"propertyId\": 58144,\n        \"propertyAddress\": \"16948 Deer Island Rd , Tavares, FL 32778\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"O5541187\",\n        \"listDate\": \"2017-10-13T00:00:00\",\n        \"expiredDate\": \"2018-05-13T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-10-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-11-30T00:00:00\",\n        \"processedDate\": \"2017-12-01T12:15:14\",\n        \"closingDate\": \"2017-11-30T00:00:00\",\n        \"listAgent\": \"Janice Csamplery\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Lake Maryville\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 5\"\n    },\n    {\n        \"propertyId\": 58248,\n        \"propertyAddress\": \"108 Island Estates Pkwy , Palm Coast, FL 32137\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"V4905042\",\n        \"listDate\": \"2019-01-14T00:00:00\",\n        \"expiredDate\": \"2019-07-14T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Maureen sampleynolds\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Port Houston\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 5\"\n    },\n    {\n        \"propertyId\": 58268,\n        \"propertyAddress\": \"182 Island Estates Pkwy , Palm Coast, FL 32137\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"V4906372\",\n        \"listDate\": \"2019-03-27T00:00:00\",\n        \"expiredDate\": \"2019-09-27T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2019-03-31T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2019-05-15T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Maureen sampleynolds\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Port Houston\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 5\"\n    },\n    {\n        \"propertyId\": 58422,\n        \"propertyAddress\": \"104th Ave , 0200, Treasure Island, FL 33706\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"U7598716C\",\n        \"listDate\": \"2013-10-22T00:00:00\",\n        \"expiredDate\": \"2014-04-21T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-01-23T00:00:00\",\n        \"cancelDate\": \"2014-01-31T00:00:00\",\n        \"estimatedClosingDate\": \"2014-03-31T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Connie Redsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"TampaBay - Clearwater\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 58446,\n        \"propertyAddress\": \"745 Capri Blvd , Treasure Island, FL 33706\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"U7609174CA\",\n        \"listDate\": \"2014-02-06T00:00:00\",\n        \"expiredDate\": \"2014-07-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-06-10T00:00:00\",\n        \"cancelDate\": \"2014-07-11T00:00:00\",\n        \"estimatedClosingDate\": \"2014-07-11T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Connie Redsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"TampaBay - Clearwater\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 58473,\n        \"propertyAddress\": \"700 Island Way , 801, Clearwater, FL 33767\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"U7614787CA\",\n        \"listDate\": \"2014-03-28T00:00:00\",\n        \"expiredDate\": \"2014-12-27T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-07-08T00:00:00\",\n        \"cancelDate\": \"2014-09-23T00:00:00\",\n        \"estimatedClosingDate\": \"2014-09-30T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Chris Encinisample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"TampaBay - St. Pete\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 58496,\n        \"propertyAddress\": \"807 Harbor Island , Clearwater, FL 33767\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"U7619758\",\n        \"listDate\": \"2014-05-13T00:00:00\",\n        \"expiredDate\": \"2015-01-22T00:00:00\",\n        \"withdrawnDate\": \"2015-01-12T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Connie Redsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"TampaBay - Clearwater\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 58516,\n        \"propertyAddress\": \"700 S Harbour Island Blvd, 244, Tampa, FL 33602\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-06-25T00:00:00\",\n        \"cancelDate\": \"2014-07-15T00:00:00\",\n        \"estimatedClosingDate\": \"2014-07-31T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Lynn samplechey\",\n        \"listOffice\": null,\n        \"sellOffice\": \"TampaBay - South Tampa\",\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 58527,\n        \"propertyAddress\": \"10492 Pine Island Dr , Weeki Wachee, FL 34607\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"U7702925\",\n        \"listDate\": \"2014-07-10T00:00:00\",\n        \"expiredDate\": \"2015-05-27T00:00:00\",\n        \"withdrawnDate\": \"2015-05-22T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Diane Swainstsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"TampaBay - Clearwater\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 58545,\n        \"propertyAddress\": \"125 92nd Ave , Treasure Island, FL 33706\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"U7705879CA\",\n        \"listDate\": \"2014-08-06T00:00:00\",\n        \"expiredDate\": \"2015-07-28T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-08-12T00:00:00\",\n        \"cancelDate\": \"2014-08-19T00:00:00\",\n        \"estimatedClosingDate\": \"2014-09-12T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Gayle sampleffsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"TampaBay - Clearwater\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 58594,\n        \"propertyAddress\": \"200 121st Ave , 403, Treasure Island, FL 33706\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"U7722591\",\n        \"listDate\": \"2015-01-20T00:00:00\",\n        \"expiredDate\": \"2015-08-20T00:00:00\",\n        \"withdrawnDate\": \"2015-08-19T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Tim Shsamplers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"TampaBay - Clearwater\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 58677,\n        \"propertyAddress\": \"10492 Pine Island Dr , Weeki Wachee, FL 34607\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"U7748141\",\n        \"listDate\": \"2015-08-28T00:00:00\",\n        \"expiredDate\": \"2016-08-09T00:00:00\",\n        \"withdrawnDate\": \"2016-07-05T00:00:00\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Diane Swainstsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"TampaBay - Clearwater\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 58739,\n        \"propertyAddress\": \"7300 Sun Island Dr, 1504, South Pasadena, FL 33707\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"U7758347CA\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-12-20T00:00:00\",\n        \"cancelDate\": \"2016-01-29T00:00:00\",\n        \"estimatedClosingDate\": \"2016-02-05T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Alona Dsamplehy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"TampaBay - St. Pete\",\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 58869,\n        \"propertyAddress\": \"9746 Lake Chase Island Way, Tampa, FL 33626\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"T2807231CA\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-03-28T00:00:00\",\n        \"cancelDate\": \"2016-04-03T00:00:00\",\n        \"estimatedClosingDate\": \"2016-04-08T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Thorsten Koestsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"TampaBay - Clearwater\",\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 58883,\n        \"propertyAddress\": \"10492 Pine Island Dr , Weeki Wachee, FL 34607\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"U7782761\",\n        \"listDate\": \"2016-06-27T00:00:00\",\n        \"expiredDate\": \"2017-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Diane Swainstsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"TampaBay - Clearwater\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 59721,\n        \"propertyAddress\": \"7021 Pelican Island Drive, Tampa, FL 33634\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"U8005150-WD\",\n        \"listDate\": \"2018-05-23T00:00:00\",\n        \"expiredDate\": \"2018-11-21T00:00:00\",\n        \"withdrawnDate\": \"2018-11-05T10:44:23\",\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Wsampleers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"TampaBay - St. Pete\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 60603,\n        \"propertyAddress\": \"10101 Tarpon Dr , Treasure Island, FL 33706\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"U7805859\",\n        \"listDate\": \"2017-02-16T00:00:00\",\n        \"expiredDate\": \"2018-01-26T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Robyn Gsamplen\",\n        \"sellAgent\": null,\n        \"listOffice\": \"TampaBay - St. Pete\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 60604,\n        \"propertyAddress\": \"10101 Tarpon Dr, Treasure Island, FL 33706\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"U7846482CC\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-02-03T00:00:00\",\n        \"cancelDate\": \"2018-04-24T00:00:00\",\n        \"estimatedClosingDate\": \"2018-04-30T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Robyn Gsamplen\",\n        \"listOffice\": null,\n        \"sellOffice\": \"TampaBay - St. Pete\",\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 60605,\n        \"propertyAddress\": \"10101 Tarpon Dr, Treasure Island, FL 33706\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"U7619345\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-06-25T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-06-30T00:00:00\",\n        \"processedDate\": \"2014-07-03T00:00:00\",\n        \"closingDate\": \"2014-06-30T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Diane Swainstsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"TampaBay - Clearwater\",\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 60657,\n        \"propertyAddress\": \"10355 Paradise Blvd, 415, Treasure Island, FL 33706\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"U7764540\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-11-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-12-06T00:00:00\",\n        \"processedDate\": \"2016-12-07T11:27:49\",\n        \"closingDate\": \"2016-12-06T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Nicholas Vicsampleio\",\n        \"listOffice\": null,\n        \"sellOffice\": \"TampaBay - St. Pete\",\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 60741,\n        \"propertyAddress\": \"11105 7th St E, Treasure Island, FL 33706\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-01-02T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-01-15T00:00:00\",\n        \"processedDate\": \"2018-01-16T15:18:19\",\n        \"closingDate\": \"2018-01-15T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Melinda sampleir\",\n        \"listOffice\": null,\n        \"sellOffice\": \"TampaBay - South Tampa\",\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 60753,\n        \"propertyAddress\": \"11185 8th St E,  Treasure Island, FL 33706\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-02-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-02-20T00:00:00\",\n        \"processedDate\": \"2015-02-20T00:00:00\",\n        \"closingDate\": \"2015-02-20T00:00:00\",\n        \"listAgent\": \"Cathy Wsampleers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"TampaBay - St. Pete\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 60817,\n        \"propertyAddress\": \"115 124th Ave W, Treasure Island, FL 33706\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"U7783543CA\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-07-31T00:00:00\",\n        \"cancelDate\": \"2016-08-09T00:00:00\",\n        \"estimatedClosingDate\": \"2016-08-31T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Lori Bsamplewn\",\n        \"listOffice\": null,\n        \"sellOffice\": \"TampaBay - St. Pete\",\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 60879,\n        \"propertyAddress\": \"12356 Capri Cir, Treasure Island, FL 33706\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2013-07-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-03-27T00:00:00\",\n        \"processedDate\": \"2014-04-03T00:00:00\",\n        \"closingDate\": \"2014-03-27T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cyndee sampleydsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"TampaBay - Clearwater\",\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 60893,\n        \"propertyAddress\": \"12217 Sunshine Ln, Treasure Island, FL 33706\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"U7555477\",\n        \"listDate\": \"2012-08-07T00:00:00\",\n        \"expiredDate\": \"2014-02-06T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-01-01T00:00:00\",\n        \"cancelDate\": \"2013-12-31T00:00:00\",\n        \"estimatedClosingDate\": \"2014-01-15T00:00:00\",\n        \"processedDate\": \"2014-01-16T00:00:00\",\n        \"closingDate\": \"2014-01-16T00:00:00\",\n        \"listAgent\": \"Robyn Gsamplen\",\n        \"sellAgent\": null,\n        \"listOffice\": \"TampaBay - St. Pete\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 60907,\n        \"propertyAddress\": \"125 92nd Ave, Treasure Island, FL 33706\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"U7705879\",\n        \"listDate\": \"2014-07-29T00:00:00\",\n        \"expiredDate\": \"2015-07-28T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-08-22T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-10-08T00:00:00\",\n        \"processedDate\": \"2014-10-10T00:00:00\",\n        \"closingDate\": \"2014-10-10T00:00:00\",\n        \"listAgent\": \"Gayle sampleffsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"TampaBay - Clearwater\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 60938,\n        \"propertyAddress\": \"1325 Snell Island PYMT 1 BLVD 105, St Petersburg, FL 33704\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-08-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-09-02T00:00:00\",\n        \"processedDate\": \"2014-09-03T00:00:00\",\n        \"closingDate\": \"2014-09-02T00:00:00\",\n        \"listAgent\": \"Madeleine Ksamplesne\",\n        \"sellAgent\": null,\n        \"listOffice\": \"TampaBay - South Tampa\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 61577,\n        \"propertyAddress\": \"2633 Island Oaks E, Lakeland, FL 33805\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-09-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-10-06T00:00:00\",\n        \"processedDate\": \"2017-10-11T12:28:29\",\n        \"closingDate\": \"2017-10-06T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Phuong Vsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"TampaBay - South Tampa\",\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 61596,\n        \"propertyAddress\": \"275 104th Ave, Treasure Island, FL 33706\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"U7598716\",\n        \"listDate\": \"2013-10-22T00:00:00\",\n        \"expiredDate\": \"2014-10-21T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-08-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-09-10T00:00:00\",\n        \"processedDate\": \"2014-09-10T00:00:00\",\n        \"closingDate\": \"2014-09-10T00:00:00\",\n        \"listAgent\": \"Connie Redsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"TampaBay - Clearwater\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 61702,\n        \"propertyAddress\": \"299 Old Island Trl, Kingsport, TN 37664\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-06-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-06-21T00:00:00\",\n        \"processedDate\": \"2018-06-21T14:54:29\",\n        \"closingDate\": \"2018-06-21T00:00:00\",\n        \"listAgent\": \"Erin McWhsampleter Jsamplees\",\n        \"sellAgent\": null,\n        \"listOffice\": \"TampaBay - South Tampa\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 61706,\n        \"propertyAddress\": \"3 Bellevue Dr, Treasure Island, FL 33706\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"U7740177\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-09-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-10-28T00:00:00\",\n        \"processedDate\": \"2015-10-29T00:00:00\",\n        \"closingDate\": \"2015-10-28T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Frank samplege\",\n        \"listOffice\": null,\n        \"sellOffice\": \"TampaBay - St. Pete\",\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 61752,\n        \"propertyAddress\": \"31 Island Way , 108, Clearwater Beach, FL 33767\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"U7776560\",\n        \"listDate\": \"2016-05-06T00:00:00\",\n        \"expiredDate\": \"2017-04-26T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-05-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-06-10T00:00:00\",\n        \"processedDate\": \"2016-06-10T16:10:36\",\n        \"closingDate\": \"2016-06-10T00:00:00\",\n        \"listAgent\": \"Sharon Skinnsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"TampaBay - Clearwater\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 62012,\n        \"propertyAddress\": \"400 Island Way, 1502, Clearwater Beach, FL 33767\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"U7791434\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-11-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-01-13T00:00:00\",\n        \"processedDate\": \"2017-01-16T15:40:23\",\n        \"closingDate\": \"2017-01-13T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jackie Disample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"TampaBay - Clearwater\",\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 62014,\n        \"propertyAddress\": \"400 Sandy Hook Rd , Treasure Island, FL 33706\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"U7783536\",\n        \"listDate\": \"2016-07-05T00:00:00\",\n        \"expiredDate\": \"2016-12-29T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-10-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-12-21T00:00:00\",\n        \"processedDate\": \"2016-12-20T15:49:43\",\n        \"closingDate\": \"2016-12-20T00:00:00\",\n        \"listAgent\": \"Lori Bsamplewn\",\n        \"sellAgent\": null,\n        \"listOffice\": \"TampaBay - St. Pete\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 62088,\n        \"propertyAddress\": \"4132 Star Island Dr, Holiday, FL 34691\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-07-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-08-09T00:00:00\",\n        \"processedDate\": \"2017-08-11T14:30:36\",\n        \"closingDate\": \"2017-08-09T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Justin Guzsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"TampaBay - South Tampa\",\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 62191,\n        \"propertyAddress\": \"450 Treasure Island Causeway, Treasure Island, FL 33706\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"U7728888\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-04-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-04-23T00:00:00\",\n        \"processedDate\": \"2015-04-23T00:00:00\",\n        \"closingDate\": \"2015-04-23T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Eileen Bedsamplesampleus\",\n        \"listOffice\": null,\n        \"sellOffice\": \"TampaBay - St. Pete\",\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 62347,\n        \"propertyAddress\": \"500 Treasure Island , 603, Treasure Island, FL 33706\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"U7745271\",\n        \"listDate\": \"2015-07-31T00:00:00\",\n        \"expiredDate\": \"2016-06-26T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-10-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-12-18T00:00:00\",\n        \"processedDate\": \"2015-12-18T00:00:00\",\n        \"closingDate\": \"2015-12-16T00:00:00\",\n        \"listAgent\": \"Diane Swainstsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"TampaBay - Clearwater\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 62348,\n        \"propertyAddress\": \"500 Treasure Island Causeway, 603, Treasure Island, FL 33706\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"U7603619\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-27T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-23T00:00:00\",\n        \"processedDate\": \"2014-04-25T00:00:00\",\n        \"closingDate\": \"2014-04-25T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Diane Swainstsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"TampaBay - Clearwater\",\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 62349,\n        \"propertyAddress\": \"500 Treasure Island, 201, Treasure Island, FL 33706\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"U7791076\",\n        \"listDate\": \"2016-09-09T00:00:00\",\n        \"expiredDate\": \"2017-03-06T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-09-12T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-10-14T00:00:00\",\n        \"processedDate\": \"2016-10-18T11:22:44\",\n        \"closingDate\": \"2016-10-14T00:00:00\",\n        \"listAgent\": \"Jessica Dsampleig\",\n        \"sellAgent\": null,\n        \"listOffice\": \"TampaBay - St. Pete\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 62494,\n        \"propertyAddress\": \"56 Windward Island, Clearwater Beach, FL 33767\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"U7759894\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-01-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-04-11T00:00:00\",\n        \"processedDate\": \"2016-04-11T00:00:00\",\n        \"closingDate\": \"2016-04-11T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jackie Disample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"TampaBay - Clearwater\",\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 62511,\n        \"propertyAddress\": \"5505 Island Creek Place, Tampa, FL 33611\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-12-13T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-01-28T00:00:00\",\n        \"processedDate\": \"2015-02-04T00:00:00\",\n        \"closingDate\": \"2015-01-30T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Phuong Vsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"TampaBay - South Tampa\",\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 62569,\n        \"propertyAddress\": \"606 Harbor Island, Clearwater Beach, FL 33767\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"U7744880\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-12-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-01-29T00:00:00\",\n        \"processedDate\": \"2016-02-01T00:00:00\",\n        \"closingDate\": \"2016-01-29T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jackie Disample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"TampaBay - Clearwater\",\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 62573,\n        \"propertyAddress\": \"609 Island Place 496 Way, Tampa, FL 33602\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-08-20T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-08-26T00:00:00\",\n        \"processedDate\": \"2014-08-26T00:00:00\",\n        \"closingDate\": \"2014-08-26T00:00:00\",\n        \"listAgent\": \"Alayna Shsamplewood\",\n        \"sellAgent\": null,\n        \"listOffice\": \"TampaBay - South Tampa\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 62597,\n        \"propertyAddress\": \"615 Island Place Way, Tampa, FL 33602\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-05-07T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-06-12T00:00:00\",\n        \"processedDate\": \"2017-06-13T09:59:07\",\n        \"closingDate\": \"2017-06-12T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Paul DeSantsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"TampaBay - South Tampa\",\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 62651,\n        \"propertyAddress\": \"670 Island Way, 506, Clearwater Beach, FL 33767\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"U7725114\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-02-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-03-16T00:00:00\",\n        \"processedDate\": \"2015-03-17T00:00:00\",\n        \"closingDate\": \"2015-03-17T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Jackie Disample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"TampaBay - Clearwater\",\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 62698,\n        \"propertyAddress\": \"700 Harbour Island Blvd, 244, Tampa, FL 33602\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"T2621455\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-06-26T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-10-31T00:00:00\",\n        \"processedDate\": \"2014-11-18T00:00:00\",\n        \"closingDate\": \"2014-11-14T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Lynn samplechey\",\n        \"listOffice\": null,\n        \"sellOffice\": \"TampaBay - South Tampa\",\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 62699,\n        \"propertyAddress\": \"700 Harbour Island Blvd, 406, Tampa, FL 33602\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-07-18T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-08-28T00:00:00\",\n        \"processedDate\": \"2014-09-02T00:00:00\",\n        \"closingDate\": \"2014-08-29T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Rick Schesampler\",\n        \"listOffice\": null,\n        \"sellOffice\": \"TampaBay - South Tampa\",\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 62700,\n        \"propertyAddress\": \"700 Harbour Island Blvd, 407, Tampa, FL 33602\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-02-24T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-04-08T00:00:00\",\n        \"processedDate\": \"2016-04-11T00:00:00\",\n        \"closingDate\": \"2016-04-08T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Kathy Delsamplees\",\n        \"listOffice\": null,\n        \"sellOffice\": \"TampaBay - South Tampa\",\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 62701,\n        \"propertyAddress\": \"700 Harbour Island Blvd, 434, Tampa, FL 33602\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-02-15T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-03-25T00:00:00\",\n        \"processedDate\": \"2016-03-18T00:00:00\",\n        \"closingDate\": \"2016-03-17T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Paul DeSantsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"TampaBay - South Tampa\",\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 62702,\n        \"propertyAddress\": \"700 Island Way , 302, Clearwater Beach, FL 33767\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"U7752887\",\n        \"listDate\": \"2015-10-09T00:00:00\",\n        \"expiredDate\": \"2016-10-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-08-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-10-11T00:00:00\",\n        \"processedDate\": \"2016-10-14T14:17:56\",\n        \"closingDate\": \"2016-10-12T00:00:00\",\n        \"listAgent\": \"Diane Swainstsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"TampaBay - Clearwater\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 62703,\n        \"propertyAddress\": \"700 Island Way , 801, Clearwater, FL 33767\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"U7614787\",\n        \"listDate\": \"2014-03-28T00:00:00\",\n        \"expiredDate\": \"2014-12-27T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-09-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-10-29T00:00:00\",\n        \"processedDate\": \"2014-10-29T00:00:00\",\n        \"closingDate\": \"2014-10-29T00:00:00\",\n        \"listAgent\": \"Chris Encinisample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"TampaBay - St. Pete\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 62704,\n        \"propertyAddress\": \"700 Island Way, 503, Clearwater, FL 33767\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"U7603208\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-03-21T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-04-21T00:00:00\",\n        \"processedDate\": \"2014-04-22T00:00:00\",\n        \"closingDate\": \"2014-04-22T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cheryl Fsamplenzese\",\n        \"listOffice\": null,\n        \"sellOffice\": \"TampaBay - Clearwater\",\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 62705,\n        \"propertyAddress\": \"700 S Harbour Island Blvd , 621, Tampa, FL 33602\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"T2619227\",\n        \"listDate\": \"2014-03-12T00:00:00\",\n        \"expiredDate\": \"2014-08-03T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-04-09T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-05-05T00:00:00\",\n        \"processedDate\": \"2014-05-15T00:00:00\",\n        \"closingDate\": \"2014-05-12T00:00:00\",\n        \"listAgent\": \"Rick Schesampler\",\n        \"sellAgent\": null,\n        \"listOffice\": \"TampaBay - South Tampa\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 62706,\n        \"propertyAddress\": \"700 S Harbour Island Blvd, 238, Tampa, FL 33602\",\n        \"status\": \"Cancelled\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-07-04T00:00:00\",\n        \"cancelDate\": \"2018-07-16T00:00:00\",\n        \"estimatedClosingDate\": \"2018-07-25T00:00:00\",\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": null,\n        \"sellAgent\": \"Paul DeSantsample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"TampaBay - South Tampa\",\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 62707,\n        \"propertyAddress\": \"700 S Harbour Island Blvd, Unit 512, Euclid, FL 33704\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-02-28T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": \"2014-03-07T00:00:00\",\n        \"closingDate\": \"2014-03-07T00:00:00\",\n        \"listAgent\": \"Crystal Duksample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"TampaBay - South Tampa\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 62708,\n        \"propertyAddress\": \"700 SE Harbour Island Blvd, 526, Tampa, FL 33602\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"U7609192\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-05-14T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-05-27T00:00:00\",\n        \"processedDate\": \"2014-05-27T00:00:00\",\n        \"closingDate\": \"2014-05-27T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Cindy Ssampleers\",\n        \"listOffice\": null,\n        \"sellOffice\": \"TampaBay - South Tampa\",\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 62720,\n        \"propertyAddress\": \"7020 Pelican Island Dr, Tampa, FL 33634\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-07-03T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-08-14T00:00:00\",\n        \"processedDate\": \"2015-08-19T00:00:00\",\n        \"closingDate\": \"2015-08-12T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Kimberly Wsamplessample\",\n        \"listOffice\": null,\n        \"sellOffice\": \"TampaBay - South Tampa\",\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 62723,\n        \"propertyAddress\": \"7021 Pelican Island Dr, Tampa, FL 33634\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2018-12-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2018-12-11T00:00:00\",\n        \"processedDate\": \"2018-12-11T15:03:44\",\n        \"closingDate\": \"2018-12-11T00:00:00\",\n        \"listAgent\": \"Lauren Hendrickssample - samplsampleger\",\n        \"sellAgent\": null,\n        \"listOffice\": \"TampaBay - St. Pete\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 62724,\n        \"propertyAddress\": \"7025 Pelican Island 476 Dr, Tampa, FL 33629\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": null,\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-08-08T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-08-14T00:00:00\",\n        \"processedDate\": \"2014-09-04T00:00:00\",\n        \"closingDate\": \"2014-08-14T00:00:00\",\n        \"listAgent\": \"Linda Dsamplene\",\n        \"sellAgent\": null,\n        \"listOffice\": \"TampaBay - Clearwater\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 62754,\n        \"propertyAddress\": \"7300 Sun Island Dr S, 1802, South Pasadena, FL 33707\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"U7793751\",\n        \"listDate\": \"2016-10-07T00:00:00\",\n        \"expiredDate\": \"2017-07-05T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-10-11T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-11-10T00:00:00\",\n        \"processedDate\": \"2016-11-10T15:15:27\",\n        \"closingDate\": \"2016-11-10T00:00:00\",\n        \"listAgent\": \"Alona Dsamplehy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"TampaBay - St. Pete\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 62755,\n        \"propertyAddress\": \"7300 Sun Island Dr S, Saint Petersburg, FL 33707\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"U7767179\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-03-23T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-05-17T00:00:00\",\n        \"processedDate\": \"2016-05-18T12:24:38\",\n        \"closingDate\": \"2016-05-17T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Alona Dsamplehy\",\n        \"listOffice\": null,\n        \"sellOffice\": \"TampaBay - St. Pete\",\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 62771,\n        \"propertyAddress\": \"740 123rd Ave , Treasure Island, FL 33706\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"U7776479\",\n        \"listDate\": \"2016-05-05T00:00:00\",\n        \"expiredDate\": \"2017-06-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-02-10T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-04-30T00:00:00\",\n        \"processedDate\": \"2017-04-28T16:21:08\",\n        \"closingDate\": \"2017-04-28T00:00:00\",\n        \"listAgent\": \"Alona Dsamplehy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"TampaBay - St. Pete\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 62779,\n        \"propertyAddress\": \"745 Capri Blvd , Treasure Island, FL 33706\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"U7609174\",\n        \"listDate\": \"2014-02-06T00:00:00\",\n        \"expiredDate\": \"2014-08-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2014-07-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2014-08-15T00:00:00\",\n        \"processedDate\": \"2014-08-18T00:00:00\",\n        \"closingDate\": \"2014-08-18T00:00:00\",\n        \"listAgent\": \"Connie Redsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"TampaBay - Clearwater\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 62914,\n        \"propertyAddress\": \"854 Island Way, Clearwater, FL 33767\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"U7818183\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-10-30T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-12-19T00:00:00\",\n        \"processedDate\": \"2017-12-20T12:54:51\",\n        \"closingDate\": \"2017-12-19T00:00:00\",\n        \"listAgent\": null,\n        \"sellAgent\": \"Nikky Yang Victsampleino\",\n        \"listOffice\": null,\n        \"sellOffice\": \"TampaBay - Clearwater\",\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 63286,\n        \"propertyAddress\": \"8907 Key West Island Way , Riverview, FL 33578\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"T2709841EXP\",\n        \"listDate\": \"2014-08-08T00:00:00\",\n        \"expiredDate\": \"2015-04-30T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Katherine Sakksample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"TampaBay - South Tampa\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 63847,\n        \"propertyAddress\": \"700 S Harbour Island Blvd , 526, Tampa, FL 33602\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"T2768947\",\n        \"listDate\": \"2015-07-17T00:00:00\",\n        \"expiredDate\": \"2016-04-14T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2015-08-16T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2015-09-28T00:00:00\",\n        \"processedDate\": \"2015-09-28T00:00:00\",\n        \"closingDate\": \"2015-09-28T00:00:00\",\n        \"listAgent\": \"Cindy Ssampleers\",\n        \"sellAgent\": \"Cindy Ssampleers\",\n        \"listOffice\": \"TampaBay - South Tampa\",\n        \"sellOffice\": \"TampaBay - South Tampa\",\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 63922,\n        \"propertyAddress\": \"8295 Bayshore Dr , Treasure Island, FL 33706\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"T2811267\",\n        \"listDate\": \"2016-04-06T00:00:00\",\n        \"expiredDate\": \"2016-12-31T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2016-05-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2016-06-28T00:00:00\",\n        \"processedDate\": \"2016-06-27T09:14:44\",\n        \"closingDate\": \"2016-06-24T00:00:00\",\n        \"listAgent\": \"Rick Schesampler\",\n        \"sellAgent\": null,\n        \"listOffice\": \"TampaBay - South Tampa\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 10\"\n    },\n    {\n        \"propertyId\": 64050,\n        \"propertyAddress\": \"908 Collier Ct, Unit 402, Marco Island, FL 34145\",\n        \"status\": \"Processed\",\n        \"mlsNumber1\": \"\",\n        \"listDate\": null,\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": \"2017-10-06T00:00:00\",\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": \"2017-10-10T00:00:00\",\n        \"processedDate\": \"2017-10-10T15:19:24\",\n        \"closingDate\": \"2017-10-10T00:00:00\",\n        \"listAgent\": \"Kathleen Stackpoosample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"PremierReferralFL - Main Office\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 8\"\n    },\n    {\n        \"propertyId\": 65158,\n        \"propertyAddress\": \"3000 Royal Marco Way, 321, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219037863\",\n        \"listDate\": \"2019-05-31T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 65168,\n        \"propertyAddress\": \"1857 San Marco Rd, PH-1, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219063548\",\n        \"listDate\": \"2019-09-27T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 65176,\n        \"propertyAddress\": \"213 Windbrook Ct, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219068490\",\n        \"listDate\": \"2019-10-16T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 65228,\n        \"propertyAddress\": \"140 Seaview Ct, 204N, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220006993\",\n        \"listDate\": \"2020-01-23T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Gwen Tolssample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 65232,\n        \"propertyAddress\": \"1070 S Collier Blvd, 401, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220007905\",\n        \"listDate\": \"2020-01-30T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 65262,\n        \"propertyAddress\": \"1566 Jamaica Ct, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220017336\",\n        \"listDate\": \"2020-03-03T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Rosemarie Tsampleagni\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 65276,\n        \"propertyAddress\": \"174 S Collier Blvd, 1104, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220018945\",\n        \"listDate\": \"2020-08-24T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 65291,\n        \"propertyAddress\": \"140 Seaview Ct, 203S, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220025013\",\n        \"listDate\": \"2020-04-10T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 65329,\n        \"propertyAddress\": \"260 Seaview Ct, 205, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220030912\",\n        \"listDate\": \"2020-05-15T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Angelica samplerews\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 65342,\n        \"propertyAddress\": \"1069 Bald Eagle Dr, 1002, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220031927\",\n        \"listDate\": \"2020-05-26T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 65347,\n        \"propertyAddress\": \"320 Seaview Ct, 1408, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220033396\",\n        \"listDate\": \"2020-05-26T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 65367,\n        \"propertyAddress\": \"320 Seaview Ct, #408, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220037142\",\n        \"listDate\": \"2020-06-16T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 65370,\n        \"propertyAddress\": \"320 Seaview Ct, #508, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220037300\",\n        \"listDate\": \"2020-06-16T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 65380,\n        \"propertyAddress\": \"140 Seaview Ct, 1006, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220038161\",\n        \"listDate\": \"2020-06-18T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 65396,\n        \"propertyAddress\": \"1069 Bald Eagle Dr, S-702, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220040750\",\n        \"listDate\": \"2020-07-10T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jacki Stsampletegos\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 65404,\n        \"propertyAddress\": \"2189 San Marco Rd, 201, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220041062\",\n        \"listDate\": \"2020-07-16T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 65408,\n        \"propertyAddress\": \"740 N Collier Blvd, 407, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220042151\",\n        \"listDate\": \"2020-07-06T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Sue Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 65424,\n        \"propertyAddress\": \"380 Seaview Ct NW, 1807, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220049099\",\n        \"listDate\": \"2020-08-19T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 65437,\n        \"propertyAddress\": \"1036 S Collier Blvd, 502, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220049871\",\n        \"listDate\": \"2020-08-20T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 65477,\n        \"propertyAddress\": \"100 N Collier Blvd, 904, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220053544\",\n        \"listDate\": \"2020-08-25T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Sue Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 65501,\n        \"propertyAddress\": \"886 Sea Dune Ln, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220056975\",\n        \"listDate\": \"2020-09-15T00:00:00\",\n        \"expiredDate\": \"2021-04-08T14:40:16.853\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 65527,\n        \"propertyAddress\": \"980 Cape Marco Dr, 307, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220058857\",\n        \"listDate\": \"2020-09-18T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Gregory Sofsamplenko\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Dorchester\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 65591,\n        \"propertyAddress\": \"800 W Copeland Dr, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220061693\",\n        \"listDate\": \"2020-10-06T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 65664,\n        \"propertyAddress\": \"855 Elkhorn Ct, 524, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220063422\",\n        \"listDate\": \"2020-10-07T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 65717,\n        \"propertyAddress\": \"1471 Butterfield Ct, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220064293\",\n        \"listDate\": \"2020-10-08T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 65732,\n        \"propertyAddress\": \"440 Seaview Ct, 210, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220064468\",\n        \"listDate\": \"2020-10-12T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 65757,\n        \"propertyAddress\": \"500 Saturn Ct, 41, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220065689\",\n        \"listDate\": \"2020-10-15T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 65771,\n        \"propertyAddress\": \"181 South Beach Dr, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220065873\",\n        \"listDate\": \"2020-10-14T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 65796,\n        \"propertyAddress\": \"362 Beach Lily Ln, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220066372\",\n        \"listDate\": \"2020-10-19T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 65826,\n        \"propertyAddress\": \"975 Royal Marco Way, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220067059\",\n        \"listDate\": \"2020-10-20T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 65885,\n        \"propertyAddress\": \"520 S Collier Blvd, 807, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220069101\",\n        \"listDate\": \"2020-11-02T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 65893,\n        \"propertyAddress\": \"871 Sea Dune Ln, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220069298\",\n        \"listDate\": \"2020-10-30T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 65908,\n        \"propertyAddress\": \"195 South Beach Dr, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220069357\",\n        \"listDate\": \"2020-11-09T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 65917,\n        \"propertyAddress\": \"581 Blackmore Ct, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220069365\",\n        \"listDate\": \"2020-10-29T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 66007,\n        \"propertyAddress\": \"506 Tigertail Ct, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220070726\",\n        \"listDate\": \"2020-10-23T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Paul samplepin\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Broad Avenue\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 66036,\n        \"propertyAddress\": \"1070 S Collier Blvd, PH-E, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220071200\",\n        \"listDate\": \"2020-11-06T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 66058,\n        \"propertyAddress\": \"478 Kendall Dr, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220071973\",\n        \"listDate\": \"2020-11-11T00:00:00\",\n        \"expiredDate\": \"2021-04-08T14:40:27.503\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 66197,\n        \"propertyAddress\": \"841 Partridge Ct, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220074557\",\n        \"listDate\": \"2020-11-20T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 66225,\n        \"propertyAddress\": \"751 Rockport Ct, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220075412\",\n        \"listDate\": \"2021-01-08T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 66452,\n        \"propertyAddress\": \"820 Eubanks Ct, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220078321\",\n        \"listDate\": \"2020-12-10T00:00:00\",\n        \"expiredDate\": \"2021-04-08T14:40:34.86\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 66538,\n        \"propertyAddress\": \"740 N Collier Blvd, 2-406, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220079016\",\n        \"listDate\": \"2020-12-11T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Gwen Tolssample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 66574,\n        \"propertyAddress\": \"3000 Royal Marco Way, 419, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220079902\",\n        \"listDate\": \"2020-12-15T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 66636,\n        \"propertyAddress\": \"355 Gumbo Limbo Ln, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220080593\",\n        \"listDate\": \"2020-12-22T00:00:00\",\n        \"expiredDate\": \"2021-04-08T14:40:39.14\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 66666,\n        \"propertyAddress\": \"1268 Winterberry Dr, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220080781\",\n        \"listDate\": \"2020-12-22T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 66710,\n        \"propertyAddress\": \"362 Morning Glory Ln, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220081227\",\n        \"listDate\": \"2020-12-22T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 66719,\n        \"propertyAddress\": \"720 Lime Ter, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220081322\",\n        \"listDate\": \"2021-01-06T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Angelica samplerews\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 66741,\n        \"propertyAddress\": \"1047 Hartley Ave, 204, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220081799\",\n        \"listDate\": \"2020-12-28T00:00:00\",\n        \"expiredDate\": \"2021-04-08T14:40:40.457\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 66747,\n        \"propertyAddress\": \"990 Cape Marco Dr, 203, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220081853\",\n        \"listDate\": \"2020-12-28T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Dave Flowsamples\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 66919,\n        \"propertyAddress\": \"6000 Royal Marco Way, 655, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"221000941\",\n        \"listDate\": \"2021-01-06T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 67042,\n        \"propertyAddress\": \"1020 S Collier Blvd, 503, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"221002152\",\n        \"listDate\": \"2021-01-15T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jacki Stsampletegos\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 67089,\n        \"propertyAddress\": \"940 Sea Oats Ct, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"221002807\",\n        \"listDate\": \"2021-01-15T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 67101,\n        \"propertyAddress\": \"8838 Lely Island Cir, Naples, FL, 34113\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"221003028\",\n        \"listDate\": \"2021-01-14T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michael Hsampleted\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Brighton\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 67115,\n        \"propertyAddress\": \"20915 Island Sound Cir, 101, Estero, FL, 33928\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"221003305\",\n        \"listDate\": \"2021-01-08T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Pam samplescheid\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Boston\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 67182,\n        \"propertyAddress\": \"780 S Collier Blvd, 711, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"221004517\",\n        \"listDate\": \"2021-01-19T00:00:00\",\n        \"expiredDate\": \"2021-01-22T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 67481,\n        \"propertyAddress\": \"176 S Collier Blvd, PH-3, Marco Island, FL, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"220007837\",\n        \"listDate\": \"2020-02-07T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 67581,\n        \"propertyAddress\": \"242 Stillwater Ct, Marco Island, FL, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"220016057\",\n        \"listDate\": \"2020-02-28T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 67600,\n        \"propertyAddress\": \"688 W Elkcam Cir, 1023, Marco Island, FL, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"220018038\",\n        \"listDate\": \"2020-03-06T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 67718,\n        \"propertyAddress\": \"1872 N Bahama Ave, Marco Island, FL, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"220047262\",\n        \"listDate\": \"2020-07-31T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Helga Wsamplezold\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 67725,\n        \"propertyAddress\": \"280 S Collier Blvd, 1704, Marco Island, FL, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"220049729\",\n        \"listDate\": \"2020-08-11T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 67732,\n        \"propertyAddress\": \"866 Sea Dune Ln, Marco Island, FL, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"220052531\",\n        \"listDate\": \"2020-09-01T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 67733,\n        \"propertyAddress\": \"1650 Caxambas Ct, Marco Island, FL, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"220052919\",\n        \"listDate\": \"2020-08-25T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 67736,\n        \"propertyAddress\": \"320 Seaview Ct, 1712, Marco Island, FL, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"220053624\",\n        \"listDate\": \"2020-08-27T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 67755,\n        \"propertyAddress\": \"278 Seminole Ct, Marco Island, FL, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"220058396\",\n        \"listDate\": \"2020-09-16T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 67762,\n        \"propertyAddress\": \"4000 Royal Marco Way, 822, Marco Island, FL, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"220061224\",\n        \"listDate\": \"2020-09-25T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 67775,\n        \"propertyAddress\": \"2201 San Marco Rd, 101, Marco Island, FL, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"220064358\",\n        \"listDate\": \"2020-10-09T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 67785,\n        \"propertyAddress\": \"2264 Island Cove Cir, Naples, FL, 34109\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"220066859\",\n        \"listDate\": \"2020-10-17T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"John D'sampleelio\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Fairfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 67793,\n        \"propertyAddress\": \"174 S Collier Blvd, 1106, Marco Island, FL, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"220067945\",\n        \"listDate\": \"2020-10-26T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 67794,\n        \"propertyAddress\": \"190 N Collier Blvd, N-2, Marco Island, FL, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"220068011\",\n        \"listDate\": \"2020-10-23T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 67835,\n        \"propertyAddress\": \"1819 Honduras Ave, Marco Island, FL, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"220074364\",\n        \"listDate\": \"2020-11-20T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 67838,\n        \"propertyAddress\": \"970 Cape Marco Dr, 2104, Marco Island, FL, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"220074978\",\n        \"listDate\": \"2020-11-23T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 67839,\n        \"propertyAddress\": \"380 Seaview Ct, 1403, Marco Island, FL, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"220075050\",\n        \"listDate\": \"2020-11-23T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Dave Flowsamples\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 67843,\n        \"propertyAddress\": \"1251 Laurel Ct, Marco Island, FL, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"220075461\",\n        \"listDate\": \"2020-11-25T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 67851,\n        \"propertyAddress\": \"164 Columbus Way, Marco Island, FL, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"220076500\",\n        \"listDate\": \"2020-12-03T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Dave Flowsamples\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 67857,\n        \"propertyAddress\": \"5000 Royal Marco Way, PH-936, Marco Island, FL, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"220076921\",\n        \"listDate\": \"2020-12-14T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 67865,\n        \"propertyAddress\": \"881 Panama Ct, 101, Marco Island, FL, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"220077551\",\n        \"listDate\": \"2020-12-11T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Dave Flowsamples\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 67866,\n        \"propertyAddress\": \"1401 Salvadore Ct, Marco Island, FL, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"220077971\",\n        \"listDate\": \"2020-12-09T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 67874,\n        \"propertyAddress\": \"2000 Royal Marco Way, 2-503, Marco Island, FL, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"220078872\",\n        \"listDate\": \"2020-12-10T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 67877,\n        \"propertyAddress\": \"1208 Edington Pl, E402, Marco Island, FL, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"220079043\",\n        \"listDate\": \"2020-12-11T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 67887,\n        \"propertyAddress\": \"320 Seaview Ct, 1611, Marco Island, FL, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"220080255\",\n        \"listDate\": \"2020-12-18T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 67890,\n        \"propertyAddress\": \"824 Hideaway Cir E, 3-321, Marco Island, FL, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"220080573\",\n        \"listDate\": \"2020-12-18T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 67894,\n        \"propertyAddress\": \"1131 Swallow Ave, 3-502, Marco Island, FL, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"220081131\",\n        \"listDate\": \"2020-12-23T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jacki Stsampletegos\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 67896,\n        \"propertyAddress\": \"581 Inlet Dr, Marco Island, FL, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"220081497\",\n        \"listDate\": \"2020-12-29T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 67915,\n        \"propertyAddress\": \"1770 Barbados Ave, Marco Island, FL, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"221002669\",\n        \"listDate\": \"2021-01-15T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Gwen Tolssample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 72903,\n        \"propertyAddress\": \"828 Whiskey Creek Dr, Marco Island, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"219070665\",\n        \"listDate\": \"2019-10-24T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 72904,\n        \"propertyAddress\": \"945 Caxambas Dr, Marco Island, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219071384\",\n        \"listDate\": \"2019-10-28T00:00:00\",\n        \"expiredDate\": \"2021-02-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 72905,\n        \"propertyAddress\": \"941 Caxambas, Marco Island, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"219071400\",\n        \"listDate\": \"2019-10-28T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 72906,\n        \"propertyAddress\": \"651 Inlet Dr, Marco Island, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219071413\",\n        \"listDate\": \"2019-10-28T00:00:00\",\n        \"expiredDate\": \"2021-02-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 72907,\n        \"propertyAddress\": \"680 Inlet Dr, Marco Island, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219071415\",\n        \"listDate\": \"2019-10-28T00:00:00\",\n        \"expiredDate\": \"2021-02-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 72908,\n        \"propertyAddress\": \"1405 Butterfield Ct, Marco Island, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219072614\",\n        \"listDate\": \"2019-11-04T00:00:00\",\n        \"expiredDate\": \"2021-02-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 72909,\n        \"propertyAddress\": \"720 Inlet Dr, Marco Island, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"219076554\",\n        \"listDate\": \"2019-11-18T00:00:00\",\n        \"expiredDate\": \"2021-02-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 72910,\n        \"propertyAddress\": \"721 Barfield Dr, Marco Island, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"219077054\",\n        \"listDate\": \"2019-11-21T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 72911,\n        \"propertyAddress\": \"1601 Begonia Ct, Marco Island, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"220004605\",\n        \"listDate\": \"2020-01-20T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 72912,\n        \"propertyAddress\": \"1001 Inlet Dr, Marco Island, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"220006288\",\n        \"listDate\": \"2020-01-29T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 72914,\n        \"propertyAddress\": \"455 Gate House Ct, Marco Island, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"220012439\",\n        \"listDate\": \"2020-02-14T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 72916,\n        \"propertyAddress\": \"1258 Winterberry Dr, Marco Island, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"220018288\",\n        \"listDate\": \"2020-03-10T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 72924,\n        \"propertyAddress\": \"1126 Blue Hill Creek Dr, Marco Island, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"220033713\",\n        \"listDate\": \"2020-06-03T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 72925,\n        \"propertyAddress\": \"1405 Collingswood Ave, Marco Island, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220033822\",\n        \"listDate\": \"2020-05-28T00:00:00\",\n        \"expiredDate\": \"2021-02-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 72927,\n        \"propertyAddress\": \"920 Caxambas Dr, Marco Island, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220039412\",\n        \"listDate\": \"2020-06-23T00:00:00\",\n        \"expiredDate\": \"2021-02-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 72931,\n        \"propertyAddress\": \"945 Royal Marco Way, Marco Island, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220041465\",\n        \"listDate\": \"2020-07-02T00:00:00\",\n        \"expiredDate\": \"2021-02-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 72934,\n        \"propertyAddress\": \"992 Royal Marco Way, Marco Island, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220048384\",\n        \"listDate\": \"2020-08-04T00:00:00\",\n        \"expiredDate\": \"2021-02-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 72936,\n        \"propertyAddress\": \"395 Wild Coffee Ln, Marco Island, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220051668\",\n        \"listDate\": \"2020-08-19T00:00:00\",\n        \"expiredDate\": \"2021-02-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 72947,\n        \"propertyAddress\": \"849 Caxambas Dr, Marco Island, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220069134\",\n        \"listDate\": \"2020-11-03T00:00:00\",\n        \"expiredDate\": \"2021-02-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 72950,\n        \"propertyAddress\": \"1741 Bounty Ct, Marco Island, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"220074187\",\n        \"listDate\": \"2020-11-19T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 72951,\n        \"propertyAddress\": \"257 Polynesia Ct, Marco Island, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"220076724\",\n        \"listDate\": \"2020-12-02T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 72953,\n        \"propertyAddress\": \"111 Wild Cherry Ln, Marco Island, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220079126\",\n        \"listDate\": \"2020-12-14T00:00:00\",\n        \"expiredDate\": \"2021-02-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 72955,\n        \"propertyAddress\": \"379 Morning Glory Ln, Marco Island, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220080932\",\n        \"listDate\": \"2020-12-21T00:00:00\",\n        \"expiredDate\": \"2021-02-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 72956,\n        \"propertyAddress\": \"777 Bluebonnet Ct, Marco Island, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"220081120\",\n        \"listDate\": \"2020-12-22T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 72957,\n        \"propertyAddress\": \"1020 Mendel Ave, Marco Island, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220081195\",\n        \"listDate\": \"2020-12-22T00:00:00\",\n        \"expiredDate\": \"2021-02-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy Bsampledie\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 72958,\n        \"propertyAddress\": \"121 Wild Cherry Ln, Marco Island, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220081207\",\n        \"listDate\": \"2020-12-22T00:00:00\",\n        \"expiredDate\": \"2021-02-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 72960,\n        \"propertyAddress\": \"1990 Sheffield Ave, Marco Island, 34145\",\n        \"status\": \"Pending\",\n        \"mlsNumber1\": \"221001471\",\n        \"listDate\": \"2021-01-07T00:00:00\",\n        \"expiredDate\": null,\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 72962,\n        \"propertyAddress\": \"876 Whiskey Creek Dr, Marco Island, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"221002722\",\n        \"listDate\": \"2021-01-12T00:00:00\",\n        \"expiredDate\": \"2021-02-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 72964,\n        \"propertyAddress\": \"990 Scott Dr, Marco Island, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"221003362\",\n        \"listDate\": \"2021-01-14T00:00:00\",\n        \"expiredDate\": \"2021-02-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 72965,\n        \"propertyAddress\": \"991 Scott Dr, Marco Island, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"221003365\",\n        \"listDate\": \"2021-01-14T00:00:00\",\n        \"expiredDate\": \"2021-02-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 72968,\n        \"propertyAddress\": \"882 Whiskey Creek Dr, Marco Island, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"221005476\",\n        \"listDate\": \"2021-01-22T00:00:00\",\n        \"expiredDate\": \"2021-02-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 72972,\n        \"propertyAddress\": \"1878 Cascade Ct, Marco Island, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"221007259\",\n        \"listDate\": \"2021-01-28T00:00:00\",\n        \"expiredDate\": \"2021-02-01T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 72974,\n        \"propertyAddress\": \"1659 Rainbow Court, Marco Island, FL 34145\",\n        \"status\": \"Withdrawn\",\n        \"mlsNumber1\": \"218064987\",\n        \"listDate\": \"2018-09-28T00:00:00\",\n        \"expiredDate\": \"2019-06-28T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 74704,\n        \"propertyAddress\": \"380 Seaview Ct, 805, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220054776\",\n        \"listDate\": \"2020-08-31T00:00:00\",\n        \"expiredDate\": \"2021-04-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 74706,\n        \"propertyAddress\": \"1698 Mcilvaine Ct, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"220072117\",\n        \"listDate\": \"2021-02-26T00:00:00\",\n        \"expiredDate\": \"2021-04-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Paul samplepin\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Broad Avenue\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 74707,\n        \"propertyAddress\": \"870 S Collier Blvd, 301, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"221003348\",\n        \"listDate\": \"2021-01-21T00:00:00\",\n        \"expiredDate\": \"2021-04-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"ML Msamplede\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 74714,\n        \"propertyAddress\": \"380 Seaview Ct, 3-505, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"221006532\",\n        \"listDate\": \"2021-02-01T00:00:00\",\n        \"expiredDate\": \"2021-04-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 74723,\n        \"propertyAddress\": \"1003 Anglers Cv, K-407, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"221008407\",\n        \"listDate\": \"2021-02-04T00:00:00\",\n        \"expiredDate\": \"2021-04-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Michelle Thomsample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 74733,\n        \"propertyAddress\": \"383 Live Oak Ln, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"221010339\",\n        \"listDate\": \"2021-03-08T00:00:00\",\n        \"expiredDate\": \"2021-04-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 74752,\n        \"propertyAddress\": \"1090 Cara Ct, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"221014045\",\n        \"listDate\": \"2021-02-25T00:00:00\",\n        \"expiredDate\": \"2021-04-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Dave Flowsamples\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 74753,\n        \"propertyAddress\": \"979 Daisy Ct, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"221014738\",\n        \"listDate\": \"2021-02-26T00:00:00\",\n        \"expiredDate\": \"2021-04-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cullen Ssampleughnessy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 74759,\n        \"propertyAddress\": \"220 S Collier Blvd, 403, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"221016160\",\n        \"listDate\": \"2021-03-03T00:00:00\",\n        \"expiredDate\": \"2021-04-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Vince Cosamplece\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 74762,\n        \"propertyAddress\": \"327 N Barfield Dr, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"221016438\",\n        \"listDate\": \"2021-03-17T00:00:00\",\n        \"expiredDate\": \"2021-04-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Darlene sampleddy\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 74765,\n        \"propertyAddress\": \"260 Seaview Ct, 1507, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"221016850\",\n        \"listDate\": \"2021-03-05T00:00:00\",\n        \"expiredDate\": \"2021-04-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Julie Wsamplessample\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 74778,\n        \"propertyAddress\": \"4000 Royal Marco Way, 623, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"221019765\",\n        \"listDate\": \"2021-03-22T00:00:00\",\n        \"expiredDate\": \"2021-04-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Cathy samplegers\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 74792,\n        \"propertyAddress\": \"899 Caxambas Dr, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"221021606\",\n        \"listDate\": \"2021-03-26T00:00:00\",\n        \"expiredDate\": \"2021-04-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 74805,\n        \"propertyAddress\": \"970 Maple Ct, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"221022497\",\n        \"listDate\": \"2021-03-26T00:00:00\",\n        \"expiredDate\": \"2021-04-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Jim Psamplenge\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 74812,\n        \"propertyAddress\": \"440 Seaview Ct, 1205, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"221022816\",\n        \"listDate\": \"2021-03-26T00:00:00\",\n        \"expiredDate\": \"2021-04-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 74813,\n        \"propertyAddress\": \"176 S Collier Blvd, 803, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"221022848\",\n        \"listDate\": \"2021-03-26T00:00:00\",\n        \"expiredDate\": \"2021-04-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Angelica samplerews\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 74820,\n        \"propertyAddress\": \"1160 Marlin Ct, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"221023655\",\n        \"listDate\": \"2021-03-29T00:00:00\",\n        \"expiredDate\": \"2021-04-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 74825,\n        \"propertyAddress\": \"253 2nd Ave, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"221024228\",\n        \"listDate\": \"2021-04-01T00:00:00\",\n        \"expiredDate\": \"2021-04-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Angelica samplerews\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    },\n    {\n        \"propertyId\": 74840,\n        \"propertyAddress\": \"471 Pepperwood Ct, Marco Island, FL, 34145\",\n        \"status\": \"Expired\",\n        \"mlsNumber1\": \"221025661\",\n        \"listDate\": \"2021-04-06T00:00:00\",\n        \"expiredDate\": \"2021-04-08T00:00:00\",\n        \"withdrawnDate\": null,\n        \"pendingDate\": null,\n        \"cancelDate\": null,\n        \"estimatedClosingDate\": null,\n        \"processedDate\": null,\n        \"closingDate\": null,\n        \"listAgent\": \"Larry Csampleuso\",\n        \"sellAgent\": null,\n        \"listOffice\": \"Mansfield\",\n        \"sellOffice\": null,\n        \"companyName\": \"Company 1\"\n    }\n]"}],"_postman_id":"1b7311e4-7b8b-4e40-b79a-9aeafd8dc9e3"},{"name":"Property Report","event":[{"listen":"prerequest","script":{"id":"8b71c7e9-12ee-463b-8322-d3101f2cc026","exec":["pm.environment.set(\"propertyId\",0);\r","pm.environment.set(\"dateType\",1);\r","pm.environment.set(\"companyId\",1);\r","pm.environment.set(\"dateStart\",\"2010-03-04 08:10\");\r","pm.environment.set(\"dateEnd\",\"2024-03-04 08:10\");\r","pm.environment.set(\"personProviderType\",\"\");\r","pm.environment.set(\"statusToShow\",\"\");"],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"test","script":{"id":"e1bcd119-3d5d-470c-91ab-518a5bdc75e4","exec":[""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"63e13877-f12f-413e-b68b-e408ea078369","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://{{base_url}}/api/propertyreport?PropertyId={{propertyId}}&officeID={{officeId}}&companyID={{companyId}}&showBasicInfo={{showBasicInfo}}&showAgentNetList={{showAgentNetList}}&showAgentNetSell={{showAgentNetSell}}&showSellerInfo={{showSellerInfo}}&showBuyerInfo={{showBuyerInfo}}&showPeople={{showPeople}}&showFeatures={{showFeatures}}&showRemarks={{showRemarks}}&showRooms={{showRooms}}&showMedia={{showMedia}}&showOpenHouses={{showOpenHouses}}&showShowings={{showShowings}}&showTasks={{showTasks}}&showDocuments={{showDocuments}}&show3rdPartyPayments={{show3rdPartyPayments}}&showReimbs={{showReimbs}}&showReferrals={{showReferrals}}&showExtraVouchers={{showExtravouchers}}&showOverrides={{showOverrides}}&showAccounting={{showAccounting}}&showFinancing={{showFinancing}}&showDeleted={{showDeleted}}&showCustomFields={{showCustomFields}}&statusToShow={{statusToShow}}&providerType={{providerType}}&personProviderType={{personProviderType}}&dateType={{dateType}}&dateStart={{dateStart}}&dateEnd={{dateEnd}}&pageSize={{pageSize}}&pageIndex={{pageIndex}}&listOffice={{listOffice}}&sellOffice={{sellOffice}}&listAgent={{listAgent}}&sellAgent={{sellAgent}}&sellerSendSurveyDelivery={{sellerSendSurveyDelivery}}&buyerSendSurveyDelivery={{buyerSendSurveyDelivery}}&agentOfficeID=0&agentID={{agentID}}","description":"<p>This Resource will allow you to pull the list of properties filtered by different parameters such as propertyId, companyId, officeId, date, etc; also it will allow you to get additional information for each property, such as features, people, remarks, totals, showings, open houses, etc.</p>\n<p>It returns in response a more comprehensive list of fields that the other property search resources. And it allows to determine which sections of information will be retrieved.</p>\n","urlObject":{"protocol":"https","path":["api","propertyreport"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>This is the unique identifier of the property</p>\n","type":"text/plain"},"key":"PropertyId","value":"{{propertyId}}"},{"description":{"content":"<p>Darwin internal ID of the office to filter on (you can find this ID logging into Darwin application).</p>\n<p>If not passed, properties from all offices will be retrieved.</p>\n<p>If an Id is passed, any property whose any of its agents belong to the given office will be retrieved</p>\n<p>If used together with the companyID parameter, it will retrieve all properties within a given office within a given company</p>\n","type":"text/plain"},"key":"officeID","value":"{{officeId}}"},{"description":{"content":"<p>Darwin internal ID of the company (legal entity) to filter on.</p>\n<p>If not passed, properties from all legal entities will be retrieved.</p>\n<p>If used together with the officeID parameter, it will retrieve all properties within a given office within a given company</p>\n","type":"text/plain"},"key":"companyID","value":"{{companyId}}"},{"description":{"content":"<p>Retrieves fields from the Darwin <b>Property Basics</b> section.\nPossible values are 1 or 0.</p>\n<ul>\n<li>1 means the fields of this section will be retrieved </li>\n<li>0 means the fields of this section will not be retrieved</li>\n</ul>\n<p><b>NOTE: </b> see JSON response example for a complete list of fields in this section</p>\n","type":"text/plain"},"key":"showBasicInfo","value":"{{showBasicInfo}}"},{"description":{"content":"<p>Retrieves fields from the Darwin Property <b>Agent Net List</b> section.\nPossible values are 1 or 0.</p>\n<ul>\n<li>1 means the fields of this section will be retrieved </li>\n<li>0 means the fields of this section will not be retrieved</li>\n</ul>\n<p><b>NOTE: </b> see JSON response example for a complete list of fields in this section</p>\n","type":"text/plain"},"key":"showAgentNetList","value":"{{showAgentNetList}}"},{"description":{"content":"<p>Retrieves fields from the Darwin Property <b>Agent Net Sell</b> section.\nPossible values are 1 or 0.</p>\n<ul>\n<li>1 means the fields of this section will be retrieved </li>\n<li>0 means the fields of this section will not be retrieved</li>\n</ul>\n<p><b>NOTE: </b> see JSON response example for a complete list of fields in this section</p>\n","type":"text/plain"},"key":"showAgentNetSell","value":"{{showAgentNetSell}}"},{"description":{"content":"<p>Retrieves fields from the Darwin <b>Property Seller</b> Info section.\nPossible values are 1 or 0.</p>\n<ul>\n<li>1 means the fields of this section will be retrieved </li>\n<li>0 means the fields of this section will not be retrieved</li>\n</ul>\n<p><b>NOTE: </b> see JSON response example for a complete list of fields in this section</p>\n","type":"text/plain"},"key":"showSellerInfo","value":"{{showSellerInfo}}"},{"description":{"content":"<p>Retrieves fields from the Darwin <b>Property Buyer</b> Info section.\nPossible values are 1 or 0.</p>\n<ul>\n<li>1 means the fields of this section will be retrieved </li>\n<li>0 means the fields of this section will not be retrieved</li>\n</ul>\n<p><b>NOTE: </b> see JSON response example for a complete list of fields in this section</p>\n","type":"text/plain"},"key":"showBuyerInfo","value":"{{showBuyerInfo}}"},{"description":{"content":"<p>Retrieves fields from the Darwin <b>Property People</b> section (attorneys, home inspectors, appraisers, ecc.). </p>\n<p>Possible values are 1 or 0.</p>\n<ul>\n<li>1 means the fields of this section will be retrieved </li>\n<li>0 means the fields of this section will not be retrieved</li>\n</ul>\n<p>If this parameter is not provided, 0 will be assumed</p>\n","type":"text/plain"},"key":"showPeople","value":"{{showPeople}}"},{"description":{"content":"<p>Retrieves fields from the Darwin <b>Property Features</b> section.\nPossible values are 1 or 0.</p>\n<ul>\n<li>1 means the fields of this section will be retrieved </li>\n<li>0 means the fields of this section will not be retrieved</li>\n</ul>\n<p><b>NOTE: </b> see JSON response example for a complete list of fields in this section</p>\n","type":"text/plain"},"key":"showFeatures","value":"{{showFeatures}}"},{"description":{"content":"<p>Retrieves fields from the Darwin <b>Property Remarks</b> section.\nPossible values are 1 or 0.</p>\n<ul>\n<li>1 means the fields of this section will be retrieved </li>\n<li>0 means the fields of this section will not be retrieved</li>\n</ul>\n<p><b>NOTE: </b> see JSON response example for a complete list of fields in this section</p>\n","type":"text/plain"},"key":"showRemarks","value":"{{showRemarks}}"},{"description":{"content":"<p>Retrieves fields from the Darwin <b>Property Rooms</b> section.\nPossible values are 1 or 0.</p>\n<ul>\n<li>1 means the fields of this section will be retrieved </li>\n<li>0 means the fields of this section will not be retrieved</li>\n</ul>\n<p><b>NOTE: </b> see JSON response example for a complete list of fields in this section</p>\n","type":"text/plain"},"key":"showRooms","value":"{{showRooms}}"},{"description":{"content":"<p>Retrieves fields from the Darwin <b>Property Media</b> section.\nPossible values are 1 or 0.</p>\n<ul>\n<li>1 means the fields of this section will be retrieved </li>\n<li>0 means the fields of this section will not be retrieved</li>\n</ul>\n<p><b>NOTE: </b> see JSON response example for a complete list of fields in this section</p>\n","type":"text/plain"},"key":"showMedia","value":"{{showMedia}}"},{"description":{"content":"<p>Retrieves fields from the Darwin <b>Property Open Houses</b> section.\nPossible values are 1 or 0.</p>\n<ul>\n<li>1 means the fields of this section will be retrieved </li>\n<li>0 means the fields of this section will not be retrieved</li>\n</ul>\n<p><b>NOTE: </b> see JSON response example for a complete list of fields in this section</p>\n","type":"text/plain"},"key":"showOpenHouses","value":"{{showOpenHouses}}"},{"description":{"content":"<p>Retrieves fields from the Darwin <b>Property Showings</b> section.\nPossible values are 1 or 0.</p>\n<ul>\n<li>1 means the fields of this section will be retrieved </li>\n<li>0 means the fields of this section will not be retrieved</li>\n</ul>\n<p><b>NOTE: </b> see JSON response example for a complete list of fields in this section</p>\n","type":"text/plain"},"key":"showShowings","value":"{{showShowings}}"},{"description":{"content":"<p>Retrieves fields from the Darwin <b>Property Tasks</b> section.\nPossible values are 1 or 0.</p>\n<ul>\n<li>1 means the fields of this section will be retrieved </li>\n<li>0 means the fields of this section will not be retrieved</li>\n</ul>\n<p><b>NOTE: </b> see JSON response example for a complete list of fields in this section</p>\n","type":"text/plain"},"key":"showTasks","value":"{{showTasks}}"},{"description":{"content":"<p>Retrieves fields from the Darwin <b>Property Documents</b> section.\nPossible values are 1 or 0.</p>\n<ul>\n<li>1 means the fields of this section will be retrieved </li>\n<li>0 means the fields of this section will not be retrieved</li>\n</ul>\n<p><b>NOTE: </b> see JSON response example for a complete list of fields in this section</p>\n","type":"text/plain"},"key":"showDocuments","value":"{{showDocuments}}"},{"description":{"content":"<p>Retrieves fields from the Darwin <b>Property 3rd Party payments</b> section.\nPossible values are 1 or 0.</p>\n<ul>\n<li>1 means the fields of this section will be retrieved </li>\n<li>0 means the fields of this section will not be retrieved</li>\n</ul>\n<p><b>NOTE: </b> see JSON response example for a complete list of fields in this section</p>\n","type":"text/plain"},"key":"show3rdPartyPayments","value":"{{show3rdPartyPayments}}"},{"description":{"content":"<p>Retrieves fields from the Darwin <b>Property Reimbursement</b> section.\nPossible values are 1 or 0.</p>\n<ul>\n<li>1 means the fields of this section will be retrieved </li>\n<li>0 means the fields of this section will not be retrieved</li>\n</ul>\n<p><b>NOTE: </b> see JSON response example for a complete list of fields in this section</p>\n","type":"text/plain"},"key":"showReimbs","value":"{{showReimbs}}"},{"description":{"content":"<p>Retrieves fields from the Darwin <b>Property Referral</b> section.\nPossible values are 1 or 0.</p>\n<ul>\n<li>1 means the fields of this section will be retrieved </li>\n<li>0 means the fields of this section will not be retrieved</li>\n</ul>\n<p><b>NOTE: </b> see JSON response example for a complete list of fields in this section</p>\n","type":"text/plain"},"key":"showReferrals","value":"{{showReferrals}}"},{"description":{"content":"<p>Retrieves fields from the Darwin <b>Property Extra vouchers</b> section.\nPossible values are 1 or 0.</p>\n<ul>\n<li>1 means the fields of this section will be retrieved </li>\n<li>0 means the fields of this section will not be retrieved</li>\n</ul>\n<p><b>NOTE: </b> see JSON response example for a complete list of fields in this section</p>\n","type":"text/plain"},"key":"showExtraVouchers","value":"{{showExtravouchers}}"},{"description":{"content":"<p>Retrieves fields from the Darwin <b>Property Overrides</b> section.\nPossible values are 1 or 0.</p>\n<ul>\n<li>1 means the fields of this section will be retrieved </li>\n<li>0 means the fields of this section will not be retrieved</li>\n</ul>\n<p><b>NOTE: </b> see JSON response example for a complete list of fields in this section</p>\n","type":"text/plain"},"key":"showOverrides","value":"{{showOverrides}}"},{"description":{"content":"<p>Retrieves the related accounting data generated when the property was posted (closed) in Darwin. Includes: invoice, vouchers, AP Payments, AR Payments and deposits</p>\n<ul>\n<li>1 means the fields of this section will be retrieved </li>\n<li>0 means the fields of this section will not be retrieved</li>\n</ul>\n<p><b>NOTE: </b> see JSON response example for a complete list of fields in this section</p>\n","type":"text/plain"},"key":"showAccounting","value":"{{showAccounting}}"},{"description":{"content":"<p>Retrieves the financing information of the property in a section called <b>Property Financing</b> Info section.</p>\n<p>Possible values are 1 or 0.</p>\n<ul>\n<li>1 means the fields of this section will be retrieved </li>\n<li>0 means the fields of this section will not be retrieved</li>\n</ul>\n<p><b>NOTE: </b> see JSON response example for a complete list of fields in this section</p>\n","type":"text/plain"},"key":"showFinancing","value":"{{showFinancing}}"},{"description":{"content":"<p>Determines whether or not to retrieve properties that have been removed from Darwin (useful for incremental updates).</p>\n<p>Possible values are 1 or 0.</p>\n<ul>\n<li>1 means the deleted properties will be included </li>\n<li>0 means the deleted properties will be excluded</li>\n</ul>\n<p>If this parameter is not provided, 0 will be assumed</p>\n","type":"text/plain"},"key":"showDeleted","value":"{{showDeleted}}"},{"description":{"content":"<p>Retrieves the custom fields information of the property in a section called <b>Property Custom Field</b> Info section.</p>\n<p>Possible values are 1 or 0.</p>\n<ul>\n<li>1 means the fields of this section will be retrieved </li>\n<li>0 means the fields of this section will not be retrieved</li>\n</ul>\n<p><b>NOTE: </b> see JSON response example for a complete list of fields in this section</p>\n","type":"text/plain"},"key":"showCustomFields","value":"{{showCustomFields}}"},{"description":{"content":"<p>Used to filter the results to only retrieve properties in certain statuses. It could be a list of status codes separated by commas</p>\n<p>Example ‘AC, CL’</p>\n<p>IF nothing is passed, it will retrieve all properties with no status filter.</p>\n","type":"text/plain"},"key":"statusToShow","value":"{{statusToShow}}"},{"description":{"content":"<p>Used to filter properties that were brought into the Darwin system by a specific provider (eRELO, dotLoop o skypeSlope).</p>\n<p>eRELO, dotLoop and skyslope are the only ones supported so far.</p>\n","type":"text/plain"},"key":"providerType","value":"{{providerType}}"},{"description":{"content":"<p>Used to filter buyer/seller in the properties that were brought into the Darwin system by a specific provider (eRELO, dotLoop o skypeSlope).</p>\n","type":"text/plain"},"key":"personProviderType","value":"{{personProviderType}}"},{"description":{"content":"<p>Represents the type of date to use for filtering in a given date range.\nIt is used together with dateStart and dateEnd parameters</p>\n<ul>\n<li>1 means no date type will be used</li>\n<li>2 means listDate will be used to filter by date range</li>\n<li>3 means pendingDate will be used to filter by date range</li>\n<li>4 means expireDate will be used to filter by date range</li>\n<li>5 means cancelDate will be used to filter by date range</li>\n<li>6 means expectClosingDate will be used to filter by date range</li>\n<li>7 means processedDate will be used to filter by date range</li>\n<li>8 means closingDate will be used to filter by date range</li>\n<li>9 means createDate will be used to filter by date range</li>\n<li>10 means modifyDate will be used to filter by date range</li>\n</ul>\n","type":"text/plain"},"key":"dateType","value":"{{dateType}}"},{"description":{"content":"<p>Start date to filter the property data.</p>\n","type":"text/plain"},"key":"dateStart","value":"{{dateStart}}"},{"description":{"content":"<p>End date to filter the property data.</p>\n","type":"text/plain"},"key":"dateEnd","value":"{{dateEnd}}"},{"description":{"content":"<p>Determines the number of property entries that will be retrieved on every request. Could be any value from 1 to 100</p>\n","type":"text/plain"},"key":"pageSize","value":"{{pageSize}}"},{"description":{"content":"<p>Represents the page number that will be retrieved. Starts in zero.\nIf nothing is passed, it will assume page zero.\nIf -1 is passed, it will retrieve all records at once.</p>\n","type":"text/plain"},"key":"pageIndex","value":"{{pageIndex}}"},{"description":{"content":"<p>Filter properties where a list agent belongs to the specified office name (exact match).</p>\n<ul>\n<li>Example: <code>Dorchester</code></li>\n</ul>\n","type":"text/plain"},"key":"listOffice","value":"{{listOffice}}"},{"description":{"content":"<p>Filter properties where a sell agent belongs to the specified office name (exact match).</p>\n<ul>\n<li>Example: <code>Mansfield</code></li>\n</ul>\n","type":"text/plain"},"key":"sellOffice","value":"{{sellOffice}}"},{"description":{"content":"<p>Filter properties with a list agent matching the provided name exactly.</p>\n<ul>\n<li>Example: <code>John Smith</code></li>\n</ul>\n","type":"text/plain"},"key":"listAgent","value":"{{listAgent}}"},{"description":{"content":"<p>Filter properties with a sell agent matching the provided name exactly.</p>\n<ul>\n<li>Example: <code>Jane Doe</code></li>\n</ul>\n","type":"text/plain"},"key":"sellAgent","value":"{{sellAgent}}"},{"description":{"content":"<p>Filters the results to only retrieve properties with sellers with the send survey flag enabled (1) or disabled (0). </p>\n<p>If not used (when this parameters is empty), it will be used as a filter.</p>\n<p>Possible values are 1 or 0.</p>\n","type":"text/plain"},"key":"sellerSendSurveyDelivery","value":"{{sellerSendSurveyDelivery}}"},{"description":{"content":"<p>Filters the results to only retrieve properties with buyers with the send survey flag enabled (1) or disabled (0). </p>\n<p>If not used (when this parameters is empty), it will be used as a filter.</p>\n<p>Possible values are 1 or 0.</p>\n","type":"text/plain"},"key":"buyerSendSurveyDelivery","value":"{{buyerSendSurveyDelivery}}"},{"description":{"content":"<p>Darwin internal ID of the reporting office to filter on (you can find this ID logging into Darwin application).\nIf not passed, properties from all reporting offices will be retrieved.\nIf an Id is passed, any property whose any of its agents belong to the given reporting office will be retrieved</p>\n","type":"text/plain"},"key":"agentOfficeID","value":"0"},{"description":{"content":"<p>it will retrieve properties where the agent is included</p>\n<p>By default it is 0.</p>\n<p>If left with 0, this filter is not applied.</p>\n","type":"text/plain"},"key":"agentID","value":"{{agentID}}"}],"variable":[]}},"response":[{"id":"b0517e74-8bbd-405a-b038-93d475de797e","name":"Property Report","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"https://{{base_url}}/api/propertyreport?PropertyId={{propertyId}}&officeID={{officeId}}&companyID={{companyId}}&showBasicInfo={{showBasicInfo}}&showAgentNetList={{showAgentNetList}}&showAgentNetSell={{showAgentNetSell}}&showSellerInfo={{showSellerInfo}}&showBuyerInfo={{showBuyerInfo}}&showPeople={{showPeople}}&showFeatures={{showFeatures}}&showRemarks={{showRemarks}}&showRooms={{showRooms}}&showMedia={{showMedia}}&showOpenHouses={{showOpenHouses}}&showShowings={{showShowings}}&showTasks={{showTasks}}&showDocuments={{showDocuments}}&show3rdPartyPayments={{show3rdPartyPayments}}&showReimbs={{showReimbs}}&showReferrals={{showReferrals}}&showExtraVouchers={{showExtravouchers}}&showOverrides={{showOverrides}}&showAccounting={{showAccounting}}&showFinancing={{showFinancing}}&showDeleted={{showDeleted}}&showCustomFields={{showCustomFields}}&dateType={{dateType}}&pageSize={{pageSize}}","protocol":"https","host":["{{base_url}}"],"path":["api","propertyreport"],"query":[{"key":"PropertyId","value":"{{propertyId}}","description":"This is the unique identifier of the property"},{"key":"officeID","value":"{{officeId}}","description":"Darwin internal ID of the office to filter on (you can find this ID logging into Darwin application).\n\nIf not passed, properties from all offices will be retrieved.\n\nIf an Id is passed, any property whose any of its agents belong to the given office will be retrieved\n\nIf used together with the companyID parameter, it will retrieve all properties within a given office within a given company\n"},{"key":"companyID","value":"{{companyId}}","description":"Darwin internal ID of the company (legal entity) to filter on.\n\nIf not passed, properties from all legal entities will be retrieved.\n\nIf used together with the officeID parameter, it will retrieve all properties within a given office within a given company\n"},{"key":"showBasicInfo","value":"{{showBasicInfo}}","description":"Retrieves fields from the Darwin <b>Property Basics</b> section.\nPossible values are 1 or 0.\n\n* 1 means the fields of this section will be retrieved \n* 0 means the fields of this section will not be retrieved \n\n<b>NOTE: </b> see JSON response example for a complete list of fields in this section"},{"key":"showAgentNetList","value":"{{showAgentNetList}}","description":"Retrieves fields from the Darwin Property <b>Agent Net List</b> section.\nPossible values are 1 or 0.\n\n* 1 means the fields of this section will be retrieved \n* 0 means the fields of this section will not be retrieved \n\n<b>NOTE: </b> see JSON response example for a complete list of fields in this section\n"},{"key":"showAgentNetSell","value":"{{showAgentNetSell}}","description":"Retrieves fields from the Darwin Property <b>Agent Net Sell</b> section.\nPossible values are 1 or 0.\n\n* 1 means the fields of this section will be retrieved \n* 0 means the fields of this section will not be retrieved \n\n<b>NOTE: </b> see JSON response example for a complete list of fields in this section\n"},{"key":"showSellerInfo","value":"{{showSellerInfo}}","description":"Retrieves fields from the Darwin <b>Property Seller</b> Info section.\nPossible values are 1 or 0.\n\n* 1 means the fields of this section will be retrieved \n* 0 means the fields of this section will not be retrieved \n\n<b>NOTE: </b> see JSON response example for a complete list of fields in this section\n"},{"key":"showBuyerInfo","value":"{{showBuyerInfo}}","description":"Retrieves fields from the Darwin <b>Property Buyer</b> Info section.\nPossible values are 1 or 0.\n\n* 1 means the fields of this section will be retrieved \n* 0 means the fields of this section will not be retrieved \n\n<b>NOTE: </b> see JSON response example for a complete list of fields in this section\n"},{"key":"showPeople","value":"{{showPeople}}","description":"Retrieves fields from the Darwin <b>Property People</b> section (attorneys, home inspectors, appraisers, ecc.). \n\nPossible values are 1 or 0.\n\n* 1 means the fields of this section will be retrieved \n* 0 means the fields of this section will not be retrieved \n\nIf this parameter is not provided, 0 will be assumed\n"},{"key":"showFeatures","value":"{{showFeatures}}","description":"Retrieves fields from the Darwin <b>Property Features</b> section.\nPossible values are 1 or 0.\n\n* 1 means the fields of this section will be retrieved \n* 0 means the fields of this section will not be retrieved \n\n<b>NOTE: </b> see JSON response example for a complete list of fields in this section\n"},{"key":"showRemarks","value":"{{showRemarks}}","description":"Retrieves fields from the Darwin <b>Property Remarks</b> section.\nPossible values are 1 or 0.\n\n* 1 means the fields of this section will be retrieved \n* 0 means the fields of this section will not be retrieved \n\n<b>NOTE: </b> see JSON response example for a complete list of fields in this section\n"},{"key":"showRooms","value":"{{showRooms}}","description":"Retrieves fields from the Darwin <b>Property Rooms</b> section.\nPossible values are 1 or 0.\n\n* 1 means the fields of this section will be retrieved \n* 0 means the fields of this section will not be retrieved \n\n<b>NOTE: </b> see JSON response example for a complete list of fields in this section"},{"key":"showMedia","value":"{{showMedia}}","description":"Retrieves fields from the Darwin <b>Property Media</b> section.\nPossible values are 1 or 0.\n\n* 1 means the fields of this section will be retrieved \n* 0 means the fields of this section will not be retrieved \n\n<b>NOTE: </b> see JSON response example for a complete list of fields in this section"},{"key":"showOpenHouses","value":"{{showOpenHouses}}","description":"Retrieves fields from the Darwin <b>Property Open Houses</b> section.\nPossible values are 1 or 0.\n\n* 1 means the fields of this section will be retrieved \n* 0 means the fields of this section will not be retrieved \n\n<b>NOTE: </b> see JSON response example for a complete list of fields in this section"},{"key":"showShowings","value":"{{showShowings}}","description":"Retrieves fields from the Darwin <b>Property Showings</b> section.\nPossible values are 1 or 0.\n\n* 1 means the fields of this section will be retrieved \n* 0 means the fields of this section will not be retrieved \n\n<b>NOTE: </b> see JSON response example for a complete list of fields in this section"},{"key":"showTasks","value":"{{showTasks}}","description":"Retrieves fields from the Darwin <b>Property Tasks</b> section.\nPossible values are 1 or 0.\n\n* 1 means the fields of this section will be retrieved \n* 0 means the fields of this section will not be retrieved \n\n<b>NOTE: </b> see JSON response example for a complete list of fields in this section"},{"key":"showDocuments","value":"{{showDocuments}}","description":"Retrieves fields from the Darwin <b>Property Documents</b> section.\nPossible values are 1 or 0.\n\n* 1 means the fields of this section will be retrieved \n* 0 means the fields of this section will not be retrieved \n\n<b>NOTE: </b> see JSON response example for a complete list of fields in this section"},{"key":"show3rdPartyPayments","value":"{{show3rdPartyPayments}}","description":"Retrieves fields from the Darwin <b>Property 3rd Party payments</b> section.\nPossible values are 1 or 0.\n\n* 1 means the fields of this section will be retrieved \n* 0 means the fields of this section will not be retrieved \n\n<b>NOTE: </b> see JSON response example for a complete list of fields in this section\n"},{"key":"showReimbs","value":"{{showReimbs}}","description":"Retrieves fields from the Darwin <b>Property Reimbursement</b> section.\nPossible values are 1 or 0.\n\n* 1 means the fields of this section will be retrieved \n* 0 means the fields of this section will not be retrieved \n\n<b>NOTE: </b> see JSON response example for a complete list of fields in this section\n"},{"key":"showReferrals","value":"{{showReferrals}}","description":"Retrieves fields from the Darwin <b>Property Referral</b> section.\nPossible values are 1 or 0.\n\n* 1 means the fields of this section will be retrieved \n* 0 means the fields of this section will not be retrieved \n\n<b>NOTE: </b> see JSON response example for a complete list of fields in this section"},{"key":"showExtraVouchers","value":"{{showExtravouchers}}","description":"Retrieves fields from the Darwin <b>Property Extra vouchers</b> section.\nPossible values are 1 or 0.\n\n* 1 means the fields of this section will be retrieved \n* 0 means the fields of this section will not be retrieved \n\n<b>NOTE: </b> see JSON response example for a complete list of fields in this section\n"},{"key":"showOverrides","value":"{{showOverrides}}","description":"Retrieves fields from the Darwin <b>Property Overrides</b> section.\nPossible values are 1 or 0.\n\n* 1 means the fields of this section will be retrieved \n* 0 means the fields of this section will not be retrieved \n\n<b>NOTE: </b> see JSON response example for a complete list of fields in this section"},{"key":"showAccounting","value":"{{showAccounting}}","description":"Retrieves the related accounting data generated when the property was posted (closed) in Darwin. Includes: invoice, vouchers, AP Payments, AR Payments and deposits\n\n* 1 means the fields of this section will be retrieved \n* 0 means the fields of this section will not be retrieved \n\n<b>NOTE: </b> see JSON response example for a complete list of fields in this section"},{"key":"showFinancing","value":"{{showFinancing}}","description":"Retrieves the financing information of the property in a section called <b>Property Financing</b> Info section.\n\n\nPossible values are 1 or 0.\n\n* 1 means the fields of this section will be retrieved \n* 0 means the fields of this section will not be retrieved \n\n<b>NOTE: </b> see JSON response example for a complete list of fields in this section"},{"key":"showDeleted","value":"{{showDeleted}}","description":"Determines whether or not to retrieve properties that have been removed from Darwin (useful for incremental updates).\n\nPossible values are 1 or 0.\n\n* 1 means the deleted properties will be included \n* 0 means the deleted properties will be excluded \n\nIf this parameter is not provided, 0 will be assumed"},{"key":"showCustomFields","value":"{{showCustomFields}}","description":"Retrieves the custom fields information of the property in a section called <b>Property Custom Field</b> Info section.\n\n\nPossible values are 1 or 0.\n\n* 1 means the fields of this section will be retrieved \n* 0 means the fields of this section will not be retrieved \n\n<b>NOTE: </b> see JSON response example for a complete list of fields in this section"},{"key":"statusToShow","value":"{{statusToShow}}","description":"Used to filter the results to only retrieve properties in certain statuses. It could be a list of status codes separated by commas\n\nExample ‘AC, CL’\n\nIF nothing is passed, it will retrieve all properties with no status filter.","disabled":true},{"key":"providerType","value":"{{providerType}}","description":"Used to filter properties that were brought into the Darwin system by a specific provider (eRELO, dotLoop o skypeSlope).\n\neRELO, dotLoop and skyslope are the only ones supported so far.","disabled":true},{"key":"personProviderType","value":"{{personProviderType}}","description":"Used to filter buyer/seller in the properties that were brought into the Darwin system by a specific provider (eRELO, dotLoop o skypeSlope).","disabled":true},{"key":"dateType","value":"{{dateType}}","description":"Represents the type of date to use for filtering in a given date range.\nIt is used together with dateStart and dateEnd parameters\n\n* 1 means no date type will be used\n* 2 means listDate will be used to filter by date range\n* 3 means pendingDate will be used to filter by date range\n* 4 means expireDate will be used to filter by date range\n* 5 means cancelDate will be used to filter by date range\n* 6 means expectClosingDate will be used to filter by date range\n* 7 means processedDate will be used to filter by date range\n* 8 means closingDate will be used to filter by date range\n* 9 means createDate will be used to filter by date range\n* 10 means modifyDate will be used to filter by date range"},{"key":"dateStart","value":"{{dateStart}}","description":"Start date to filter the property data.","disabled":true},{"key":"dateEnd","value":"{{dateEnd}}","description":"End date to filter the property data.","disabled":true},{"key":"pageSize","value":"{{pageSize}}","description":"Determines the number of property entries that will be retrieved on every request. Could be any value from 1 to 100"},{"key":"pageIndex","value":"{{pageIndex}}","description":"Represents the page number that will be retrieved. Starts in zero.\nIf nothing is passed, it will assume page zero.\nIf -1 is passed, it will retrieve all records at once.","disabled":true},{"key":"listOffice","value":"{{listOffice}}","description":"A text value that determines what property whose any of its list agents belong to the given office will be retrieved (Ex. Dorchester, Mansfield, ecc.)\n\nIf not passed, properties from all offices will be retrieved.","disabled":true},{"key":"sellOffice","value":"{{sellOffice}}","description":"A text value that determines what property whose any of its sell agents belong to the given office will be retrieved (Ex. Dorchester, Mansfield, ecc.)\n\nIf not passed, properties from all offices will be retrieved.","disabled":true},{"key":"listAgent","value":"{{listAgent}}","description":"A text value that determines what property whose any of its list agents belong to the given specific agent will be retrieved.","disabled":true},{"key":"sellAgent","value":"{{sellAgent}}","description":"A text value that determines what property whose any of its sell agents belong to the given specific agent will be retrieved.","disabled":true},{"key":"sellerSendSurveyDelivery","value":"{{sellerSendSurveyDelivery}}","description":"Filters the results to only retrieve properties with sellers with the send survey flag enabled (1) or disabled (0). \n\nIf not used (when this parameters is empty), it will be used as a filter.\n\n\nPossible values are 1 or 0.\n","disabled":true},{"key":"buyerSendSurveyDelivery","value":"{{buyerSendSurveyDelivery}}","description":"Filters the results to only retrieve properties with buyers with the send survey flag enabled (1) or disabled (0). \n\nIf not used (when this parameters is empty), it will be used as a filter.\n\n\nPossible values are 1 or 0.\n","disabled":true},{"key":"agentOfficeID","value":"0","description":"Darwin internal ID of the reporting office to filter on (you can find this ID logging into Darwin application).\nIf not passed, properties from all reporting offices will be retrieved.\nIf an Id is passed, any property whose any of its agents belong to the given reporting office will be retrieved","disabled":true},{"key":"agentID","value":"{{agentID}}","description":"it will retrieve properties where the agent is included\n\nBy default it is 0.\n\nIf left with 0, this filter is not applied.","disabled":true}]}},"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":"Server","value":"Kestrel"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 15 Sep 2023 18:19:30 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"propertyId\": 1,\n        \"propertyAddress\": \"1222 Gordon Drive #20\",\n        \"mlsNumber1\": \"210036190\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:15\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2023-08-18 03:04\",\n        \"modifyBy\": \"ATBIAPP\\\\lucho\",\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 1,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": null,\n                \"streetDirection\": null,\n                \"streetName\": \"1222 Gordon Drive #20\",\n                \"streetDesignation\": null,\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": null,\n                \"buildingFloorNumber\": null,\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"34102\",\n                \"trType\": \"IH\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 385000,\n                \"sellingPrice\": 385000,\n                \"listingPricePrior\": null,\n                \"listingPrice\": 454000,\n                \"listCommission\": 11550,\n                \"sellCommission\": 11550,\n                \"refListCommission\": 0,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": false,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2010-11-01\",\n                \"expiredDate\": \"2011-10-30\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2011-05-17\",\n                \"estimatedClosingDate\": \"2011-07-16\",\n                \"cancelDate\": null,\n                \"closingDate\": null,\n                \"processedDate\": \"2011-06-09\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000005\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": null,\n                \"classification\": null,\n                \"propertyType\": \"Condominium\",\n                \"propertyUse\": \"Owner Occupied\",\n                \"development\": null,\n                \"neigborhoodName\": \"\",\n                \"propertyLocation\": \"THE PIERRE CLUB #20\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"2\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"1160\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"0\",\n                \"taxYear\": \"0\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"4435.00\",\n                \"transactionID\": \"0001000000000005\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 1,\n                \"propertyID\": 1,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 59086,\n                \"agent_ATGUID\": \"82EB73E2-049B-4B0C-A147-BFCF13FB4EE2\",\n                \"agent_FullName\": \"Lodge McKsample, II\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 1,\n                \"agent_Gross\": 11550,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 11550,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            },\n            {\n                \"propertyDeductionID\": 86136,\n                \"propertyID\": 1,\n                \"agent_officeID\": 19,\n                \"agent_officeName\": \"Dorchester\",\n                \"agent_PersonID\": 71821,\n                \"agent_ATGUID\": \"18EA1C8B-082A-4482-88A0-B9182A92E9F7\",\n                \"agent_FullName\": \"Abby sample-Yetter (Sothebys Syracuse)\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 2,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 0,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 19,\n                \"agent_ReportingOffice\": \"Dorchester\"\n            },\n            {\n                \"propertyDeductionID\": 86137,\n                \"propertyID\": 1,\n                \"agent_officeID\": 5,\n                \"agent_officeName\": \"Concord\",\n                \"agent_PersonID\": 173166,\n                \"agent_ATGUID\": \"1C810D08-78D9-4890-B1FD-1D4D16C22268\",\n                \"agent_FullName\": \"Adam  Anderson\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 3,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 0,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            },\n            {\n                \"propertyDeductionID\": 86138,\n                \"propertyID\": 1,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 173164,\n                \"agent_ATGUID\": \"3BE9CC4C-5C96-4207-A85D-4B2516215C06\",\n                \"agent_FullName\": \"Adrianne  Boston (Sothebys Syracusedqw)\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 4,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 0,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            },\n            {\n                \"propertyDeductionID\": 86139,\n                \"propertyID\": 1,\n                \"agent_officeID\": 19,\n                \"agent_officeName\": \"Dorchester\",\n                \"agent_PersonID\": 71823,\n                \"agent_ATGUID\": \"93F26321-2D7C-446D-AE14-1969314E9123\",\n                \"agent_FullName\": \"Adrienne Yosampleg, P.A. (Young, Inc.)\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 5,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 0,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 19,\n                \"agent_ReportingOffice\": \"Dorchester\"\n            },\n            {\n                \"propertyDeductionID\": 86140,\n                \"propertyID\": 1,\n                \"agent_officeID\": 19,\n                \"agent_officeName\": \"Dorchester\",\n                \"agent_PersonID\": 71825,\n                \"agent_ATGUID\": \"D7FA2E5C-A98A-4B20-BB93-1B86833F62FB\",\n                \"agent_FullName\": \"Agnes Zsamplek (Sothebys Syracuse)\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 6,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 0,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 19,\n                \"agent_ReportingOffice\": \"Dorchester\"\n            },\n            {\n                \"propertyDeductionID\": 86141,\n                \"propertyID\": 1,\n                \"agent_officeID\": 9,\n                \"agent_officeName\": \"Lexington\",\n                \"agent_PersonID\": 173165,\n                \"agent_ATGUID\": \"55F9C938-E7A0-48C3-9311-E55321ADCA29\",\n                \"agent_FullName\": \"Albert Livaudais, Jr. (Sothebys Syracuse)\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 7,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 0,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            },\n            {\n                \"propertyDeductionID\": 86142,\n                \"propertyID\": 1,\n                \"agent_officeID\": 8,\n                \"agent_officeName\": \"Fairfield\",\n                \"agent_PersonID\": 52494,\n                \"agent_ATGUID\": \"392FF435-9BED-4784-8F3C-04AAD910480B\",\n                \"agent_FullName\": \"Albert Lsampleez\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 8,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 0,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 8,\n                \"agent_ReportingOffice\": \"Fairfield\"\n            },\n            {\n                \"propertyDeductionID\": 86143,\n                \"propertyID\": 1,\n                \"agent_officeID\": 20,\n                \"agent_officeName\": \"Bay Village\",\n                \"agent_PersonID\": 33461,\n                \"agent_ATGUID\": \"E0DC65B0-A04B-4A47-9908-92A8B5B33A33\",\n                \"agent_FullName\": \"Alex Csampleement (Sothebys Syracuse)\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 9,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 0,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 20,\n                \"agent_ReportingOffice\": \"Bay Village\"\n            },\n            {\n                \"propertyDeductionID\": 86144,\n                \"propertyID\": 1,\n                \"agent_officeID\": 16,\n                \"agent_officeName\": \"Rentals\",\n                \"agent_PersonID\": 65399,\n                \"agent_ATGUID\": \"811A2C01-B380-4666-9021-19479AE9A958\",\n                \"agent_FullName\": \"Alyssa sampleppucci (Sothebys Syracuse)\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 10,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 0,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": [\n            {\n                \"propertyDeductionID\": 2,\n                \"propertyID\": 1,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71805,\n                \"agent_ATGUID\": \"6575E716-01EA-4DBB-9909-D7BA05F16AC8\",\n                \"agent_FullName\": \"Virginia Wsamplessample\",\n                \"personType\": \"agent\",\n                \"side\": \"S\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 1,\n                \"agent_Gross\": 11550,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 11550,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyBuyerInfo\": null,\n        \"propertySellerInfo\": [\n            {\n                \"propertyId\": 1,\n                \"sellerPersonId\": 66324,\n                \"sellerPersonName\": \"ANN T Schutt\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"1222 Gordon Drive #20 \",\n                \"selleremailAddress\": \"\",\n                \"sellerCity\": \"Naples\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"34102\",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertyPeopleInfo\": null,\n        \"propertyFeaturesInfo\": null,\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": null,\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 1,\n                \"financeType\": null,\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 2,\n        \"propertyAddress\": \"3303 GIN Lane, Naples, FL 34102-7810\",\n        \"mlsNumber1\": \"209043930\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:15\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2023-08-18 03:05\",\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 2,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": \"3303\",\n                \"streetDirection\": null,\n                \"streetName\": \"GIN\",\n                \"streetDesignation\": \"LN\",\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": null,\n                \"buildingFloorNumber\": null,\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"34102-7810\",\n                \"trType\": \"IH\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 3200000,\n                \"sellingPrice\": 3200000,\n                \"listingPricePrior\": 3750000,\n                \"listingPrice\": 3500000,\n                \"listCommission\": 64000,\n                \"sellCommission\": 64000,\n                \"refListCommission\": 0,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2009-12-28\",\n                \"expiredDate\": \"2012-04-30\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2012-02-11\",\n                \"estimatedClosingDate\": \"2012-03-30\",\n                \"cancelDate\": null,\n                \"closingDate\": \"2012-03-30\",\n                \"processedDate\": \"2012-04-04\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000007\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": null,\n                \"classification\": null,\n                \"propertyType\": \"Single Family Home\",\n                \"propertyUse\": \"Owner Occupied\",\n                \"development\": \"PORT ROYAL\",\n                \"neigborhoodName\": \"PORT ROYAL\",\n                \"propertyLocation\": \"GIN LANE AT PORT ROYAL\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"3\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"4065\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"1985\",\n                \"taxYear\": \"2011\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"27535.83\",\n                \"transactionID\": \"0001000000000007\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 3,\n                \"propertyID\": 2,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71741,\n                \"agent_ATGUID\": \"294DBD60-541B-4855-AFCF-2DAAFDEF2FE1\",\n                \"agent_FullName\": \"Ruth Trettsample\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 1,\n                \"agent_Gross\": 64000,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 3840,\n                \"agent_Deduct3\": 8960,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 51100,\n                \"agent_BillDeduct\": 100,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 8960,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": [\n            {\n                \"propertyDeductionID\": 4,\n                \"propertyID\": 2,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71741,\n                \"agent_ATGUID\": \"294DBD60-541B-4855-AFCF-2DAAFDEF2FE1\",\n                \"agent_FullName\": \"Ruth Trettsample\",\n                \"personType\": \"agent\",\n                \"side\": \"S\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 1,\n                \"agent_Gross\": 64000,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 3840,\n                \"agent_Deduct3\": 8960,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 50246.01,\n                \"agent_BillDeduct\": 953.99,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 8960,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyBuyerInfo\": [\n            {\n                \"propertyId\": 2,\n                \"buyerPersonId\": 17637,\n                \"buyerPersonName\": \"PATRICIA MORRIS\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"409 N. Point Rd #602 \",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": \"Osprey\",\n                \"buyerState\": \"FL\",\n                \"buyerZip\": \"34229\",\n                \"buyerphoneNumber\": \"2034510896\",\n                \"buyerLeadGeneratedBy\": \"Agent Generated\",\n                \"buyerleadSource\": \"Personal/Repeat Customer\",\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            },\n            {\n                \"propertyId\": 2,\n                \"buyerPersonId\": 68435,\n                \"buyerPersonName\": \"Randy Morris\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"3303 Gin Lane \",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": \"Naples\",\n                \"buyerState\": \"FL\",\n                \"buyerZip\": \"34102\",\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": null,\n                \"buyerleadSource\": null,\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertySellerInfo\": [\n            {\n                \"propertyId\": 2,\n                \"sellerPersonId\": 17415,\n                \"sellerPersonName\": \"Michael Hole\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"3303 Gin Lane \",\n                \"selleremailAddress\": \"\",\n                \"sellerCity\": \"Naples\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"34102\",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Personal/Repeat Customer\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertyPeopleInfo\": [\n            {\n                \"propertyId\": 2,\n                \"personId\": 71841,\n                \"personName\": \"Stock Yards Bank & Trust Co.\",\n                \"personType\": \"Lender\",\n                \"side\": \"L\",\n                \"address\": \"\",\n                \"emailAddress\": null,\n                \"phoneNumber\": null\n            }\n        ],\n        \"propertyFeaturesInfo\": [\n            {\n                \"propertyFeatureID\": 26680,\n                \"propertyID\": 2,\n                \"featureType\": \"Boat Dock\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 38459,\n                \"propertyID\": 2,\n                \"featureType\": \"Central Air\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 126847,\n                \"propertyID\": 2,\n                \"featureType\": \"Central Electric A/C\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 87506,\n                \"propertyID\": 2,\n                \"featureType\": \"City/Town Street\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 8559,\n                \"propertyID\": 2,\n                \"featureType\": \"Club House\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 40316,\n                \"propertyID\": 2,\n                \"featureType\": \"Contemporary\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 86235,\n                \"propertyID\": 2,\n                \"featureType\": \"Deck/Patio\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 60794,\n                \"propertyID\": 2,\n                \"featureType\": \"Exercise Room\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 128645,\n                \"propertyID\": 2,\n                \"featureType\": \"Forced Air - Electric\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 7187,\n                \"propertyID\": 2,\n                \"featureType\": \"Frame/Wood\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 11786,\n                \"propertyID\": 2,\n                \"featureType\": \"Inground Pool\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 4692,\n                \"propertyID\": 2,\n                \"featureType\": \"LS-Bay/Beach Club\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 86772,\n                \"propertyID\": 2,\n                \"featureType\": \"LS-Boating\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 24372,\n                \"propertyID\": 2,\n                \"featureType\": \"LS-Fishing\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 131731,\n                \"propertyID\": 2,\n                \"featureType\": \"LS-Tennis\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 39670,\n                \"propertyID\": 2,\n                \"featureType\": \"LS-Water View\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 128066,\n                \"propertyID\": 2,\n                \"featureType\": \"LS-Waterfront\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 65016,\n                \"propertyID\": 2,\n                \"featureType\": \"Other Construction\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 97029,\n                \"propertyID\": 2,\n                \"featureType\": \"Pool - Outdoor\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 126112,\n                \"propertyID\": 2,\n                \"featureType\": \"Pool-In Ground\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 27485,\n                \"propertyID\": 2,\n                \"featureType\": \"Residential\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 127113,\n                \"propertyID\": 2,\n                \"featureType\": \"Spa/Hot Tub\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 8140,\n                \"propertyID\": 2,\n                \"featureType\": \"Terrace/Outdoor Space\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 64927,\n                \"propertyID\": 2,\n                \"featureType\": \"Water View\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 131494,\n                \"propertyID\": 2,\n                \"featureType\": \"Yes\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 73169,\n                \"propertyID\": 2,\n                \"featureType\": \"Yes\",\n                \"confirmed\": false\n            }\n        ],\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": [\n            {\n                \"documentID\": 37541,\n                \"propertyID\": 2,\n                \"person\": null,\n                \"office\": null,\n                \"filename\": \"Gin_Lane_DA_3303_DA_1022015_72825_229260328.doc\",\n                \"description\": \"Gin_Lane_DA_3303_DA.doc\",\n                \"showSeller\": false,\n                \"showBuyer\": false,\n                \"showListAgent\": false,\n                \"showSellAgent\": false,\n                \"previewURL\": \"\",\n                \"createDate\": \"2019-04-02 01:48\"\n            }\n        ],\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": [\n            {\n                \"propertyId\": 2,\n                \"docType\": \"voucher\",\n                \"docId\": 56930,\n                \"orderDate\": \"2012-03-30T00:00:00\",\n                \"amountTotal\": 51200,\n                \"personId\": 71741,\n                \"personName\": \"Ruth Trettsample\",\n                \"sourcePost\": \"agent\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 2,\n                \"docType\": \"voucher\",\n                \"docId\": 56931,\n                \"orderDate\": \"2012-03-30T00:00:00\",\n                \"amountTotal\": 50246.01,\n                \"personId\": 71741,\n                \"personName\": \"Ruth Trettsample\",\n                \"sourcePost\": \"agent\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 2,\n                \"docType\": \"voucher\",\n                \"docId\": 56932,\n                \"orderDate\": \"2012-03-30T00:00:00\",\n                \"amountTotal\": 1280,\n                \"personId\": 33591,\n                \"personName\": \"SOTHEBYS INTERNATIONAL REALTY AFFILLIATES, LLC\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 2,\n                \"docType\": \"voucher\",\n                \"docId\": 56933,\n                \"orderDate\": \"2012-03-30T00:00:00\",\n                \"amountTotal\": 3840,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 2,\n                \"docType\": \"voucher\",\n                \"docId\": 56934,\n                \"orderDate\": \"2012-03-30T00:00:00\",\n                \"amountTotal\": -3840,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 2,\n                \"docType\": \"voucher\",\n                \"docId\": 56935,\n                \"orderDate\": \"2012-03-30T00:00:00\",\n                \"amountTotal\": -3840,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 2,\n                \"docType\": \"voucher\",\n                \"docId\": 56936,\n                \"orderDate\": \"2012-03-30T00:00:00\",\n                \"amountTotal\": 1280,\n                \"personId\": 33591,\n                \"personName\": \"SOTHEBYS INTERNATIONAL REALTY AFFILLIATES, LLC\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 2,\n                \"docType\": \"voucher\",\n                \"docId\": 56937,\n                \"orderDate\": \"2012-03-30T00:00:00\",\n                \"amountTotal\": 3840,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 2,\n                \"docType\": \"invoice\",\n                \"docId\": 3550,\n                \"orderDate\": \"2012-03-30T00:00:00\",\n                \"amountTotal\": 128000,\n                \"personId\": 13660,\n                \"personName\": \"3303 GIN Lane, Naples, FL 34102-7810\",\n                \"sourcePost\": null,\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 2,\n                \"docType\": \"invoice\",\n                \"docId\": 44331,\n                \"orderDate\": \"2012-03-30T00:00:00\",\n                \"amountTotal\": -953.99,\n                \"personId\": 71741,\n                \"personName\": \"Ruth Trettsample\",\n                \"sourcePost\": null,\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 2,\n                \"docType\": \"arPayment\",\n                \"docId\": 12693,\n                \"orderDate\": \"2012-05-08T00:00:00\",\n                \"amountTotal\": -953.99,\n                \"personId\": 71741,\n                \"personName\": \"Ruth Trettsample\",\n                \"sourcePost\": null,\n                \"description\": \"Check\",\n                \"checkNumber\": null\n            },\n            {\n                \"propertyId\": 2,\n                \"docType\": \"arPayment\",\n                \"docId\": 18398,\n                \"orderDate\": \"2012-03-30T00:00:00\",\n                \"amountTotal\": 128000,\n                \"personId\": 13660,\n                \"personName\": \"3303 GIN Lane, Naples, FL 34102-7810\",\n                \"sourcePost\": null,\n                \"description\": \"check\",\n                \"checkNumber\": null\n            },\n            {\n                \"propertyId\": 2,\n                \"docType\": \"apPayment\",\n                \"docId\": 16524,\n                \"orderDate\": \"2012-04-09T00:00:00\",\n                \"amountTotal\": 0,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"epay701041312\"\n            },\n            {\n                \"propertyId\": 2,\n                \"docType\": \"apPayment\",\n                \"docId\": 16523,\n                \"orderDate\": \"2012-04-09T00:00:00\",\n                \"amountTotal\": 2560,\n                \"personId\": 33591,\n                \"personName\": \"SOTHEBYS INTERNATIONAL REALTY AFFILLIATES, LLC\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"epay701041312\"\n            },\n            {\n                \"propertyId\": 2,\n                \"docType\": \"apPayment\",\n                \"docId\": 7750,\n                \"orderDate\": \"2012-04-04T00:00:00\",\n                \"amountTotal\": 51200,\n                \"personId\": 71741,\n                \"personName\": \"Ruth Trettsample\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"8749\"\n            },\n            {\n                \"propertyId\": 2,\n                \"docType\": \"apPayment\",\n                \"docId\": 7739,\n                \"orderDate\": \"2012-04-04T00:00:00\",\n                \"amountTotal\": 50246.01,\n                \"personId\": 71741,\n                \"personName\": \"Ruth Trettsample\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"8738\"\n            }\n        ],\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 2,\n                \"financeType\": null,\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 3,\n        \"propertyAddress\": \"1326 Noble X Heron Way, Naples, FL, 34105\",\n        \"mlsNumber1\": \"207020993\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:15\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2022-09-27 05:30\",\n        \"modifyBy\": \"saDeploy\",\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 3,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": \"1326\",\n                \"streetDirection\": null,\n                \"streetName\": \"Noble X Heron\",\n                \"streetDesignation\": \"Way\",\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": \"\",\n                \"buildingFloorNumber\": \"\",\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"34105\",\n                \"trType\": \"OL\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": \"\",\n                \"commissionPrice\": 1450000,\n                \"sellingPrice\": 1625000,\n                \"listingPricePrior\": null,\n                \"listingPrice\": 1625000,\n                \"listCommission\": 43500,\n                \"sellCommission\": 0,\n                \"refListCommission\": 435,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2007-05-03\",\n                \"expiredDate\": \"2011-05-15\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2010-11-15\",\n                \"estimatedClosingDate\": \"2011-04-29\",\n                \"cancelDate\": null,\n                \"closingDate\": \"2011-10-01\",\n                \"processedDate\": \"2012-06-05\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000008\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": \"Cash\",\n                \"classification\": \"RESIDENTIAL SALE\",\n                \"propertyType\": \"Townhouse\",\n                \"propertyUse\": \"Owner Occupied\",\n                \"development\": null,\n                \"neigborhoodName\": \"\",\n                \"propertyLocation\": \"NOBLE HERON WAY - 1326\",\n                \"subDivision\": \"\",\n                \"levelsCount\": \"\",\n                \"transportation\": \"\",\n                \"bedrooms\": \"3\",\n                \"threeQuarterBathsTotal\": \"\",\n                \"halfBathsTotal\": \"\",\n                \"quarterBathsTotal\": \"\",\n                \"squareFeet\": \"3975\",\n                \"numberOfAcres\": \"\",\n                \"lotSize\": \"\",\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"0\",\n                \"taxYear\": \"0\",\n                \"taxRollNumber\": \"\",\n                \"annualTaxes\": \"18185.00\",\n                \"transactionID\": \"0001000000000008\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 5,\n                \"propertyID\": 3,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 73,\n                \"agent_ATGUID\": \"2F62B87A-55AA-4970-8C39-283B4B4A1D71\",\n                \"agent_FullName\": \"Lynn sampleerssample\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0.75,\n                \"agent_Gross\": 32298.75,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 9787.5,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 75,\n                \"agent_Net\": 22511.25,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 9787.5,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            },\n            {\n                \"propertyDeductionID\": 6,\n                \"propertyID\": 3,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71778,\n                \"agent_ATGUID\": \"ACF274EC-A062-4E42-A623-F7428F7CD206\",\n                \"agent_FullName\": \"Carolyn Weinsample\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 2,\n                \"agent_CommPercent\": 0.25,\n                \"agent_Gross\": 10766.25,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 2718.75,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 25,\n                \"agent_Net\": 8047.5,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 2718.75,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": null,\n        \"propertyBuyerInfo\": null,\n        \"propertySellerInfo\": [\n            {\n                \"propertyId\": 3,\n                \"sellerPersonId\": 10160,\n                \"sellerPersonName\": \"Donna Wellman\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"1326 Noble Heron Way \",\n                \"selleremailAddress\": \"\",\n                \"sellerCity\": \"Naples\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"34105      \",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            },\n            {\n                \"propertyId\": 3,\n                \"sellerPersonId\": 67080,\n                \"sellerPersonName\": \"F. Selby Wellman\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"1326 Noble Heron Way \",\n                \"selleremailAddress\": \"selby911@yahoo.com\",\n                \"sellerCity\": \"Naples\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"34105      \",\n                \"sellerphoneNumber\": \"2399194931\",\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Personal/Repeat Customer\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertyPeopleInfo\": [\n            {\n                \"propertyId\": 3,\n                \"personId\": 12669,\n                \"personName\": \"TOWN & COUNTRY TITLE INC\",\n                \"personType\": \"Title Company\",\n                \"side\": \"S\",\n                \"address\": \"\",\n                \"emailAddress\": null,\n                \"phoneNumber\": null\n            },\n            {\n                \"propertyId\": 3,\n                \"personId\": 33727,\n                \"personName\": \"Sun Realty\",\n                \"personType\": \"CoBroke Office\",\n                \"side\": \"S\",\n                \"address\": \"3757 Tamiami Trail North \",\n                \"emailAddress\": null,\n                \"phoneNumber\": null\n            },\n            {\n                \"propertyId\": 3,\n                \"personId\": 44229,\n                \"personName\": \"Aldo Quattrocchi\",\n                \"personType\": \"CoBroke Agent\",\n                \"side\": \"S\",\n                \"address\": \"3757 Tamiami Trail North\\r\\nNaples\\r\\nFL 34103 \",\n                \"emailAddress\": null,\n                \"phoneNumber\": null\n            }\n        ],\n        \"propertyFeaturesInfo\": null,\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": [\n            {\n                \"propertyId\": 3,\n                \"docType\": \"voucher\",\n                \"docId\": 61691,\n                \"orderDate\": \"2011-10-01T00:00:00\",\n                \"amountTotal\": 22837.5,\n                \"personId\": 73,\n                \"personName\": \"Lynn sampleerssample\",\n                \"sourcePost\": \"agent\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 3,\n                \"docType\": \"voucher\",\n                \"docId\": 61692,\n                \"orderDate\": \"2011-10-01T00:00:00\",\n                \"amountTotal\": 8156.25,\n                \"personId\": 71778,\n                \"personName\": \"Carolyn Weinsample\",\n                \"sourcePost\": \"agent\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 3,\n                \"docType\": \"invoice\",\n                \"docId\": 4275,\n                \"orderDate\": \"2011-10-01T00:00:00\",\n                \"amountTotal\": 43500,\n                \"personId\": 32249,\n                \"personName\": \"1326 Noble Heron Way\",\n                \"sourcePost\": null,\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 3,\n                \"docType\": \"arPayment\",\n                \"docId\": 19302,\n                \"orderDate\": \"2011-10-01T00:00:00\",\n                \"amountTotal\": 43500,\n                \"personId\": 32249,\n                \"personName\": \"1326 Noble Heron Way\",\n                \"sourcePost\": null,\n                \"description\": \"check\",\n                \"checkNumber\": null\n            },\n            {\n                \"propertyId\": 3,\n                \"docType\": \"apPayment\",\n                \"docId\": 9919,\n                \"orderDate\": \"2011-10-01T00:00:00\",\n                \"amountTotal\": 22837.5,\n                \"personId\": 73,\n                \"personName\": \"Lynn sampleerssample\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"TL10012011-10\"\n            },\n            {\n                \"propertyId\": 3,\n                \"docType\": \"apPayment\",\n                \"docId\": 9920,\n                \"orderDate\": \"2011-10-01T00:00:00\",\n                \"amountTotal\": 8156.25,\n                \"personId\": 71778,\n                \"personName\": \"Carolyn Weinsample\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"TL10012011-11\"\n            }\n        ],\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 3,\n                \"financeType\": \"Cash\",\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 4,\n        \"propertyAddress\": \"292 - 14th Avenue South #a, Naples, FL, 34102\",\n        \"mlsNumber1\": \"210013133\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:16\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2022-09-27 05:30\",\n        \"modifyBy\": \"saDeploy\",\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 4,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": null,\n                \"streetDirection\": null,\n                \"streetName\": \"292 - 14th Avenue South #a\",\n                \"streetDesignation\": \"\",\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": null,\n                \"buildingFloorNumber\": null,\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"34102\",\n                \"trType\": \"IH\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 475000,\n                \"sellingPrice\": 475000,\n                \"listingPricePrior\": null,\n                \"listingPrice\": 575000,\n                \"listCommission\": 14250,\n                \"sellCommission\": 14250,\n                \"refListCommission\": 0,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2010-04-12\",\n                \"expiredDate\": \"2011-04-09\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2011-02-17\",\n                \"estimatedClosingDate\": \"2011-04-18\",\n                \"cancelDate\": null,\n                \"closingDate\": null,\n                \"processedDate\": \"2011-04-13\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000014\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": null,\n                \"classification\": null,\n                \"propertyType\": \"Condominium\",\n                \"propertyUse\": \"Owner Occupied\",\n                \"development\": null,\n                \"neigborhoodName\": \"\",\n                \"propertyLocation\": \"PETTIT SQUARE #A\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"2\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"1187\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"0\",\n                \"taxYear\": \"0\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"6385.00\",\n                \"transactionID\": \"0001000000000014\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 7,\n                \"propertyID\": 4,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 59094,\n                \"agent_ATGUID\": \"722B638C-97DF-40C5-8641-FD5230DE0E98\",\n                \"agent_FullName\": \"Beth McNichsamples\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": [\n            {\n                \"propertyDeductionID\": 8,\n                \"propertyID\": 4,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71805,\n                \"agent_ATGUID\": \"6575E716-01EA-4DBB-9909-D7BA05F16AC8\",\n                \"agent_FullName\": \"Virginia Wsamplessample\",\n                \"personType\": \"agent\",\n                \"side\": \"S\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyBuyerInfo\": [\n            {\n                \"propertyId\": 4,\n                \"buyerPersonId\": 4125,\n                \"buyerPersonName\": \"DANIEL D THRALOW\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": \"Agent Generated\",\n                \"buyerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            },\n            {\n                \"propertyId\": 4,\n                \"buyerPersonId\": 47023,\n                \"buyerPersonName\": \"AMANDA M THRALOW\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": \"Agent Generated\",\n                \"buyerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertySellerInfo\": null,\n        \"propertyPeopleInfo\": null,\n        \"propertyFeaturesInfo\": null,\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": null,\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 4,\n                \"financeType\": null,\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 5,\n        \"propertyAddress\": \"2550 Half Moon, Naples, FL 34102-7760\",\n        \"mlsNumber1\": \"209030565\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:16\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2022-09-27 05:30\",\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 5,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": \"2550\",\n                \"streetDirection\": null,\n                \"streetName\": \"Half Moon\",\n                \"streetDesignation\": null,\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": null,\n                \"buildingFloorNumber\": null,\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"34102-7760\",\n                \"trType\": \"IH\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 1500000,\n                \"sellingPrice\": 1500000,\n                \"listingPricePrior\": null,\n                \"listingPrice\": 1995000,\n                \"listCommission\": 30000,\n                \"sellCommission\": 30000,\n                \"refListCommission\": 0,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2009-08-27\",\n                \"expiredDate\": \"2012-12-21\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2012-08-01\",\n                \"estimatedClosingDate\": \"2012-09-28\",\n                \"cancelDate\": null,\n                \"closingDate\": \"2012-09-24\",\n                \"processedDate\": \"2012-09-28\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000019\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": \"Conventional\",\n                \"classification\": null,\n                \"propertyType\": \"Residential Lot\",\n                \"propertyUse\": \"Owner Occupied\",\n                \"development\": \"PORT ROYAL\",\n                \"neigborhoodName\": \"PORT ROYAL\",\n                \"propertyLocation\": \"PORT ROYAL\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"0\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"0\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"0\",\n                \"taxYear\": \"2011\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"14977.63\",\n                \"transactionID\": \"0001000000000019\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 9,\n                \"propertyID\": 5,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71741,\n                \"agent_ATGUID\": \"294DBD60-541B-4855-AFCF-2DAAFDEF2FE1\",\n                \"agent_FullName\": \"Ruth Trettsample\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 1,\n                \"agent_Gross\": 30000,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 1800,\n                \"agent_Deduct3\": 4200,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 24000,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 4200,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": [\n            {\n                \"propertyDeductionID\": 10,\n                \"propertyID\": 5,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71741,\n                \"agent_ATGUID\": \"294DBD60-541B-4855-AFCF-2DAAFDEF2FE1\",\n                \"agent_FullName\": \"Ruth Trettsample\",\n                \"personType\": \"agent\",\n                \"side\": \"S\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 1,\n                \"agent_Gross\": 30000,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 1800,\n                \"agent_Deduct3\": 4200,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 24000,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 4200,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyBuyerInfo\": [\n            {\n                \"propertyId\": 5,\n                \"buyerPersonId\": 22864,\n                \"buyerPersonName\": \"Joanna Santos-Ocampo\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"2917 Gardens Blvd. \",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": \"Naples\",\n                \"buyerState\": \"FL\",\n                \"buyerZip\": \"34105\",\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": \"Agent Generated\",\n                \"buyerleadSource\": \"Personal/Repeat Customer\",\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            },\n            {\n                \"propertyId\": 5,\n                \"buyerPersonId\": 73077,\n                \"buyerPersonName\": \"Carlo Santos-Ocampo\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"2917 Gardens Blvd. \",\n                \"buyeremailAddress\": \"santosocampo@gmain.com\",\n                \"buyerCity\": \"Naples\",\n                \"buyerState\": \"FL\",\n                \"buyerZip\": \"34105\",\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": \"Agent Generated\",\n                \"buyerleadSource\": \"Personal/Repeat Customer\",\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertySellerInfo\": [\n            {\n                \"propertyId\": 5,\n                \"sellerPersonId\": 73608,\n                \"sellerPersonName\": \"Fran Lockwood\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"2550 Half Moon Walk \",\n                \"selleremailAddress\": \"\",\n                \"sellerCity\": \"Naples\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"34102\",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertyPeopleInfo\": [\n            {\n                \"propertyId\": 5,\n                \"personId\": 46146,\n                \"personName\": \"SEAVIEW TITLE COMPANY, LLC\",\n                \"personType\": \"Title Company\",\n                \"side\": \"S\",\n                \"address\": \"1575 Pine Ridge Road, Suite 10 \",\n                \"emailAddress\": null,\n                \"phoneNumber\": null\n            },\n            {\n                \"propertyId\": 5,\n                \"personId\": 71861,\n                \"personName\": \"AMERICAN MOMENTUM BANK\",\n                \"personType\": \"Lender\",\n                \"side\": \"L\",\n                \"address\": \"One Urban Centre\\r\\n4830 West Kennedy Blvd., Ste 200 \",\n                \"emailAddress\": null,\n                \"phoneNumber\": null\n            }\n        ],\n        \"propertyFeaturesInfo\": [\n            {\n                \"propertyFeatureID\": 121576,\n                \"propertyID\": 5,\n                \"featureType\": \"City/Town Street\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 56770,\n                \"propertyID\": 5,\n                \"featureType\": \"LS-Bay/Beach Club\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 54770,\n                \"propertyID\": 5,\n                \"featureType\": \"LS-Ocean/Beach\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 14051,\n                \"propertyID\": 5,\n                \"featureType\": \"LS-Outdoor Activities\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 6380,\n                \"propertyID\": 5,\n                \"featureType\": \"LS-Tennis\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 70420,\n                \"propertyID\": 5,\n                \"featureType\": \"Residential\",\n                \"confirmed\": false\n            }\n        ],\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": [\n            {\n                \"propertyId\": 5,\n                \"docType\": \"voucher\",\n                \"docId\": 140371,\n                \"orderDate\": \"2012-09-24T00:00:00\",\n                \"amountTotal\": 24000,\n                \"personId\": 71741,\n                \"personName\": \"Ruth Trettsample\",\n                \"sourcePost\": \"agent\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 5,\n                \"docType\": \"voucher\",\n                \"docId\": 140372,\n                \"orderDate\": \"2012-09-24T00:00:00\",\n                \"amountTotal\": 24000,\n                \"personId\": 71741,\n                \"personName\": \"Ruth Trettsample\",\n                \"sourcePost\": \"agent\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 5,\n                \"docType\": \"voucher\",\n                \"docId\": 140373,\n                \"orderDate\": \"2012-09-24T00:00:00\",\n                \"amountTotal\": 600,\n                \"personId\": 33591,\n                \"personName\": \"SOTHEBYS INTERNATIONAL REALTY AFFILLIATES, LLC\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 5,\n                \"docType\": \"voucher\",\n                \"docId\": 140374,\n                \"orderDate\": \"2012-09-24T00:00:00\",\n                \"amountTotal\": 1800,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 5,\n                \"docType\": \"voucher\",\n                \"docId\": 140375,\n                \"orderDate\": \"2012-09-24T00:00:00\",\n                \"amountTotal\": -1800,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 5,\n                \"docType\": \"voucher\",\n                \"docId\": 140376,\n                \"orderDate\": \"2012-09-24T00:00:00\",\n                \"amountTotal\": -1800,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 5,\n                \"docType\": \"voucher\",\n                \"docId\": 140377,\n                \"orderDate\": \"2012-09-24T00:00:00\",\n                \"amountTotal\": 600,\n                \"personId\": 33591,\n                \"personName\": \"SOTHEBYS INTERNATIONAL REALTY AFFILLIATES, LLC\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 5,\n                \"docType\": \"voucher\",\n                \"docId\": 140378,\n                \"orderDate\": \"2012-09-24T00:00:00\",\n                \"amountTotal\": 1800,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 5,\n                \"docType\": \"invoice\",\n                \"docId\": 16499,\n                \"orderDate\": \"2012-09-24T00:00:00\",\n                \"amountTotal\": 60000,\n                \"personId\": 26106,\n                \"personName\": \"2550 Half Moon, Naples, FL 34102-7760\",\n                \"sourcePost\": null,\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 5,\n                \"docType\": \"arPayment\",\n                \"docId\": 31873,\n                \"orderDate\": \"2012-09-24T00:00:00\",\n                \"amountTotal\": 60000,\n                \"personId\": 26106,\n                \"personName\": \"2550 Half Moon, Naples, FL 34102-7760\",\n                \"sourcePost\": null,\n                \"description\": \"check\",\n                \"checkNumber\": null\n            },\n            {\n                \"propertyId\": 5,\n                \"docType\": \"apPayment\",\n                \"docId\": 47329,\n                \"orderDate\": \"2012-09-28T00:00:00\",\n                \"amountTotal\": 24000,\n                \"personId\": 71741,\n                \"personName\": \"Ruth Trettsample\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"12019\"\n            },\n            {\n                \"propertyId\": 5,\n                \"docType\": \"apPayment\",\n                \"docId\": 18915,\n                \"orderDate\": \"2012-10-08T00:00:00\",\n                \"amountTotal\": 0,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"epay70059929-33\"\n            },\n            {\n                \"propertyId\": 5,\n                \"docType\": \"apPayment\",\n                \"docId\": 47330,\n                \"orderDate\": \"2012-09-28T00:00:00\",\n                \"amountTotal\": 24000,\n                \"personId\": 71741,\n                \"personName\": \"Ruth Trettsample\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"12018\"\n            },\n            {\n                \"propertyId\": 5,\n                \"docType\": \"apPayment\",\n                \"docId\": 18914,\n                \"orderDate\": \"2012-10-08T00:00:00\",\n                \"amountTotal\": 1200,\n                \"personId\": 33591,\n                \"personName\": \"SOTHEBYS INTERNATIONAL REALTY AFFILLIATES, LLC\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"epay70059929-33\"\n            }\n        ],\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 5,\n                \"financeType\": \"Conventional\",\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 6,\n        \"propertyAddress\": \"815 S 21st Avenue, Naples, FL 34102\",\n        \"mlsNumber1\": \"211013842\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:16\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2022-09-27 05:30\",\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 6,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": \"815\",\n                \"streetDirection\": \"S\",\n                \"streetName\": \"21st\",\n                \"streetDesignation\": \"AVE\",\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": null,\n                \"buildingFloorNumber\": null,\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"34102\",\n                \"trType\": \"IH\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 1750000,\n                \"sellingPrice\": 1750000,\n                \"listingPricePrior\": 2495000,\n                \"listingPrice\": 1975000,\n                \"listCommission\": 43750,\n                \"sellCommission\": 43750,\n                \"refListCommission\": 0,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2011-04-27\",\n                \"expiredDate\": \"2012-11-01\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2012-06-15\",\n                \"estimatedClosingDate\": \"2012-06-29\",\n                \"cancelDate\": null,\n                \"closingDate\": \"2012-06-29\",\n                \"processedDate\": \"2012-07-02\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000020\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": \"Cash\",\n                \"classification\": null,\n                \"propertyType\": \"Residential Lot\",\n                \"propertyUse\": \"Owner Occupied\",\n                \"development\": \"TARPON COVE\",\n                \"neigborhoodName\": \"AQUALANE SHORES\",\n                \"propertyLocation\": \"AQUALANE SHORES\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"0\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"0\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"0\",\n                \"taxYear\": \"2011\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"16965.97\",\n                \"transactionID\": \"0001000000000020\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 11,\n                \"propertyID\": 6,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 59094,\n                \"agent_ATGUID\": \"722B638C-97DF-40C5-8641-FD5230DE0E98\",\n                \"agent_FullName\": \"Beth McNichsamples\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 1,\n                \"agent_Gross\": 43750,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 2625,\n                \"agent_Deduct3\": 10281.25,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 30843.75,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 10281.25,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": [\n            {\n                \"propertyDeductionID\": 12,\n                \"propertyID\": 6,\n                \"agent_officeID\": 19,\n                \"agent_officeName\": \"Dorchester\",\n                \"agent_PersonID\": 45917,\n                \"agent_ATGUID\": \"1581DC88-9C86-48A6-989B-DEB2C7530238\",\n                \"agent_FullName\": \"Gayle Fawksample\",\n                \"personType\": \"agent\",\n                \"side\": \"S\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 1,\n                \"agent_Gross\": 43750,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 2625,\n                \"agent_Deduct3\": 12337.5,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 28787.5,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 12337.5,\n                \"agent_ReportingOfficeID\": 19,\n                \"agent_ReportingOffice\": \"Dorchester\"\n            }\n        ],\n        \"propertyBuyerInfo\": [\n            {\n                \"propertyId\": 6,\n                \"buyerPersonId\": 73561,\n                \"buyerPersonName\": \"DONALD OLAH\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"104 GORDON DRIVE \",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": \"Townville\",\n                \"buyerState\": \"SC\",\n                \"buyerZip\": \"29689\",\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": \"Agent Generated\",\n                \"buyerleadSource\": \"Personal/Repeat Customer\",\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertySellerInfo\": [\n            {\n                \"propertyId\": 6,\n                \"sellerPersonId\": 16440,\n                \"sellerPersonName\": \"J&E PROPERTIES OF NAPLE\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"815 - 21st Avenue South \",\n                \"selleremailAddress\": \"\",\n                \"sellerCity\": \"Naples\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"34102      \",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertyPeopleInfo\": [\n            {\n                \"propertyId\": 6,\n                \"personId\": 448,\n                \"personName\": \"JIM PILON\",\n                \"personType\": \"Title-Co Contact\",\n                \"side\": \"L\",\n                \"address\": \"\",\n                \"emailAddress\": null,\n                \"phoneNumber\": null\n            },\n            {\n                \"propertyId\": 6,\n                \"personId\": 46099,\n                \"personName\": \"JIM PILON, ESQ.\",\n                \"personType\": \"Title Company\",\n                \"side\": \"S\",\n                \"address\": \"\",\n                \"emailAddress\": null,\n                \"phoneNumber\": null\n            },\n            {\n                \"propertyId\": 6,\n                \"personId\": 52545,\n                \"personName\": \"CASH\",\n                \"personType\": \"Lender\",\n                \"side\": \"L\",\n                \"address\": \"\",\n                \"emailAddress\": null,\n                \"phoneNumber\": null\n            }\n        ],\n        \"propertyFeaturesInfo\": null,\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": [\n            {\n                \"propertyId\": 6,\n                \"docType\": \"voucher\",\n                \"docId\": 50105,\n                \"orderDate\": \"2012-06-29T00:00:00\",\n                \"amountTotal\": 30843.75,\n                \"personId\": 59094,\n                \"personName\": \"Beth McNichsamples\",\n                \"sourcePost\": \"agent\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 6,\n                \"docType\": \"voucher\",\n                \"docId\": 50106,\n                \"orderDate\": \"2012-06-29T00:00:00\",\n                \"amountTotal\": 28787.5,\n                \"personId\": 45917,\n                \"personName\": \"Gayle Fawksample\",\n                \"sourcePost\": \"agent\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 6,\n                \"docType\": \"voucher\",\n                \"docId\": 50107,\n                \"orderDate\": \"2012-06-29T00:00:00\",\n                \"amountTotal\": 875,\n                \"personId\": 33591,\n                \"personName\": \"SOTHEBYS INTERNATIONAL REALTY AFFILLIATES, LLC\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 6,\n                \"docType\": \"voucher\",\n                \"docId\": 50108,\n                \"orderDate\": \"2012-06-29T00:00:00\",\n                \"amountTotal\": 2625,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 6,\n                \"docType\": \"voucher\",\n                \"docId\": 50109,\n                \"orderDate\": \"2012-06-29T00:00:00\",\n                \"amountTotal\": -2625,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 6,\n                \"docType\": \"voucher\",\n                \"docId\": 50110,\n                \"orderDate\": \"2012-06-29T00:00:00\",\n                \"amountTotal\": -2625,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 6,\n                \"docType\": \"voucher\",\n                \"docId\": 50111,\n                \"orderDate\": \"2012-06-29T00:00:00\",\n                \"amountTotal\": 875,\n                \"personId\": 33591,\n                \"personName\": \"SOTHEBYS INTERNATIONAL REALTY AFFILLIATES, LLC\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 6,\n                \"docType\": \"voucher\",\n                \"docId\": 50112,\n                \"orderDate\": \"2012-06-29T00:00:00\",\n                \"amountTotal\": 2625,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 6,\n                \"docType\": \"invoice\",\n                \"docId\": 2494,\n                \"orderDate\": \"2012-06-29T00:00:00\",\n                \"amountTotal\": 87500,\n                \"personId\": 44672,\n                \"personName\": \"815 S 21st Avenue, Naples, FL 34102\",\n                \"sourcePost\": null,\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 6,\n                \"docType\": \"arPayment\",\n                \"docId\": 17048,\n                \"orderDate\": \"2012-06-29T00:00:00\",\n                \"amountTotal\": 87500,\n                \"personId\": 44672,\n                \"personName\": \"815 S 21st Avenue, Naples, FL 34102\",\n                \"sourcePost\": null,\n                \"description\": \"check\",\n                \"checkNumber\": null\n            },\n            {\n                \"propertyId\": 6,\n                \"docType\": \"apPayment\",\n                \"docId\": 4858,\n                \"orderDate\": \"2012-07-02T00:00:00\",\n                \"amountTotal\": 28787.5,\n                \"personId\": 45917,\n                \"personName\": \"Gayle Fawksample\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"10818\"\n            },\n            {\n                \"propertyId\": 6,\n                \"docType\": \"apPayment\",\n                \"docId\": 10087,\n                \"orderDate\": \"2012-07-05T00:00:00\",\n                \"amountTotal\": 0,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"epay701070612\"\n            },\n            {\n                \"propertyId\": 6,\n                \"docType\": \"apPayment\",\n                \"docId\": 4868,\n                \"orderDate\": \"2012-07-02T00:00:00\",\n                \"amountTotal\": 30843.75,\n                \"personId\": 59094,\n                \"personName\": \"Beth McNichsamples\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"10828\"\n            },\n            {\n                \"propertyId\": 6,\n                \"docType\": \"apPayment\",\n                \"docId\": 10086,\n                \"orderDate\": \"2012-07-05T00:00:00\",\n                \"amountTotal\": 1750,\n                \"personId\": 33591,\n                \"personName\": \"SOTHEBYS INTERNATIONAL REALTY AFFILLIATES, LLC\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"epay701070612\"\n            }\n        ],\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 6,\n                \"financeType\": \"Cash\",\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 7,\n        \"propertyAddress\": \"81 S Gulf Shore Blvd, Naples, FL, 34102-5965\",\n        \"mlsNumber1\": \"211000489\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:16\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2022-09-27 05:30\",\n        \"modifyBy\": \"victorluna\",\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 7,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": \"81\",\n                \"streetDirection\": \"S\",\n                \"streetName\": \"Gulf Shore\",\n                \"streetDesignation\": \"Blvd\",\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": null,\n                \"buildingFloorNumber\": null,\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"34102-5965\",\n                \"trType\": \"IH\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 1695000,\n                \"sellingPrice\": 1695000,\n                \"listingPricePrior\": 1790000,\n                \"listingPrice\": 1850000,\n                \"listCommission\": 42375,\n                \"sellCommission\": 42375,\n                \"refListCommission\": 0,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2011-01-04\",\n                \"expiredDate\": \"2012-04-30\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2012-03-31\",\n                \"estimatedClosingDate\": \"2012-04-30\",\n                \"cancelDate\": null,\n                \"closingDate\": \"2012-04-30\",\n                \"processedDate\": \"2012-05-02\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000021\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": null,\n                \"classification\": null,\n                \"propertyType\": \"Residential Lot\",\n                \"propertyUse\": \"Owner Occupied\",\n                \"development\": \"OLD NAPLES\",\n                \"neigborhoodName\": \"OLD NAPLES\",\n                \"propertyLocation\": \"OLDE NAPLES\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"0\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"0\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"0\",\n                \"taxYear\": \"2011\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"13771.97\",\n                \"transactionID\": \"0001000000000021\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 13,\n                \"propertyID\": 7,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71741,\n                \"agent_ATGUID\": \"294DBD60-541B-4855-AFCF-2DAAFDEF2FE1\",\n                \"agent_FullName\": \"Ruth Trettsample\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 1,\n                \"agent_Gross\": 42375,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 2542.5,\n                \"agent_Deduct3\": 5932.5,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 33900,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 5932.5,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": [\n            {\n                \"propertyDeductionID\": 14,\n                \"propertyID\": 7,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 59101,\n                \"agent_ATGUID\": \"C1494648-2F45-4584-B913-BEF56850DB25\",\n                \"agent_FullName\": \"V.K. Melsampledo PA\",\n                \"personType\": \"agent\",\n                \"side\": \"S\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 1,\n                \"agent_Gross\": 42375,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 2542.5,\n                \"agent_Deduct3\": 8962.32,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 30870.18,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 8962.32,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyBuyerInfo\": [\n            {\n                \"propertyId\": 7,\n                \"buyerPersonId\": 15411,\n                \"buyerPersonName\": \"RICHARD STAMPER\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"5225 LINNADINE WAY \",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": \"Norcross\",\n                \"buyerState\": \"GA\",\n                \"buyerZip\": \"30092\",\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": \"Agent Generated\",\n                \"buyerleadSource\": \"Personal/Repeat Customer\",\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            },\n            {\n                \"propertyId\": 7,\n                \"buyerPersonId\": 74321,\n                \"buyerPersonName\": \"KIM STAMPER\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"5225 LINNADINE WAY \",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": \"Norcross\",\n                \"buyerState\": \"GA\",\n                \"buyerZip\": \"30092\",\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": \"Agent Generated\",\n                \"buyerleadSource\": \"Personal/Repeat Customer\",\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertySellerInfo\": [\n            {\n                \"propertyId\": 7,\n                \"sellerPersonId\": 74626,\n                \"sellerPersonName\": \"MCCABE FAMILY LTD PRTSHIP\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"81 Gulf Shore Blvd. South \",\n                \"selleremailAddress\": \"\",\n                \"sellerCity\": \"Naples\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"34102\",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Personal/Repeat Customer\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertyPeopleInfo\": [\n            {\n                \"propertyId\": 7,\n                \"personId\": 71841,\n                \"personName\": \"Stock Yards Bank & Trust Co.\",\n                \"personType\": \"Lender\",\n                \"side\": \"L\",\n                \"address\": \"\",\n                \"emailAddress\": null,\n                \"phoneNumber\": null\n            }\n        ],\n        \"propertyFeaturesInfo\": [\n            {\n                \"propertyFeatureID\": 98339,\n                \"propertyID\": 7,\n                \"featureType\": \"City/Town Street\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 28908,\n                \"propertyID\": 7,\n                \"featureType\": \"LS-Metropolitan\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 49202,\n                \"propertyID\": 7,\n                \"featureType\": \"LS-Ocean/Beach\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 13152,\n                \"propertyID\": 7,\n                \"featureType\": \"Residential\",\n                \"confirmed\": false\n            }\n        ],\n        \"propertyRemarksInfo\": [\n            {\n                \"propertyRemarkID\": 37056,\n                \"propertyID\": 7,\n                \"remarkType\": \"Area Description\",\n                \"remarkText\": \"Test 1\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyRemarkID\": 37055,\n                \"propertyID\": 7,\n                \"remarkType\": \"Appliances\",\n                \"remarkText\": \"Test 1\",\n                \"confirmed\": null\n            }\n        ],\n        \"propertyRoomsInfo\": [\n            {\n                \"propertyRoomID\": 14390,\n                \"propertyID\": 7,\n                \"description\": null,\n                \"roomName\": \"Test 1\",\n                \"roomLength\": 10,\n                \"roomWidth\": 10,\n                \"sequenceNumber\": 1,\n                \"confirmed\": false\n            },\n            {\n                \"propertyRoomID\": 14388,\n                \"propertyID\": 7,\n                \"description\": null,\n                \"roomName\": \"Test Room\",\n                \"roomLength\": 100,\n                \"roomWidth\": 10,\n                \"sequenceNumber\": 1,\n                \"confirmed\": true\n            }\n        ],\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": [\n            {\n                \"propertyOpenhouseID\": 15398,\n                \"propertyID\": 7,\n                \"date\": \"2022-09-26\",\n                \"time\": \"08:30:00\",\n                \"duration\": 0.25,\n                \"notes\": \"Test 1\",\n                \"done\": false,\n                \"confirmed\": false\n            }\n        ],\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": [\n            {\n                \"propertyId\": 7,\n                \"docType\": \"voucher\",\n                \"docId\": 49069,\n                \"orderDate\": \"2012-04-30T00:00:00\",\n                \"amountTotal\": 33900,\n                \"personId\": 71741,\n                \"personName\": \"Ruth Trettsample\",\n                \"sourcePost\": \"agent\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 7,\n                \"docType\": \"voucher\",\n                \"docId\": 49070,\n                \"orderDate\": \"2012-04-30T00:00:00\",\n                \"amountTotal\": 30870.18,\n                \"personId\": 59101,\n                \"personName\": \"V.K. Melsampledo PA\",\n                \"sourcePost\": \"agent\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 7,\n                \"docType\": \"voucher\",\n                \"docId\": 49071,\n                \"orderDate\": \"2012-04-30T00:00:00\",\n                \"amountTotal\": 847.5,\n                \"personId\": 33591,\n                \"personName\": \"SOTHEBYS INTERNATIONAL REALTY AFFILLIATES, LLC\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 7,\n                \"docType\": \"voucher\",\n                \"docId\": 49072,\n                \"orderDate\": \"2012-04-30T00:00:00\",\n                \"amountTotal\": 2542.5,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 7,\n                \"docType\": \"voucher\",\n                \"docId\": 49073,\n                \"orderDate\": \"2012-04-30T00:00:00\",\n                \"amountTotal\": -2542.5,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 7,\n                \"docType\": \"voucher\",\n                \"docId\": 49074,\n                \"orderDate\": \"2012-04-30T00:00:00\",\n                \"amountTotal\": -2542.5,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 7,\n                \"docType\": \"voucher\",\n                \"docId\": 49075,\n                \"orderDate\": \"2012-04-30T00:00:00\",\n                \"amountTotal\": 847.5,\n                \"personId\": 33591,\n                \"personName\": \"SOTHEBYS INTERNATIONAL REALTY AFFILLIATES, LLC\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 7,\n                \"docType\": \"voucher\",\n                \"docId\": 49076,\n                \"orderDate\": \"2012-04-30T00:00:00\",\n                \"amountTotal\": 2542.5,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 7,\n                \"docType\": \"invoice\",\n                \"docId\": 2331,\n                \"orderDate\": \"2012-04-30T00:00:00\",\n                \"amountTotal\": 84750,\n                \"personId\": 44608,\n                \"personName\": \"81 S Gulf Shore Blvd, Naples, FL 34102-5965\",\n                \"sourcePost\": null,\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 7,\n                \"docType\": \"arPayment\",\n                \"docId\": 16882,\n                \"orderDate\": \"2012-04-30T00:00:00\",\n                \"amountTotal\": 84750,\n                \"personId\": 44608,\n                \"personName\": \"81 S Gulf Shore Blvd, Naples, FL 34102-5965\",\n                \"sourcePost\": null,\n                \"description\": \"check\",\n                \"checkNumber\": null\n            },\n            {\n                \"propertyId\": 7,\n                \"docType\": \"apPayment\",\n                \"docId\": 16767,\n                \"orderDate\": \"2012-05-09T00:00:00\",\n                \"amountTotal\": 1695,\n                \"personId\": 33591,\n                \"personName\": \"SOTHEBYS INTERNATIONAL REALTY AFFILLIATES, LLC\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"epay701051112\"\n            },\n            {\n                \"propertyId\": 7,\n                \"docType\": \"apPayment\",\n                \"docId\": 4473,\n                \"orderDate\": \"2012-05-02T00:00:00\",\n                \"amountTotal\": 30870.18,\n                \"personId\": 59101,\n                \"personName\": \"V.K. Melsampledo PA\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"9537\"\n            },\n            {\n                \"propertyId\": 7,\n                \"docType\": \"apPayment\",\n                \"docId\": 4485,\n                \"orderDate\": \"2012-05-02T00:00:00\",\n                \"amountTotal\": 33900,\n                \"personId\": 71741,\n                \"personName\": \"Ruth Trettsample\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"9551\"\n            },\n            {\n                \"propertyId\": 7,\n                \"docType\": \"apPayment\",\n                \"docId\": 16768,\n                \"orderDate\": \"2012-05-09T00:00:00\",\n                \"amountTotal\": 0,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"epay701051112\"\n            }\n        ],\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 7,\n                \"financeType\": null,\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 8,\n        \"propertyAddress\": \"123 2121 Canna Way, Naples, FL, 34105\",\n        \"mlsNumber1\": \"209037747\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:17\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2022-09-27 05:30\",\n        \"modifyBy\": \"saDeploy\",\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 8,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": \"123\",\n                \"streetDirection\": null,\n                \"streetName\": \"2121 Canna Way\",\n                \"streetDesignation\": \"\",\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": \"\",\n                \"buildingFloorNumber\": \"\",\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"34105\",\n                \"trType\": \"OL\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": \"\",\n                \"commissionPrice\": 1175000,\n                \"sellingPrice\": 1175000,\n                \"listingPricePrior\": null,\n                \"listingPrice\": 1395000,\n                \"listCommission\": 35250,\n                \"sellCommission\": 0,\n                \"refListCommission\": 0,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2009-10-31\",\n                \"expiredDate\": \"2011-04-30\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2011-04-24\",\n                \"estimatedClosingDate\": \"2011-06-23\",\n                \"cancelDate\": null,\n                \"closingDate\": null,\n                \"processedDate\": \"2011-06-10\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000022\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": null,\n                \"classification\": \"RESIDENTIAL SALE\",\n                \"propertyType\": \"Residential Lot\",\n                \"propertyUse\": \"Owner Occupied\",\n                \"development\": null,\n                \"neigborhoodName\": \"\",\n                \"propertyLocation\": \"CANNA WAY - 2121 (LOT)\",\n                \"subDivision\": \"\",\n                \"levelsCount\": \"\",\n                \"transportation\": \"\",\n                \"bedrooms\": \"0\",\n                \"threeQuarterBathsTotal\": \"\",\n                \"halfBathsTotal\": \"\",\n                \"quarterBathsTotal\": \"\",\n                \"squareFeet\": \"0\",\n                \"numberOfAcres\": \"\",\n                \"lotSize\": \"\",\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"0\",\n                \"taxYear\": \"0\",\n                \"taxRollNumber\": \"\",\n                \"annualTaxes\": \"0.00\",\n                \"transactionID\": \"0001000000000022\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 15,\n                \"propertyID\": 8,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71754,\n                \"agent_ATGUID\": \"01E8508D-8791-4849-B645-D3B45FF1288B\",\n                \"agent_FullName\": \"Karen Van Arsdasample\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": null,\n        \"propertyBuyerInfo\": [\n            {\n                \"propertyId\": 8,\n                \"buyerPersonId\": 17689,\n                \"buyerPersonName\": \"PATRICIA S ALLEN\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": null,\n                \"buyerleadSource\": null,\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            },\n            {\n                \"propertyId\": 8,\n                \"buyerPersonId\": 73556,\n                \"buyerPersonName\": \"DONALD O ALLEN\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": null,\n                \"buyerleadSource\": null,\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertySellerInfo\": [\n            {\n                \"propertyId\": 8,\n                \"sellerPersonId\": 43001,\n                \"sellerPersonName\": \"WILLIAM R VANARSDALE\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"2121 Canna Way \",\n                \"selleremailAddress\": \"\",\n                \"sellerCity\": \"Naples\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"34105\",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertyPeopleInfo\": null,\n        \"propertyFeaturesInfo\": null,\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": null,\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 8,\n                \"financeType\": null,\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 9,\n        \"propertyAddress\": \"1376 Great Egret Trail\",\n        \"mlsNumber1\": \"208036126\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:17\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2022-09-27 05:30\",\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 9,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": null,\n                \"streetDirection\": null,\n                \"streetName\": \"1376 Great Egret Trail\",\n                \"streetDesignation\": null,\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": null,\n                \"buildingFloorNumber\": null,\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"34105\",\n                \"trType\": \"OL\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 4050000,\n                \"sellingPrice\": 4050000,\n                \"listingPricePrior\": null,\n                \"listingPrice\": 5250000,\n                \"listCommission\": 81000,\n                \"sellCommission\": 0,\n                \"refListCommission\": 0,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2008-09-22\",\n                \"expiredDate\": \"2010-12-31\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2011-02-02\",\n                \"estimatedClosingDate\": \"2011-04-03\",\n                \"cancelDate\": null,\n                \"closingDate\": null,\n                \"processedDate\": \"2011-02-18\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000023\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": null,\n                \"classification\": null,\n                \"propertyType\": \"Single Family Home\",\n                \"propertyUse\": \"Owner Occupied\",\n                \"development\": null,\n                \"neigborhoodName\": \"\",\n                \"propertyLocation\": \"GREAT EGRET TRAIL - 1376\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"5\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"6412\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"0\",\n                \"taxYear\": \"0\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"11605.00\",\n                \"transactionID\": \"0001000000000023\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 16,\n                \"propertyID\": 9,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71778,\n                \"agent_ATGUID\": \"ACF274EC-A062-4E42-A623-F7428F7CD206\",\n                \"agent_FullName\": \"Carolyn Weinsample\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": null,\n        \"propertyBuyerInfo\": [\n            {\n                \"propertyId\": 9,\n                \"buyerPersonId\": 53499,\n                \"buyerPersonName\": \"ANDREW ATTERBURY\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"1376 Great Egret Trail \",\n                \"buyeremailAddress\": \"andyatterbury@kcmidland.com\",\n                \"buyerCity\": \"Naples\",\n                \"buyerState\": \"FL\",\n                \"buyerZip\": \"34105\",\n                \"buyerphoneNumber\": \"2392345524\",\n                \"buyerLeadGeneratedBy\": null,\n                \"buyerleadSource\": null,\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            },\n            {\n                \"propertyId\": 9,\n                \"buyerPersonId\": 59812,\n                \"buyerPersonName\": \"GWYN ATTERBURY\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": null,\n                \"buyerleadSource\": null,\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertySellerInfo\": null,\n        \"propertyPeopleInfo\": null,\n        \"propertyFeaturesInfo\": null,\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": null,\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 9,\n                \"financeType\": null,\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 10,\n        \"propertyAddress\": \"320 - 14th Avenue South #C\",\n        \"mlsNumber1\": \"210033291\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:17\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2023-08-18 03:07\",\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 10,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": null,\n                \"streetDirection\": null,\n                \"streetName\": \"320 - 14th Avenue South #C\",\n                \"streetDesignation\": null,\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": null,\n                \"buildingFloorNumber\": null,\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"34102\",\n                \"trType\": \"OL\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 567000,\n                \"sellingPrice\": 567000,\n                \"listingPricePrior\": null,\n                \"listingPrice\": 595000,\n                \"listCommission\": 17010,\n                \"sellCommission\": 0,\n                \"refListCommission\": 0,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2010-10-06\",\n                \"expiredDate\": \"2011-04-29\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2011-07-14\",\n                \"estimatedClosingDate\": \"2011-09-12\",\n                \"cancelDate\": null,\n                \"closingDate\": null,\n                \"processedDate\": \"2011-08-10\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000024\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": null,\n                \"classification\": null,\n                \"propertyType\": \"Condominium\",\n                \"propertyUse\": \"Owner Occupied\",\n                \"development\": null,\n                \"neigborhoodName\": \"\",\n                \"propertyLocation\": \"AQUALANE MANOR #C\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"2\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"1192\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"0\",\n                \"taxYear\": \"0\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"5444.00\",\n                \"transactionID\": \"0001000000000024\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 17,\n                \"propertyID\": 10,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71741,\n                \"agent_ATGUID\": \"294DBD60-541B-4855-AFCF-2DAAFDEF2FE1\",\n                \"agent_FullName\": \"Ruth Trettsample\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": null,\n        \"propertyBuyerInfo\": [\n            {\n                \"propertyId\": 10,\n                \"buyerPersonId\": 34715,\n                \"buyerPersonName\": \"CHRISTINA CLONTZ\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": null,\n                \"buyerleadSource\": null,\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            },\n            {\n                \"propertyId\": 10,\n                \"buyerPersonId\": 68900,\n                \"buyerPersonName\": \"Steven Clontz\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"1441 Gulf Shore Blvd. S. \",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": \"Naples\",\n                \"buyerState\": \"FL\",\n                \"buyerZip\": \"34102\",\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": \"Agent Generated\",\n                \"buyerleadSource\": \"Personal/Repeat Customer\",\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertySellerInfo\": [\n            {\n                \"propertyId\": 10,\n                \"sellerPersonId\": 17148,\n                \"sellerPersonName\": \"LAURA KAY POLLOCK\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"320 - 14th Avenue South #C \",\n                \"selleremailAddress\": \"\",\n                \"sellerCity\": \"Naples\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"34102\",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertyPeopleInfo\": null,\n        \"propertyFeaturesInfo\": null,\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": null,\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 10,\n                \"financeType\": null,\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 11,\n        \"propertyAddress\": \"985 S 7TH ST, NAPLES, FL 34102\",\n        \"mlsNumber1\": \"209030699\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:17\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2022-09-27 05:30\",\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 11,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": \"985\",\n                \"streetDirection\": \"S\",\n                \"streetName\": \"7TH\",\n                \"streetDesignation\": \"ST\",\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": \"3\",\n                \"buildingFloorNumber\": null,\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"34102\",\n                \"trType\": \"IH\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 600000,\n                \"sellingPrice\": 600000,\n                \"listingPricePrior\": null,\n                \"listingPrice\": 695000,\n                \"listCommission\": 18000,\n                \"sellCommission\": 1080,\n                \"refListCommission\": 0,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2009-08-31\",\n                \"expiredDate\": \"2011-10-31\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2011-10-27\",\n                \"estimatedClosingDate\": \"2011-11-15\",\n                \"cancelDate\": null,\n                \"closingDate\": \"2011-11-15\",\n                \"processedDate\": \"2011-11-16\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000025\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": null,\n                \"classification\": null,\n                \"propertyType\": \"Townhouse\",\n                \"propertyUse\": \"Owner Occupied\",\n                \"development\": \"OLD NAPLES\",\n                \"neigborhoodName\": \"OLD NAPLES\",\n                \"propertyLocation\": \"PERGOLA VILLAS AT OLD NAPLES\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"3\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"1920\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"2000\",\n                \"taxYear\": \"2010\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"7457.44\",\n                \"transactionID\": \"0001000000000025\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 18,\n                \"propertyID\": 11,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71754,\n                \"agent_ATGUID\": \"01E8508D-8791-4849-B645-D3B45FF1288B\",\n                \"agent_FullName\": \"Karen Van Arsdasample\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 1,\n                \"agent_Gross\": 18000,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 1080,\n                \"agent_Deduct3\": 1619.25,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 14535.72,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 765.03,\n                \"companyDollar\": 1619.25,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": [\n            {\n                \"propertyDeductionID\": 19,\n                \"propertyID\": 11,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 46048,\n                \"agent_ATGUID\": \"ADD937A7-6146-4D2A-9E57-D28102147FDA\",\n                \"agent_FullName\": \"Heather Hobsampleck\",\n                \"personType\": \"agent\",\n                \"side\": \"S\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 1,\n                \"agent_Gross\": 1080,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 1080,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyBuyerInfo\": [\n            {\n                \"propertyId\": 11,\n                \"buyerPersonId\": 66208,\n                \"buyerPersonName\": \"Heather Hobrock\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"985 7th Street South \",\n                \"buyeremailAddress\": \"hhobrock@me.com\",\n                \"buyerCity\": \"Naples\",\n                \"buyerState\": \"FL\",\n                \"buyerZip\": \"34102\",\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": \"Agent Generated\",\n                \"buyerleadSource\": \"Personal/Repeat Customer\",\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertySellerInfo\": [\n            {\n                \"propertyId\": 11,\n                \"sellerPersonId\": 23130,\n                \"sellerPersonName\": \"JUSTYNA COX\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"985 - 7th Street South \",\n                \"selleremailAddress\": \"\",\n                \"sellerCity\": \"Naples\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"34102      \",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            },\n            {\n                \"propertyId\": 11,\n                \"sellerPersonId\": 29150,\n                \"sellerPersonName\": \"Joe Cox\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"985 - 7th Street South \",\n                \"selleremailAddress\": \"k.stevenson52@gmail.com\",\n                \"sellerCity\": \"Naples\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"34102      \",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Other\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertyPeopleInfo\": [\n            {\n                \"propertyId\": 11,\n                \"personId\": 71841,\n                \"personName\": \"Stock Yards Bank & Trust Co.\",\n                \"personType\": \"Lender\",\n                \"side\": \"L\",\n                \"address\": \"\",\n                \"emailAddress\": null,\n                \"phoneNumber\": null\n            }\n        ],\n        \"propertyFeaturesInfo\": [\n            {\n                \"propertyFeatureID\": 95610,\n                \"propertyID\": 11,\n                \"featureType\": \"Central Electric A/C\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 36777,\n                \"propertyID\": 11,\n                \"featureType\": \"Deck/Patio\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 128276,\n                \"propertyID\": 11,\n                \"featureType\": \"Frame/Wood\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 126767,\n                \"propertyID\": 11,\n                \"featureType\": \"Inground Pool\",\n                \"confirmed\": false\n            }\n        ],\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": [\n            {\n                \"propertyId\": 11,\n                \"propertyDeductionId\": 18,\n                \"agentPersonId\": 71754,\n                \"agentName\": \"Karen Van Arsdasample\",\n                \"side\": \"L\",\n                \"columnNumber\": 1,\n                \"thirdPartyPaymentId\": 478,\n                \"vendorPersonId\": 33620,\n                \"vendorName\": \"Kimberly A. Spink\",\n                \"amount\": 765.03,\n                \"flag1099\": \"2 \",\n                \"ignoreOffset\": false\n            }\n        ],\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": [\n            {\n                \"propertyId\": 11,\n                \"docType\": \"voucher\",\n                \"docId\": 101295,\n                \"orderDate\": \"2011-11-15T00:00:00\",\n                \"amountTotal\": 765.03,\n                \"personId\": 33620,\n                \"personName\": \"Kimberly A. Spink\",\n                \"sourcePost\": \"thirdparty\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 11,\n                \"docType\": \"voucher\",\n                \"docId\": 101296,\n                \"orderDate\": \"2011-11-15T00:00:00\",\n                \"amountTotal\": 14535.72,\n                \"personId\": 71754,\n                \"personName\": \"Karen Van Arsdasample\",\n                \"sourcePost\": \"agent\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 11,\n                \"docType\": \"voucher\",\n                \"docId\": 101297,\n                \"orderDate\": \"2011-11-15T00:00:00\",\n                \"amountTotal\": 0,\n                \"personId\": 46048,\n                \"personName\": \"Heather Hobsampleck\",\n                \"sourcePost\": \"agent\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 11,\n                \"docType\": \"voucher\",\n                \"docId\": 101298,\n                \"orderDate\": \"2011-11-15T00:00:00\",\n                \"amountTotal\": 360,\n                \"personId\": 33591,\n                \"personName\": \"SOTHEBYS INTERNATIONAL REALTY AFFILLIATES, LLC\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 11,\n                \"docType\": \"voucher\",\n                \"docId\": 101299,\n                \"orderDate\": \"2011-11-15T00:00:00\",\n                \"amountTotal\": 64.8,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 11,\n                \"docType\": \"voucher\",\n                \"docId\": 101300,\n                \"orderDate\": \"2011-11-15T00:00:00\",\n                \"amountTotal\": -1080,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 11,\n                \"docType\": \"voucher\",\n                \"docId\": 101301,\n                \"orderDate\": \"2011-11-15T00:00:00\",\n                \"amountTotal\": -64.8,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 11,\n                \"docType\": \"voucher\",\n                \"docId\": 101302,\n                \"orderDate\": \"2011-11-15T00:00:00\",\n                \"amountTotal\": 21.6,\n                \"personId\": 33591,\n                \"personName\": \"SOTHEBYS INTERNATIONAL REALTY AFFILLIATES, LLC\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 11,\n                \"docType\": \"voucher\",\n                \"docId\": 101303,\n                \"orderDate\": \"2011-11-15T00:00:00\",\n                \"amountTotal\": 1080,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 11,\n                \"docType\": \"invoice\",\n                \"docId\": 10307,\n                \"orderDate\": \"2011-11-15T00:00:00\",\n                \"amountTotal\": 19080,\n                \"personId\": 1249,\n                \"personName\": \"985 S 7TH ST, NAPLES, FL 34102\",\n                \"sourcePost\": null,\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 11,\n                \"docType\": \"arPayment\",\n                \"docId\": 25574,\n                \"orderDate\": \"2011-11-15T00:00:00\",\n                \"amountTotal\": 19080,\n                \"personId\": 1249,\n                \"personName\": \"985 S 7TH ST, NAPLES, FL 34102\",\n                \"sourcePost\": null,\n                \"description\": \"check\",\n                \"checkNumber\": null\n            },\n            {\n                \"propertyId\": 11,\n                \"docType\": \"apPayment\",\n                \"docId\": 36977,\n                \"orderDate\": \"2011-11-21T00:00:00\",\n                \"amountTotal\": 0,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"epay701112311\"\n            },\n            {\n                \"propertyId\": 11,\n                \"docType\": \"apPayment\",\n                \"docId\": 28365,\n                \"orderDate\": \"2011-11-16T00:00:00\",\n                \"amountTotal\": 14535.72,\n                \"personId\": 71754,\n                \"personName\": \"Karen Van Arsdasample\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"6592\"\n            },\n            {\n                \"propertyId\": 11,\n                \"docType\": \"apPayment\",\n                \"docId\": 28363,\n                \"orderDate\": \"2011-11-16T00:00:00\",\n                \"amountTotal\": 765.03,\n                \"personId\": 33620,\n                \"personName\": \"Kimberly A. Spink\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"6569\"\n            },\n            {\n                \"propertyId\": 11,\n                \"docType\": \"apPayment\",\n                \"docId\": 36976,\n                \"orderDate\": \"2011-11-21T00:00:00\",\n                \"amountTotal\": 381.6,\n                \"personId\": 33591,\n                \"personName\": \"SOTHEBYS INTERNATIONAL REALTY AFFILLIATES, LLC\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"epay701112311\"\n            }\n        ],\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 11,\n                \"financeType\": null,\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 12,\n        \"propertyAddress\": \"38 Broad Avenue South\",\n        \"mlsNumber1\": \"209023661\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:17\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2023-04-11 10:35\",\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 12,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": null,\n                \"streetDirection\": null,\n                \"streetName\": \"38 Broad Avenue South\",\n                \"streetDesignation\": null,\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": null,\n                \"buildingFloorNumber\": null,\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"34102\",\n                \"trType\": \"IH\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 7000000,\n                \"sellingPrice\": 7000000,\n                \"listingPricePrior\": null,\n                \"listingPrice\": 7950000,\n                \"listCommission\": 175000,\n                \"sellCommission\": 175000,\n                \"refListCommission\": 0,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2009-06-29\",\n                \"expiredDate\": \"2011-04-30\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2011-01-19\",\n                \"estimatedClosingDate\": \"2011-03-20\",\n                \"cancelDate\": null,\n                \"closingDate\": null,\n                \"processedDate\": \"2011-05-02\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000034\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": null,\n                \"classification\": null,\n                \"propertyType\": \"Single Family Home\",\n                \"propertyUse\": \"Owner Occupied\",\n                \"development\": null,\n                \"neigborhoodName\": \"\",\n                \"propertyLocation\": \"BROAD AVENUE SOUTH - 38\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"5\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"3896\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"0\",\n                \"taxYear\": \"0\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"27270.00\",\n                \"transactionID\": \"0001000000000034\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 20,\n                \"propertyID\": 12,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71754,\n                \"agent_ATGUID\": \"01E8508D-8791-4849-B645-D3B45FF1288B\",\n                \"agent_FullName\": \"Karen Van Arsdasample\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": [\n            {\n                \"propertyDeductionID\": 21,\n                \"propertyID\": 12,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71754,\n                \"agent_ATGUID\": \"01E8508D-8791-4849-B645-D3B45FF1288B\",\n                \"agent_FullName\": \"Karen Van Arsdasample\",\n                \"personType\": \"agent\",\n                \"side\": \"S\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyBuyerInfo\": [\n            {\n                \"propertyId\": 12,\n                \"buyerPersonId\": 48223,\n                \"buyerPersonName\": \"JOHN M PAZ\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": \"Agent Generated\",\n                \"buyerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertySellerInfo\": null,\n        \"propertyPeopleInfo\": null,\n        \"propertyFeaturesInfo\": null,\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": null,\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 12,\n                \"financeType\": null,\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 13,\n        \"propertyAddress\": \"7136 Lemuria Circle #902\",\n        \"mlsNumber1\": \"209038535\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:18\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2022-09-27 05:30\",\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 13,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": null,\n                \"streetDirection\": null,\n                \"streetName\": \"7136 Lemuria Circle #902\",\n                \"streetDesignation\": null,\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": null,\n                \"buildingFloorNumber\": null,\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"34109\",\n                \"trType\": \"IH\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 382500,\n                \"sellingPrice\": 382500,\n                \"listingPricePrior\": null,\n                \"listingPrice\": 425000,\n                \"listCommission\": 11475,\n                \"sellCommission\": 11475,\n                \"refListCommission\": 0,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2009-11-05\",\n                \"expiredDate\": \"2011-06-05\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2011-05-06\",\n                \"estimatedClosingDate\": \"2011-07-05\",\n                \"cancelDate\": null,\n                \"closingDate\": null,\n                \"processedDate\": \"2011-06-08\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000038\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": null,\n                \"classification\": null,\n                \"propertyType\": \"Condominium\",\n                \"propertyUse\": \"Owner Occupied\",\n                \"development\": null,\n                \"neigborhoodName\": \"\",\n                \"propertyLocation\": \"LEMURIA #902\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"3\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"2408\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"0\",\n                \"taxYear\": \"0\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"0.00\",\n                \"transactionID\": \"0001000000000038\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 22,\n                \"propertyID\": 13,\n                \"agent_officeID\": 20,\n                \"agent_officeName\": \"Bay Village\",\n                \"agent_PersonID\": 65398,\n                \"agent_ATGUID\": \"7159AD3E-7697-4856-87E5-1FA121ABA678\",\n                \"agent_FullName\": \"Dave samplenner\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 20,\n                \"agent_ReportingOffice\": \"Bay Village\"\n            }\n        ],\n        \"propertyAgentSellInfo\": [\n            {\n                \"propertyDeductionID\": 23,\n                \"propertyID\": 13,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 45971,\n                \"agent_ATGUID\": \"951E5CB0-0F45-4C8D-AEC3-79D3E8EE1FD7\",\n                \"agent_FullName\": \"Tom Gasbarsample\",\n                \"personType\": \"agent\",\n                \"side\": \"S\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyBuyerInfo\": [\n            {\n                \"propertyId\": 13,\n                \"buyerPersonId\": 3849,\n                \"buyerPersonName\": \"CAROL J MUNSON\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": \"Agent Generated\",\n                \"buyerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertySellerInfo\": [\n            {\n                \"propertyId\": 13,\n                \"sellerPersonId\": 5368,\n                \"sellerPersonName\": \"PAM BEATTY\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"7136 Lemuria Circle #902 \",\n                \"selleremailAddress\": \"\",\n                \"sellerCity\": \"Naples\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"34109\",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": null,\n                \"sellerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            },\n            {\n                \"propertyId\": 13,\n                \"sellerPersonId\": 11054,\n                \"sellerPersonName\": \"LANE BEATTY\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"7136 Lemuria Circle #902 \",\n                \"selleremailAddress\": \"\",\n                \"sellerCity\": \"Naples\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"34109\",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": null,\n                \"sellerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertyPeopleInfo\": null,\n        \"propertyFeaturesInfo\": [\n            {\n                \"propertyFeatureID\": 366185,\n                \"propertyID\": 13,\n                \"featureType\": \"Ocean / Beach\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 366184,\n                \"propertyID\": 13,\n                \"featureType\": \"Ocean\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 366186,\n                \"propertyID\": 13,\n                \"featureType\": \"Ocean / Beach\",\n                \"confirmed\": false\n            }\n        ],\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": [\n            {\n                \"propertyId\": 13,\n                \"docType\": \"check\",\n                \"docId\": 47590,\n                \"orderDate\": \"2022-03-01T00:00:00\",\n                \"amountTotal\": -500,\n                \"personId\": 8917,\n                \"personName\": \"\\r\\n RE/MAX Premier Choice\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"33442002993474578237\"\n            }\n        ],\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 13,\n                \"financeType\": null,\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 14,\n        \"propertyAddress\": \"534 - 3rd Avenue South\",\n        \"mlsNumber1\": \"211000339\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:18\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2022-09-27 05:30\",\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 14,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": null,\n                \"streetDirection\": null,\n                \"streetName\": \"534 - 3rd Avenue South\",\n                \"streetDesignation\": null,\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": null,\n                \"buildingFloorNumber\": null,\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"34102\",\n                \"trType\": \"OL\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 735000,\n                \"sellingPrice\": 735000,\n                \"listingPricePrior\": null,\n                \"listingPrice\": 925000,\n                \"listCommission\": 22050,\n                \"sellCommission\": 0,\n                \"refListCommission\": 5512.5,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2011-01-03\",\n                \"expiredDate\": \"2011-02-28\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2011-02-15\",\n                \"estimatedClosingDate\": \"2011-04-16\",\n                \"cancelDate\": null,\n                \"closingDate\": null,\n                \"processedDate\": \"2011-02-24\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000040\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": null,\n                \"classification\": null,\n                \"propertyType\": \"Single Family Home\",\n                \"propertyUse\": \"Owner Occupied\",\n                \"development\": null,\n                \"neigborhoodName\": \"\",\n                \"propertyLocation\": \"3RD AVENUE SOUTH - 534\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"1\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"1200\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"0\",\n                \"taxYear\": \"0\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"0.00\",\n                \"transactionID\": \"0001000000000040\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 24,\n                \"propertyID\": 14,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 59079,\n                \"agent_ATGUID\": \"50D6CD13-9E75-4537-9EB8-10CBB0B4777B\",\n                \"agent_FullName\": \"Debbi McDsamplemott\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": null,\n        \"propertyBuyerInfo\": [\n            {\n                \"propertyId\": 14,\n                \"buyerPersonId\": 9359,\n                \"buyerPersonName\": \"RICHARD MCCORD\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"110 Egret Avenue \",\n                \"buyeremailAddress\": \"notprovided@psir.com\",\n                \"buyerCity\": \"Naples\",\n                \"buyerState\": \"FL\",\n                \"buyerZip\": \"34108\",\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": null,\n                \"buyerleadSource\": null,\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            },\n            {\n                \"propertyId\": 14,\n                \"buyerPersonId\": 22605,\n                \"buyerPersonName\": \"JAMES ANTONACCI\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": null,\n                \"buyerleadSource\": null,\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertySellerInfo\": [\n            {\n                \"propertyId\": 14,\n                \"sellerPersonId\": 47166,\n                \"sellerPersonName\": \"ANDREA CLARK BROWN\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"534 - 3rd Avenue South \",\n                \"selleremailAddress\": \"\",\n                \"sellerCity\": \"Naples\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"34102\",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertyPeopleInfo\": null,\n        \"propertyFeaturesInfo\": null,\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": null,\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 14,\n                \"financeType\": null,\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 15,\n        \"propertyAddress\": \"1325 - 7th Street South\",\n        \"mlsNumber1\": \"211004805\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:18\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2022-09-27 05:30\",\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 15,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": null,\n                \"streetDirection\": null,\n                \"streetName\": \"1325 - 7th Street South\",\n                \"streetDesignation\": null,\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": null,\n                \"buildingFloorNumber\": null,\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"34102\",\n                \"trType\": \"OL\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 820000,\n                \"sellingPrice\": 820000,\n                \"listingPricePrior\": null,\n                \"listingPrice\": 865000,\n                \"listCommission\": 24600,\n                \"sellCommission\": 0,\n                \"refListCommission\": 0,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2011-02-05\",\n                \"expiredDate\": \"2012-01-06\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2011-10-14\",\n                \"estimatedClosingDate\": \"2011-10-21\",\n                \"cancelDate\": null,\n                \"closingDate\": \"2011-10-21\",\n                \"processedDate\": \"2011-10-24\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000043\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": null,\n                \"classification\": null,\n                \"propertyType\": \"Condominium\",\n                \"propertyUse\": \"Owner Occupied\",\n                \"development\": null,\n                \"neigborhoodName\": \"\",\n                \"propertyLocation\": \"BAY TERRACE AT OLD NAPLES\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"3\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"1785\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"1967\",\n                \"taxYear\": \"0\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"0.00\",\n                \"transactionID\": \"0001000000000043\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 25,\n                \"propertyID\": 15,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71805,\n                \"agent_ATGUID\": \"6575E716-01EA-4DBB-9909-D7BA05F16AC8\",\n                \"agent_FullName\": \"Virginia Wsamplessample\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0.6676,\n                \"agent_Gross\": 16425,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 985.5,\n                \"agent_Deduct3\": 3396.69,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 70,\n                \"agent_Net\": 12042.81,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 3396.69,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            },\n            {\n                \"propertyDeductionID\": 26,\n                \"propertyID\": 15,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 65524,\n                \"agent_ATGUID\": \"6F5614D0-DC2D-4948-AF32-A0EC6E294964\",\n                \"agent_FullName\": \"Carol Stsampleves\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 2,\n                \"agent_CommPercent\": 0.1097,\n                \"agent_Gross\": 2700,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 162,\n                \"agent_Deduct3\": 761.4,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 10,\n                \"agent_Net\": 1776.6,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 761.4,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            },\n            {\n                \"propertyDeductionID\": 27,\n                \"propertyID\": 15,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 33495,\n                \"agent_ATGUID\": \"B11BE92C-B16F-4E2B-963E-25438331FC0E\",\n                \"agent_FullName\": \"Karen Csampleentino\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 3,\n                \"agent_CommPercent\": 0.2225,\n                \"agent_Gross\": 5475,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 328.5,\n                \"agent_Deduct3\": 1801.28,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 20,\n                \"agent_Net\": 3345.22,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 1801.28,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": null,\n        \"propertyBuyerInfo\": [\n            {\n                \"propertyId\": 15,\n                \"buyerPersonId\": 36961,\n                \"buyerPersonName\": \"WILLIAM LINDSEY\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"10304 Carroll Shores \",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": \"Tampa\",\n                \"buyerState\": \"FL\",\n                \"buyerZip\": \"33612\",\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": null,\n                \"buyerleadSource\": null,\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            },\n            {\n                \"propertyId\": 15,\n                \"buyerPersonId\": 60678,\n                \"buyerPersonName\": \"DIANE LINDSEY\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": null,\n                \"buyerleadSource\": null,\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertySellerInfo\": [\n            {\n                \"propertyId\": 15,\n                \"sellerPersonId\": 17454,\n                \"sellerPersonName\": \"MICHAEL KEYES\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"1325 - 7th Street South #3C \",\n                \"selleremailAddress\": \"\",\n                \"sellerCity\": \"Naples\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"34102      \",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertyPeopleInfo\": [\n            {\n                \"propertyId\": 15,\n                \"personId\": 6898,\n                \"personName\": \"JIM PARKER\",\n                \"personType\": \"CoBroke Agent\",\n                \"side\": \"S\",\n                \"address\": \"\",\n                \"emailAddress\": null,\n                \"phoneNumber\": null\n            },\n            {\n                \"propertyId\": 15,\n                \"personId\": 72272,\n                \"personName\": \"Premiere Plus Realty Co.\",\n                \"personType\": \"CoBroke Office\",\n                \"side\": \"S\",\n                \"address\": \"950 N. Collier Blvd Ste 400 \",\n                \"emailAddress\": null,\n                \"phoneNumber\": null\n            }\n        ],\n        \"propertyFeaturesInfo\": null,\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": [\n            {\n                \"propertyId\": 15,\n                \"docType\": \"voucher\",\n                \"docId\": 127864,\n                \"orderDate\": \"2011-10-21T00:00:00\",\n                \"amountTotal\": 12042.81,\n                \"personId\": 71805,\n                \"personName\": \"Virginia Wsamplessample\",\n                \"sourcePost\": \"agent\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 15,\n                \"docType\": \"voucher\",\n                \"docId\": 127865,\n                \"orderDate\": \"2011-10-21T00:00:00\",\n                \"amountTotal\": 1776.6,\n                \"personId\": 65524,\n                \"personName\": \"Carol Stsampleves\",\n                \"sourcePost\": \"agent\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 15,\n                \"docType\": \"voucher\",\n                \"docId\": 127866,\n                \"orderDate\": \"2011-10-21T00:00:00\",\n                \"amountTotal\": 3345.22,\n                \"personId\": 33495,\n                \"personName\": \"Karen Csampleentino\",\n                \"sourcePost\": \"agent\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 15,\n                \"docType\": \"voucher\",\n                \"docId\": 127867,\n                \"orderDate\": \"2011-10-21T00:00:00\",\n                \"amountTotal\": 328.5,\n                \"personId\": 33591,\n                \"personName\": \"SOTHEBYS INTERNATIONAL REALTY AFFILLIATES, LLC\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 15,\n                \"docType\": \"voucher\",\n                \"docId\": 127868,\n                \"orderDate\": \"2011-10-21T00:00:00\",\n                \"amountTotal\": 162,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 15,\n                \"docType\": \"voucher\",\n                \"docId\": 127869,\n                \"orderDate\": \"2011-10-21T00:00:00\",\n                \"amountTotal\": 328.5,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 15,\n                \"docType\": \"voucher\",\n                \"docId\": 127870,\n                \"orderDate\": \"2011-10-21T00:00:00\",\n                \"amountTotal\": -985.5,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 15,\n                \"docType\": \"voucher\",\n                \"docId\": 127871,\n                \"orderDate\": \"2011-10-21T00:00:00\",\n                \"amountTotal\": -162,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 15,\n                \"docType\": \"voucher\",\n                \"docId\": 127872,\n                \"orderDate\": \"2011-10-21T00:00:00\",\n                \"amountTotal\": -328.5,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 15,\n                \"docType\": \"voucher\",\n                \"docId\": 127873,\n                \"orderDate\": \"2011-10-21T00:00:00\",\n                \"amountTotal\": 54,\n                \"personId\": 33591,\n                \"personName\": \"SOTHEBYS INTERNATIONAL REALTY AFFILLIATES, LLC\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 15,\n                \"docType\": \"voucher\",\n                \"docId\": 127874,\n                \"orderDate\": \"2011-10-21T00:00:00\",\n                \"amountTotal\": 109.5,\n                \"personId\": 33591,\n                \"personName\": \"SOTHEBYS INTERNATIONAL REALTY AFFILLIATES, LLC\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 15,\n                \"docType\": \"voucher\",\n                \"docId\": 127875,\n                \"orderDate\": \"2011-10-21T00:00:00\",\n                \"amountTotal\": 985.5,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 15,\n                \"docType\": \"invoice\",\n                \"docId\": 14509,\n                \"orderDate\": \"2011-10-21T00:00:00\",\n                \"amountTotal\": 24600,\n                \"personId\": 32227,\n                \"personName\": \"1325 - 7th Street South\",\n                \"sourcePost\": null,\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 15,\n                \"docType\": \"arPayment\",\n                \"docId\": 29852,\n                \"orderDate\": \"2011-10-21T00:00:00\",\n                \"amountTotal\": 24600,\n                \"personId\": 32227,\n                \"personName\": \"1325 - 7th Street South\",\n                \"sourcePost\": null,\n                \"description\": \"check\",\n                \"checkNumber\": null\n            },\n            {\n                \"propertyId\": 15,\n                \"docType\": \"apPayment\",\n                \"docId\": 44444,\n                \"orderDate\": \"2011-10-24T00:00:00\",\n                \"amountTotal\": 1776.6,\n                \"personId\": 65524,\n                \"personName\": \"Carol Stsampleves\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"6206\"\n            },\n            {\n                \"propertyId\": 15,\n                \"docType\": \"apPayment\",\n                \"docId\": 14130,\n                \"orderDate\": \"2011-11-07T00:00:00\",\n                \"amountTotal\": 0,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"epay 701111011\"\n            },\n            {\n                \"propertyId\": 15,\n                \"docType\": \"apPayment\",\n                \"docId\": 14139,\n                \"orderDate\": \"2011-11-07T00:00:00\",\n                \"amountTotal\": 492,\n                \"personId\": 33591,\n                \"personName\": \"SOTHEBYS INTERNATIONAL REALTY AFFILLIATES, LLC\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"epay 701111011\"\n            },\n            {\n                \"propertyId\": 15,\n                \"docType\": \"apPayment\",\n                \"docId\": 44443,\n                \"orderDate\": \"2011-10-24T00:00:00\",\n                \"amountTotal\": 12042.81,\n                \"personId\": 71805,\n                \"personName\": \"Virginia Wsamplessample\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"6208\"\n            },\n            {\n                \"propertyId\": 15,\n                \"docType\": \"apPayment\",\n                \"docId\": 44442,\n                \"orderDate\": \"2011-10-24T00:00:00\",\n                \"amountTotal\": 3345.22,\n                \"personId\": 33495,\n                \"personName\": \"Karen Csampleentino\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"6196\"\n            }\n        ],\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 15,\n                \"financeType\": null,\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 16,\n        \"propertyAddress\": \"1400 Gulf Shore Blvd. N. #302\",\n        \"mlsNumber1\": \"210001221\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:18\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2022-09-27 05:30\",\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 16,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": null,\n                \"streetDirection\": null,\n                \"streetName\": \"1400 Gulf Shore Blvd. N. #302\",\n                \"streetDesignation\": null,\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": null,\n                \"buildingFloorNumber\": null,\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"34102\",\n                \"trType\": \"IH\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 1350000,\n                \"sellingPrice\": 1350000,\n                \"listingPricePrior\": null,\n                \"listingPrice\": 1450000,\n                \"listCommission\": 40500,\n                \"sellCommission\": 40500,\n                \"refListCommission\": 0,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2010-01-07\",\n                \"expiredDate\": \"2011-04-30\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2011-02-04\",\n                \"estimatedClosingDate\": \"2011-04-28\",\n                \"cancelDate\": null,\n                \"closingDate\": null,\n                \"processedDate\": \"2011-04-06\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000044\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": \"  CONVENTIONAL\",\n                \"classification\": null,\n                \"propertyType\": \"Condominium\",\n                \"propertyUse\": \"Owner Occupied\",\n                \"development\": null,\n                \"neigborhoodName\": \"\",\n                \"propertyLocation\": \"CHARLESTON SQUARE #302\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"3\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"2789\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"2005\",\n                \"taxYear\": \"0\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"0.00\",\n                \"transactionID\": \"0001000000000044\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 28,\n                \"propertyID\": 16,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71741,\n                \"agent_ATGUID\": \"294DBD60-541B-4855-AFCF-2DAAFDEF2FE1\",\n                \"agent_FullName\": \"Ruth Trettsample\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": [\n            {\n                \"propertyDeductionID\": 29,\n                \"propertyID\": 16,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 59086,\n                \"agent_ATGUID\": \"82EB73E2-049B-4B0C-A147-BFCF13FB4EE2\",\n                \"agent_FullName\": \"Lodge McKsample, II\",\n                \"personType\": \"agent\",\n                \"side\": \"S\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyBuyerInfo\": [\n            {\n                \"propertyId\": 16,\n                \"buyerPersonId\": 34046,\n                \"buyerPersonName\": \"ROBERT H RICHARDS III\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": \"Agent Generated\",\n                \"buyerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertySellerInfo\": [\n            {\n                \"propertyId\": 16,\n                \"sellerPersonId\": 34756,\n                \"sellerPersonName\": \"David Wakely\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"1400 Gulf Shore Blvd. N. #302 \",\n                \"selleremailAddress\": \"\",\n                \"sellerCity\": \"Naples\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"34102\",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Personal/Repeat Customer\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertyPeopleInfo\": [\n            {\n                \"propertyId\": 16,\n                \"personId\": 12351,\n                \"personName\": \"yvonne.osgood@fisherbroyles.com\",\n                \"personType\": \"Title-Co Contact\",\n                \"side\": \"L\",\n                \"address\": \"\",\n                \"emailAddress\": null,\n                \"phoneNumber\": null\n            },\n            {\n                \"propertyId\": 16,\n                \"personId\": 21012,\n                \"personName\": \"FISHER BROYLES TRUST\",\n                \"personType\": \"Title Company\",\n                \"side\": \"S\",\n                \"address\": \"\",\n                \"emailAddress\": null,\n                \"phoneNumber\": null\n            }\n        ],\n        \"propertyFeaturesInfo\": [\n            {\n                \"propertyFeatureID\": 131768,\n                \"propertyID\": 16,\n                \"featureType\": \"Boat Dock\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 94846,\n                \"propertyID\": 16,\n                \"featureType\": \"Boat Slip\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 6630,\n                \"propertyID\": 16,\n                \"featureType\": \"Central Air\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 124840,\n                \"propertyID\": 16,\n                \"featureType\": \"Central Electric A/C\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 71771,\n                \"propertyID\": 16,\n                \"featureType\": \"City/Town Street\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 130083,\n                \"propertyID\": 16,\n                \"featureType\": \"Condominium\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 125625,\n                \"propertyID\": 16,\n                \"featureType\": \"Forced Air - Electric\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 69995,\n                \"propertyID\": 16,\n                \"featureType\": \"LS-Aquatic Activities\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 71287,\n                \"propertyID\": 16,\n                \"featureType\": \"LS-Boating\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 134368,\n                \"propertyID\": 16,\n                \"featureType\": \"LS-Fishing\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 109254,\n                \"propertyID\": 16,\n                \"featureType\": \"LS-Metropolitan\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 35896,\n                \"propertyID\": 16,\n                \"featureType\": \"LS-Ocean/Beach\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 808,\n                \"propertyID\": 16,\n                \"featureType\": \"LS-Water View\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 107603,\n                \"propertyID\": 16,\n                \"featureType\": \"LS-Waterfront\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 45054,\n                \"propertyID\": 16,\n                \"featureType\": \"Other Construction\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 80490,\n                \"propertyID\": 16,\n                \"featureType\": \"Pool - Outdoor\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 11111,\n                \"propertyID\": 16,\n                \"featureType\": \"Pool-Above Ground\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 122607,\n                \"propertyID\": 16,\n                \"featureType\": \"Storage\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 27014,\n                \"propertyID\": 16,\n                \"featureType\": \"Terrace/Outdoor Space\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 48714,\n                \"propertyID\": 16,\n                \"featureType\": \"Water View\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 133409,\n                \"propertyID\": 16,\n                \"featureType\": \"Yes\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 57485,\n                \"propertyID\": 16,\n                \"featureType\": \"Yes\",\n                \"confirmed\": false\n            }\n        ],\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": null,\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 16,\n                \"financeType\": \"  CONVENTIONAL\",\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 17,\n        \"propertyAddress\": \"2901 Gulf Shore Blvd. N. #N-2S\",\n        \"mlsNumber1\": \"210002044\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:18\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2022-09-27 05:30\",\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 17,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": null,\n                \"streetDirection\": null,\n                \"streetName\": \"2901 Gulf Shore Blvd. N. #N-2S\",\n                \"streetDesignation\": null,\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": null,\n                \"buildingFloorNumber\": null,\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"34103\",\n                \"trType\": \"IH\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 970000,\n                \"sellingPrice\": 970000,\n                \"listingPricePrior\": null,\n                \"listingPrice\": 999000,\n                \"listCommission\": 29100,\n                \"sellCommission\": 29100,\n                \"refListCommission\": 0,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2010-01-11\",\n                \"expiredDate\": \"2011-07-07\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2011-04-03\",\n                \"estimatedClosingDate\": \"2011-06-02\",\n                \"cancelDate\": null,\n                \"closingDate\": null,\n                \"processedDate\": \"2011-04-22\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000045\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": null,\n                \"classification\": null,\n                \"propertyType\": \"Condominium\",\n                \"propertyUse\": \"Owner Occupied\",\n                \"development\": null,\n                \"neigborhoodName\": \"\",\n                \"propertyLocation\": \"WESTGATE #N-2S\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"3\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"2800\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"0\",\n                \"taxYear\": \"0\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"0.00\",\n                \"transactionID\": \"0001000000000045\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 30,\n                \"propertyID\": 17,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71820,\n                \"agent_ATGUID\": \"29DDB0ED-DA8E-4A64-ACD1-7A99E4F49000\",\n                \"agent_FullName\": \"Chris Yanssample\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": [\n            {\n                \"propertyDeductionID\": 31,\n                \"propertyID\": 17,\n                \"agent_officeID\": 2,\n                \"agent_officeName\": \"Boston\",\n                \"agent_PersonID\": 52482,\n                \"agent_ATGUID\": \"3F8D6F21-605E-4AE4-81DF-CABA52016F47\",\n                \"agent_FullName\": \"Mark Lesamplee\",\n                \"personType\": \"agent\",\n                \"side\": \"S\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 2,\n                \"agent_ReportingOffice\": \"Boston\"\n            }\n        ],\n        \"propertyBuyerInfo\": [\n            {\n                \"propertyId\": 17,\n                \"buyerPersonId\": 33966,\n                \"buyerPersonName\": \"ROBERT F SHELDON\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": \"Agent Generated\",\n                \"buyerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertySellerInfo\": null,\n        \"propertyPeopleInfo\": null,\n        \"propertyFeaturesInfo\": null,\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": null,\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 17,\n                \"financeType\": null,\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 18,\n        \"propertyAddress\": \"999 SPYGLASS LN, NAPLES, FL 34102-7732\",\n        \"mlsNumber1\": \"210002896\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:18\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2022-09-27 05:30\",\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 18,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": \"999\",\n                \"streetDirection\": null,\n                \"streetName\": \"SPYGLASS\",\n                \"streetDesignation\": \"LN\",\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": null,\n                \"buildingFloorNumber\": null,\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"34102-7732\",\n                \"trType\": \"OL\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 2750000,\n                \"sellingPrice\": 2750000,\n                \"listingPricePrior\": null,\n                \"listingPrice\": 3290000,\n                \"listCommission\": 55000,\n                \"sellCommission\": 0,\n                \"refListCommission\": 0,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2010-01-20\",\n                \"expiredDate\": \"2011-12-02\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2011-10-15\",\n                \"estimatedClosingDate\": \"2011-10-21\",\n                \"cancelDate\": null,\n                \"closingDate\": \"2011-10-21\",\n                \"processedDate\": \"2011-10-21\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000046\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": null,\n                \"classification\": null,\n                \"propertyType\": \"Residential Lot\",\n                \"propertyUse\": \"Owner Occupied\",\n                \"development\": null,\n                \"neigborhoodName\": \"\",\n                \"propertyLocation\": \"PORT ROYAL\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"0\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"0\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"0\",\n                \"taxYear\": \"2010\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"24453.55\",\n                \"transactionID\": \"0001000000000046\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 32,\n                \"propertyID\": 18,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71741,\n                \"agent_ATGUID\": \"294DBD60-541B-4855-AFCF-2DAAFDEF2FE1\",\n                \"agent_FullName\": \"Ruth Trettsample\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 1,\n                \"agent_Gross\": 55000,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 3300,\n                \"agent_Deduct3\": 7700,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 44000,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 7700,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": null,\n        \"propertyBuyerInfo\": [\n            {\n                \"propertyId\": 18,\n                \"buyerPersonId\": 28341,\n                \"buyerPersonName\": \"CHARLES MARCUM\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"P.O. Box 436925 \",\n                \"buyeremailAddress\": \"notprovided@psir.com\",\n                \"buyerCity\": \"Louisville\",\n                \"buyerState\": \"KY\",\n                \"buyerZip\": \"40253\",\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": \"Agent Generated\",\n                \"buyerleadSource\": \"Personal/Repeat Customer\",\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertySellerInfo\": [\n            {\n                \"propertyId\": 18,\n                \"sellerPersonId\": 27814,\n                \"sellerPersonName\": \"Robert Cadieux\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"999 Spyglass Lane \",\n                \"selleremailAddress\": \"\",\n                \"sellerCity\": \"Naples\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"34102\",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Personal/Repeat Customer\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertyPeopleInfo\": [\n            {\n                \"propertyId\": 18,\n                \"personId\": 14875,\n                \"personName\": \"Downing Frye Realty II LLC\",\n                \"personType\": \"CoBroke Office\",\n                \"side\": \"S\",\n                \"address\": \"180 Ninth Street South #300 \",\n                \"emailAddress\": null,\n                \"phoneNumber\": null\n            },\n            {\n                \"propertyId\": 18,\n                \"personId\": 18928,\n                \"personName\": \"KARLA WERCHE\",\n                \"personType\": \"CoBroke Agent\",\n                \"side\": \"S\",\n                \"address\": \"3411 Tamiami Trail N 201\\r\\nNaples\\r\\nFL 34103-3700 \",\n                \"emailAddress\": null,\n                \"phoneNumber\": null\n            }\n        ],\n        \"propertyFeaturesInfo\": [\n            {\n                \"propertyFeatureID\": 38905,\n                \"propertyID\": 18,\n                \"featureType\": \"City/Town Street\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 130524,\n                \"propertyID\": 18,\n                \"featureType\": \"LS-Bay/Beach Club\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 38416,\n                \"propertyID\": 18,\n                \"featureType\": \"LS-Boating\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 124073,\n                \"propertyID\": 18,\n                \"featureType\": \"LS-Fishing\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 101740,\n                \"propertyID\": 18,\n                \"featureType\": \"LS-Tennis\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 27218,\n                \"propertyID\": 18,\n                \"featureType\": \"LS-Water View\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 95876,\n                \"propertyID\": 18,\n                \"featureType\": \"LS-Waterfront\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 109107,\n                \"propertyID\": 18,\n                \"featureType\": \"Residential\",\n                \"confirmed\": false\n            }\n        ],\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": [\n            {\n                \"propertyId\": 18,\n                \"docType\": \"voucher\",\n                \"docId\": 118546,\n                \"orderDate\": \"2011-10-21T00:00:00\",\n                \"amountTotal\": 44000,\n                \"personId\": 71741,\n                \"personName\": \"Ruth Trettsample\",\n                \"sourcePost\": \"agent\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 18,\n                \"docType\": \"voucher\",\n                \"docId\": 118547,\n                \"orderDate\": \"2011-10-21T00:00:00\",\n                \"amountTotal\": 1100,\n                \"personId\": 33591,\n                \"personName\": \"SOTHEBYS INTERNATIONAL REALTY AFFILLIATES, LLC\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 18,\n                \"docType\": \"voucher\",\n                \"docId\": 118548,\n                \"orderDate\": \"2011-10-21T00:00:00\",\n                \"amountTotal\": -3300,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 18,\n                \"docType\": \"voucher\",\n                \"docId\": 118549,\n                \"orderDate\": \"2011-10-21T00:00:00\",\n                \"amountTotal\": 3300,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 18,\n                \"docType\": \"invoice\",\n                \"docId\": 13063,\n                \"orderDate\": \"2011-10-21T00:00:00\",\n                \"amountTotal\": 55000,\n                \"personId\": 1319,\n                \"personName\": \"999 SPYGLASS LN, NAPLES, FL 34102-7732\",\n                \"sourcePost\": null,\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 18,\n                \"docType\": \"arPayment\",\n                \"docId\": 28385,\n                \"orderDate\": \"2011-10-21T00:00:00\",\n                \"amountTotal\": 55000,\n                \"personId\": 1319,\n                \"personName\": \"999 SPYGLASS LN, NAPLES, FL 34102-7732\",\n                \"sourcePost\": null,\n                \"description\": \"check\",\n                \"checkNumber\": null\n            },\n            {\n                \"propertyId\": 18,\n                \"docType\": \"apPayment\",\n                \"docId\": 44454,\n                \"orderDate\": \"2011-10-26T00:00:00\",\n                \"amountTotal\": 0,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"epay 701102811\"\n            },\n            {\n                \"propertyId\": 18,\n                \"docType\": \"apPayment\",\n                \"docId\": 36839,\n                \"orderDate\": \"2011-10-21T00:00:00\",\n                \"amountTotal\": 44000,\n                \"personId\": 71741,\n                \"personName\": \"Ruth Trettsample\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"6195\"\n            },\n            {\n                \"propertyId\": 18,\n                \"docType\": \"apPayment\",\n                \"docId\": 44453,\n                \"orderDate\": \"2011-10-26T00:00:00\",\n                \"amountTotal\": 1100,\n                \"personId\": 33591,\n                \"personName\": \"SOTHEBYS INTERNATIONAL REALTY AFFILLIATES, LLC\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"epay 701102811\"\n            }\n        ],\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 18,\n                \"financeType\": null,\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 19,\n        \"propertyAddress\": \"663 S 11TH Avenue, Naples, FL 34102-7135\",\n        \"mlsNumber1\": \"210007232\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:18\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2022-09-27 05:30\",\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 19,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": \"663\",\n                \"streetDirection\": \"S\",\n                \"streetName\": \"11TH\",\n                \"streetDesignation\": \"AVE\",\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": null,\n                \"buildingFloorNumber\": null,\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"34102-7135\",\n                \"trType\": \"IH\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 1545000,\n                \"sellingPrice\": 1545000,\n                \"listingPricePrior\": 1495000,\n                \"listingPrice\": 1545000,\n                \"listCommission\": 38625,\n                \"sellCommission\": 38625,\n                \"refListCommission\": 0,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2010-02-23\",\n                \"expiredDate\": \"2012-05-30\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2011-12-28\",\n                \"estimatedClosingDate\": \"2012-01-06\",\n                \"cancelDate\": null,\n                \"closingDate\": \"2012-01-06\",\n                \"processedDate\": \"2012-01-11\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000047\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": \"Conventional\",\n                \"classification\": null,\n                \"propertyType\": \"Single Family Home\",\n                \"propertyUse\": \"Owner Occupied\",\n                \"development\": \"OLD NAPLES\",\n                \"neigborhoodName\": \"OLD NAPLES\",\n                \"propertyLocation\": \"11TH AVENUE SOUTH AT OLD NAPLES\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"4\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"2735\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"2010\",\n                \"taxYear\": \"2011\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"11515.35\",\n                \"transactionID\": \"0001000000000047\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 33,\n                \"propertyID\": 19,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71805,\n                \"agent_ATGUID\": \"6575E716-01EA-4DBB-9909-D7BA05F16AC8\",\n                \"agent_FullName\": \"Virginia Wsamplessample\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 1,\n                \"agent_Gross\": 38625,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 2317.5,\n                \"agent_Deduct3\": 7987.65,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 28319.85,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 7987.65,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            },\n            {\n                \"propertyDeductionID\": 34,\n                \"propertyID\": 19,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71803,\n                \"agent_ATGUID\": \"27CBB884-FC82-4F75-A7F2-EDE78862A414\",\n                \"agent_FullName\": \"Randy Wsamplessample\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 2,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 0,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": [\n            {\n                \"propertyDeductionID\": 35,\n                \"propertyID\": 19,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71805,\n                \"agent_ATGUID\": \"6575E716-01EA-4DBB-9909-D7BA05F16AC8\",\n                \"agent_FullName\": \"Virginia Wsamplessample\",\n                \"personType\": \"agent\",\n                \"side\": \"S\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 1,\n                \"agent_Gross\": 38625,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 2317.5,\n                \"agent_Deduct3\": 7987.65,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 28319.85,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 7987.65,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            },\n            {\n                \"propertyDeductionID\": 36,\n                \"propertyID\": 19,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71803,\n                \"agent_ATGUID\": \"27CBB884-FC82-4F75-A7F2-EDE78862A414\",\n                \"agent_FullName\": \"Randy Wsamplessample\",\n                \"personType\": \"agent\",\n                \"side\": \"S\",\n                \"agent_ColumnNumber\": 2,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 0,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyBuyerInfo\": [\n            {\n                \"propertyId\": 19,\n                \"buyerPersonId\": 42033,\n                \"buyerPersonName\": \"Mark Ziemer\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"35308 UPPER ASPEN LANE \",\n                \"buyeremailAddress\": \"notprovided@psir.com\",\n                \"buyerCity\": \"Pine\",\n                \"buyerState\": \"CO\",\n                \"buyerZip\": \"80470\",\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": \"Agent Generated\",\n                \"buyerleadSource\": \"Personal/Repeat Customer\",\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            },\n            {\n                \"propertyId\": 19,\n                \"buyerPersonId\": 68324,\n                \"buyerPersonName\": \"NING ZIEMER\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"35308 UPPER ASPEN LANE \",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": \"Pine\",\n                \"buyerState\": \"CO\",\n                \"buyerZip\": \"80470\",\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": \"Agent Generated\",\n                \"buyerleadSource\": \"Personal/Repeat Customer\",\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertySellerInfo\": [\n            {\n                \"propertyId\": 19,\n                \"sellerPersonId\": 49462,\n                \"sellerPersonName\": \"SRF REALTY ASSOC OF FL LL\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"663 - 11th Avenue South \",\n                \"selleremailAddress\": \"\",\n                \"sellerCity\": \"Naples\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"34102      \",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertyPeopleInfo\": [\n            {\n                \"propertyId\": 19,\n                \"personId\": 52576,\n                \"personName\": \"QUICKEN LOANS, INC.\",\n                \"personType\": \"Lender\",\n                \"side\": \"L\",\n                \"address\": \"1050 Woodward Avenue \",\n                \"emailAddress\": null,\n                \"phoneNumber\": null\n            }\n        ],\n        \"propertyFeaturesInfo\": [\n            {\n                \"propertyFeatureID\": 68705,\n                \"propertyID\": 19,\n                \"featureType\": \"Asphalt Shingle\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 19760,\n                \"propertyID\": 19,\n                \"featureType\": \"Central Electric A/C\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 51330,\n                \"propertyID\": 19,\n                \"featureType\": \"Frame/Wood\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 52366,\n                \"propertyID\": 19,\n                \"featureType\": \"Inground Pool\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 87174,\n                \"propertyID\": 19,\n                \"featureType\": \"Other Construction\",\n                \"confirmed\": false\n            }\n        ],\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": [\n            {\n                \"propertyId\": 19,\n                \"docType\": \"voucher\",\n                \"docId\": 80539,\n                \"orderDate\": \"2012-01-06T00:00:00\",\n                \"amountTotal\": 28319.85,\n                \"personId\": 71805,\n                \"personName\": \"Virginia Wsamplessample\",\n                \"sourcePost\": \"agent\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 19,\n                \"docType\": \"voucher\",\n                \"docId\": 80540,\n                \"orderDate\": \"2012-01-06T00:00:00\",\n                \"amountTotal\": 0,\n                \"personId\": 71803,\n                \"personName\": \"Randy Wsamplessample\",\n                \"sourcePost\": \"agent\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 19,\n                \"docType\": \"voucher\",\n                \"docId\": 80541,\n                \"orderDate\": \"2012-01-06T00:00:00\",\n                \"amountTotal\": 28319.85,\n                \"personId\": 71805,\n                \"personName\": \"Virginia Wsamplessample\",\n                \"sourcePost\": \"agent\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 19,\n                \"docType\": \"voucher\",\n                \"docId\": 80542,\n                \"orderDate\": \"2012-01-06T00:00:00\",\n                \"amountTotal\": 0,\n                \"personId\": 71803,\n                \"personName\": \"Randy Wsamplessample\",\n                \"sourcePost\": \"agent\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 19,\n                \"docType\": \"voucher\",\n                \"docId\": 80543,\n                \"orderDate\": \"2012-01-06T00:00:00\",\n                \"amountTotal\": 772.5,\n                \"personId\": 33591,\n                \"personName\": \"SOTHEBYS INTERNATIONAL REALTY AFFILLIATES, LLC\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 19,\n                \"docType\": \"voucher\",\n                \"docId\": 80544,\n                \"orderDate\": \"2012-01-06T00:00:00\",\n                \"amountTotal\": 2317.5,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 19,\n                \"docType\": \"voucher\",\n                \"docId\": 80545,\n                \"orderDate\": \"2012-01-06T00:00:00\",\n                \"amountTotal\": -2317.5,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 19,\n                \"docType\": \"voucher\",\n                \"docId\": 80546,\n                \"orderDate\": \"2012-01-06T00:00:00\",\n                \"amountTotal\": -2317.5,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 19,\n                \"docType\": \"voucher\",\n                \"docId\": 80547,\n                \"orderDate\": \"2012-01-06T00:00:00\",\n                \"amountTotal\": 772.5,\n                \"personId\": 33591,\n                \"personName\": \"SOTHEBYS INTERNATIONAL REALTY AFFILLIATES, LLC\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 19,\n                \"docType\": \"voucher\",\n                \"docId\": 80548,\n                \"orderDate\": \"2012-01-06T00:00:00\",\n                \"amountTotal\": 2317.5,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 19,\n                \"docType\": \"invoice\",\n                \"docId\": 7122,\n                \"orderDate\": \"2012-01-06T00:00:00\",\n                \"amountTotal\": 77250,\n                \"personId\": 38220,\n                \"personName\": \"663 S 11TH Avenue, Naples, FL 34102-7135\",\n                \"sourcePost\": null,\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 19,\n                \"docType\": \"arPayment\",\n                \"docId\": 22264,\n                \"orderDate\": \"2012-01-06T00:00:00\",\n                \"amountTotal\": 77250,\n                \"personId\": 38220,\n                \"personName\": \"663 S 11TH Avenue, Naples, FL 34102-7135\",\n                \"sourcePost\": null,\n                \"description\": \"check\",\n                \"checkNumber\": null\n            },\n            {\n                \"propertyId\": 19,\n                \"docType\": \"apPayment\",\n                \"docId\": 19186,\n                \"orderDate\": \"2012-01-11T00:00:00\",\n                \"amountTotal\": 28319.85,\n                \"personId\": 71805,\n                \"personName\": \"Virginia Wsamplessample\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"7369\"\n            },\n            {\n                \"propertyId\": 19,\n                \"docType\": \"apPayment\",\n                \"docId\": 40434,\n                \"orderDate\": \"2012-01-24T00:00:00\",\n                \"amountTotal\": 1545,\n                \"personId\": 33591,\n                \"personName\": \"SOTHEBYS INTERNATIONAL REALTY AFFILLIATES, LLC\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"epay701012712\"\n            },\n            {\n                \"propertyId\": 19,\n                \"docType\": \"apPayment\",\n                \"docId\": 20752,\n                \"orderDate\": \"2012-01-12T00:00:00\",\n                \"amountTotal\": 28319.85,\n                \"personId\": 71805,\n                \"personName\": \"Virginia Wsamplessample\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"7374\"\n            },\n            {\n                \"propertyId\": 19,\n                \"docType\": \"apPayment\",\n                \"docId\": 40435,\n                \"orderDate\": \"2012-01-24T00:00:00\",\n                \"amountTotal\": 0,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"epay701012712\"\n            }\n        ],\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 19,\n                \"financeType\": \"Conventional\",\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 20,\n        \"propertyAddress\": \"656 - 16th Avenue South\",\n        \"mlsNumber1\": \"210004098\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:18\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2023-08-18 03:04\",\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 20,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": null,\n                \"streetDirection\": null,\n                \"streetName\": \"656 - 16th Avenue South\",\n                \"streetDesignation\": null,\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": null,\n                \"buildingFloorNumber\": null,\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"34102\",\n                \"trType\": \"OL\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 2425000,\n                \"sellingPrice\": 2425000,\n                \"listingPricePrior\": null,\n                \"listingPrice\": 2595000,\n                \"listCommission\": 60625,\n                \"sellCommission\": 0,\n                \"refListCommission\": 12125,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2010-01-29\",\n                \"expiredDate\": \"2011-06-15\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2011-06-09\",\n                \"estimatedClosingDate\": \"2011-08-08\",\n                \"cancelDate\": null,\n                \"closingDate\": null,\n                \"processedDate\": \"2011-08-04\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000048\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": null,\n                \"classification\": null,\n                \"propertyType\": \"Single Family Home\",\n                \"propertyUse\": \"Owner Occupied\",\n                \"development\": null,\n                \"neigborhoodName\": \"\",\n                \"propertyLocation\": \"16TH AVENUE SOUTH - 656\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"5\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"4381\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"0\",\n                \"taxYear\": \"0\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"0.00\",\n                \"transactionID\": \"0001000000000048\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 37,\n                \"propertyID\": 20,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71754,\n                \"agent_ATGUID\": \"01E8508D-8791-4849-B645-D3B45FF1288B\",\n                \"agent_FullName\": \"Karen Van Arsdasample\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": null,\n        \"propertyBuyerInfo\": [\n            {\n                \"propertyId\": 20,\n                \"buyerPersonId\": 34314,\n                \"buyerPersonName\": \"ALFRED CURMI\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"656 16th Avenue S \",\n                \"buyeremailAddress\": \"tcurmi@gmail.com\",\n                \"buyerCity\": \"Naples\",\n                \"buyerState\": \"FL\",\n                \"buyerZip\": \"34102\",\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": \"Agent Generated\",\n                \"buyerleadSource\": \"Personal/Repeat Customer\",\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertySellerInfo\": [\n            {\n                \"propertyId\": 20,\n                \"sellerPersonId\": 35921,\n                \"sellerPersonName\": \"Mark Joseph Woodward\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"656 - 16th Avenue South \",\n                \"selleremailAddress\": \"\",\n                \"sellerCity\": \"Naples\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"34102\",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertyPeopleInfo\": null,\n        \"propertyFeaturesInfo\": null,\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": null,\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 20,\n                \"financeType\": null,\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 21,\n        \"propertyAddress\": \"1801 Gulf Shore Blvd. N.\",\n        \"mlsNumber1\": \"210007704\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:18\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2022-09-27 05:30\",\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 21,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": \"1801\",\n                \"streetDirection\": \"N\",\n                \"streetName\": \"GULF SHORE\",\n                \"streetDesignation\": \"BLVD\",\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": \"603\",\n                \"buildingFloorNumber\": null,\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"34103\",\n                \"trType\": \"OL\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 2850000,\n                \"sellingPrice\": 2850000,\n                \"listingPricePrior\": 3250000,\n                \"listingPrice\": 3150000,\n                \"listCommission\": 71250,\n                \"sellCommission\": 0,\n                \"refListCommission\": 0,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2010-02-24\",\n                \"expiredDate\": \"2012-04-30\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2012-02-13\",\n                \"estimatedClosingDate\": \"2012-02-10\",\n                \"cancelDate\": null,\n                \"closingDate\": \"2012-02-10\",\n                \"processedDate\": \"2012-02-13\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000052\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": \"Cash\",\n                \"classification\": null,\n                \"propertyType\": \"Condominium\",\n                \"propertyUse\": \"Owner Occupied\",\n                \"development\": \"THE MOORINGS\",\n                \"neigborhoodName\": \"MOORINGS\",\n                \"propertyLocation\": \"SANCERRE AT THE MOORINGS\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"4\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"4253\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"2003\",\n                \"taxYear\": \"2011\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"26272.11\",\n                \"transactionID\": \"0001000000000052\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 38,\n                \"propertyID\": 21,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71741,\n                \"agent_ATGUID\": \"294DBD60-541B-4855-AFCF-2DAAFDEF2FE1\",\n                \"agent_FullName\": \"Ruth Trettsample\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 1,\n                \"agent_Gross\": 71250,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 4275,\n                \"agent_Deduct3\": 9975,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 57000,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 9975,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": null,\n        \"propertyBuyerInfo\": [\n            {\n                \"propertyId\": 21,\n                \"buyerPersonId\": 55347,\n                \"buyerPersonName\": \"MARY JO ROGERS\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": \"Agent Generated\",\n                \"buyerleadSource\": \"Personal/Repeat Customer\",\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            },\n            {\n                \"propertyId\": 21,\n                \"buyerPersonId\": 60162,\n                \"buyerPersonName\": \"BRIAN ROGERS\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": \"Agent Generated\",\n                \"buyerleadSource\": \"Personal/Repeat Customer\",\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertySellerInfo\": [\n            {\n                \"propertyId\": 21,\n                \"sellerPersonId\": 9656,\n                \"sellerPersonName\": \"ATISHA ENTERPRISE CORP\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"1801 Gulf Shore Blvd. N. #603 \",\n                \"selleremailAddress\": \"\",\n                \"sellerCity\": \"Naples\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"34103\",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Personal/Repeat Customer\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertyPeopleInfo\": [\n            {\n                \"propertyId\": 21,\n                \"personId\": 46077,\n                \"personName\": \"FIRST BOSTON TITLE\",\n                \"personType\": \"Title Company\",\n                \"side\": \"S\",\n                \"address\": \"2180 IMMOKALEE ROAD, #212 \",\n                \"emailAddress\": null,\n                \"phoneNumber\": null\n            },\n            {\n                \"propertyId\": 21,\n                \"personId\": 46588,\n                \"personName\": \"John R. Wood Realtors\",\n                \"personType\": \"CoBroke Office\",\n                \"side\": \"S\",\n                \"address\": \"3255 Tamiami Trail North \",\n                \"emailAddress\": null,\n                \"phoneNumber\": null\n            },\n            {\n                \"propertyId\": 21,\n                \"personId\": 57602,\n                \"personName\": \"Nandy Miller\",\n                \"personType\": \"CoBroke Agent\",\n                \"side\": \"S\",\n                \"address\": \"3255 Tamiami Trail North\\r\\nNaples\\r\\nFL 34103 \",\n                \"emailAddress\": null,\n                \"phoneNumber\": null\n            }\n        ],\n        \"propertyFeaturesInfo\": [\n            {\n                \"propertyFeatureID\": 47293,\n                \"propertyID\": 21,\n                \"featureType\": \"Central Air\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 135935,\n                \"propertyID\": 21,\n                \"featureType\": \"Central Electric A/C\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 78133,\n                \"propertyID\": 21,\n                \"featureType\": \"City/Town Street\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 34063,\n                \"propertyID\": 21,\n                \"featureType\": \"Condominium\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 70343,\n                \"propertyID\": 21,\n                \"featureType\": \"Exercise Room\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 33752,\n                \"propertyID\": 21,\n                \"featureType\": \"Family Room\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 137208,\n                \"propertyID\": 21,\n                \"featureType\": \"Forced Air - Electric\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 108748,\n                \"propertyID\": 21,\n                \"featureType\": \"Gated Community\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 9329,\n                \"propertyID\": 21,\n                \"featureType\": \"Inground Pool\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 32821,\n                \"propertyID\": 21,\n                \"featureType\": \"LS-Fishing\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 7088,\n                \"propertyID\": 21,\n                \"featureType\": \"LS-Ocean/Beach\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 49188,\n                \"propertyID\": 21,\n                \"featureType\": \"LS-Water View\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 137714,\n                \"propertyID\": 21,\n                \"featureType\": \"LS-Waterfront\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 56585,\n                \"propertyID\": 21,\n                \"featureType\": \"Other Construction\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 105217,\n                \"propertyID\": 21,\n                \"featureType\": \"Pool - Outdoor\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 138164,\n                \"propertyID\": 21,\n                \"featureType\": \"Pool-In Ground\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 22333,\n                \"propertyID\": 21,\n                \"featureType\": \"Residential\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 137791,\n                \"propertyID\": 21,\n                \"featureType\": \"Spa/Hot Tub\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 34658,\n                \"propertyID\": 21,\n                \"featureType\": \"Yes\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 84004,\n                \"propertyID\": 21,\n                \"featureType\": \"Yes\",\n                \"confirmed\": false\n            }\n        ],\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": [\n            {\n                \"propertyId\": 21,\n                \"docType\": \"voucher\",\n                \"docId\": 87682,\n                \"orderDate\": \"2012-02-10T00:00:00\",\n                \"amountTotal\": 57000,\n                \"personId\": 71741,\n                \"personName\": \"Ruth Trettsample\",\n                \"sourcePost\": \"agent\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 21,\n                \"docType\": \"voucher\",\n                \"docId\": 87683,\n                \"orderDate\": \"2012-02-10T00:00:00\",\n                \"amountTotal\": 1425,\n                \"personId\": 33591,\n                \"personName\": \"SOTHEBYS INTERNATIONAL REALTY AFFILLIATES, LLC\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 21,\n                \"docType\": \"voucher\",\n                \"docId\": 87684,\n                \"orderDate\": \"2012-02-10T00:00:00\",\n                \"amountTotal\": -4275,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 21,\n                \"docType\": \"voucher\",\n                \"docId\": 87685,\n                \"orderDate\": \"2012-02-10T00:00:00\",\n                \"amountTotal\": 4275,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 21,\n                \"docType\": \"invoice\",\n                \"docId\": 8205,\n                \"orderDate\": \"2012-02-10T00:00:00\",\n                \"amountTotal\": 71250,\n                \"personId\": 57950,\n                \"personName\": \"1801 Gulf Shore Blvd. N.\",\n                \"sourcePost\": null,\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 21,\n                \"docType\": \"arPayment\",\n                \"docId\": 23437,\n                \"orderDate\": \"2012-02-10T00:00:00\",\n                \"amountTotal\": 71250,\n                \"personId\": 57950,\n                \"personName\": \"1801 Gulf Shore Blvd. N.\",\n                \"sourcePost\": null,\n                \"description\": \"check\",\n                \"checkNumber\": null\n            },\n            {\n                \"propertyId\": 21,\n                \"docType\": \"apPayment\",\n                \"docId\": 22573,\n                \"orderDate\": \"2012-02-13T00:00:00\",\n                \"amountTotal\": 57000,\n                \"personId\": 71741,\n                \"personName\": \"Ruth Trettsample\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"7789\"\n            },\n            {\n                \"propertyId\": 21,\n                \"docType\": \"apPayment\",\n                \"docId\": 38843,\n                \"orderDate\": \"2012-02-23T00:00:00\",\n                \"amountTotal\": 0,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"epay701022412\"\n            },\n            {\n                \"propertyId\": 21,\n                \"docType\": \"apPayment\",\n                \"docId\": 38842,\n                \"orderDate\": \"2012-02-23T00:00:00\",\n                \"amountTotal\": 1425,\n                \"personId\": 33591,\n                \"personName\": \"SOTHEBYS INTERNATIONAL REALTY AFFILLIATES, LLC\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"epay701022412\"\n            }\n        ],\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 21,\n                \"financeType\": \"Cash\",\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 22,\n        \"propertyAddress\": \"3377 Gulf Shore Blvd. N. #3-B\",\n        \"mlsNumber1\": \"210010135\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:19\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2022-09-27 05:30\",\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 22,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": null,\n                \"streetDirection\": null,\n                \"streetName\": \"3377 Gulf Shore Blvd. N. #3-B\",\n                \"streetDesignation\": null,\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": null,\n                \"buildingFloorNumber\": null,\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"34103\",\n                \"trType\": \"IH\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 995000,\n                \"sellingPrice\": 995000,\n                \"listingPricePrior\": null,\n                \"listingPrice\": 1179000,\n                \"listCommission\": 29850,\n                \"sellCommission\": 29850,\n                \"refListCommission\": 0,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2010-03-17\",\n                \"expiredDate\": \"2011-06-15\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2011-05-20\",\n                \"estimatedClosingDate\": \"2011-07-19\",\n                \"cancelDate\": null,\n                \"closingDate\": null,\n                \"processedDate\": \"2011-07-01\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000054\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": null,\n                \"classification\": null,\n                \"propertyType\": \"Condominium\",\n                \"propertyUse\": \"Owner Occupied\",\n                \"development\": null,\n                \"neigborhoodName\": \"\",\n                \"propertyLocation\": \"THE WALDORF #3-B\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"2\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"2347\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"0\",\n                \"taxYear\": \"0\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"0.00\",\n                \"transactionID\": \"0001000000000054\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 39,\n                \"propertyID\": 22,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 59094,\n                \"agent_ATGUID\": \"722B638C-97DF-40C5-8641-FD5230DE0E98\",\n                \"agent_FullName\": \"Beth McNichsamples\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": [\n            {\n                \"propertyDeductionID\": 40,\n                \"propertyID\": 22,\n                \"agent_officeID\": 20,\n                \"agent_officeName\": \"Bay Village\",\n                \"agent_PersonID\": 45962,\n                \"agent_ATGUID\": \"E59D8BCC-22E9-46DF-8EA7-9A207FC50939\",\n                \"agent_FullName\": \"Bernie Gasamplebed (Sothebys Syracuse)\",\n                \"personType\": \"agent\",\n                \"side\": \"S\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 20,\n                \"agent_ReportingOffice\": \"Bay Village\"\n            }\n        ],\n        \"propertyBuyerInfo\": [\n            {\n                \"propertyId\": 22,\n                \"buyerPersonId\": 15493,\n                \"buyerPersonName\": \"RICK LLEWELLYN\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"10436 KLING STREET \",\n                \"buyeremailAddress\": \"ANNEMLLEWELLYN1@GMAIL.COM\",\n                \"buyerCity\": \"Toluca Lake\",\n                \"buyerState\": \"CA\",\n                \"buyerZip\": \"91602\",\n                \"buyerphoneNumber\": \"2133695196\",\n                \"buyerLeadGeneratedBy\": \"Agent Generated\",\n                \"buyerleadSource\": \"Personal/Repeat Customer\",\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            },\n            {\n                \"propertyId\": 22,\n                \"buyerPersonId\": 66459,\n                \"buyerPersonName\": \"ANNE LLEWELLYN\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": \"Agent Generated\",\n                \"buyerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertySellerInfo\": [\n            {\n                \"propertyId\": 22,\n                \"sellerPersonId\": 11500,\n                \"sellerPersonName\": \"PATRICIA ANTONELLI\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"3377 Gulf Shore Blvd. N. #3-B \",\n                \"selleremailAddress\": \"\",\n                \"sellerCity\": \"Naples\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"34103\",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertyPeopleInfo\": null,\n        \"propertyFeaturesInfo\": null,\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": null,\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 22,\n                \"financeType\": null,\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 23,\n        \"propertyAddress\": \"58 Cove Lane, Naples, FL 34102\",\n        \"mlsNumber1\": \"210041706\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:19\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2022-09-27 05:30\",\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 23,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": \"58\",\n                \"streetDirection\": null,\n                \"streetName\": \"Cove\",\n                \"streetDesignation\": \"Ln\",\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": null,\n                \"buildingFloorNumber\": null,\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"34102\",\n                \"trType\": \"OL\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 450000,\n                \"sellingPrice\": 450000,\n                \"listingPricePrior\": null,\n                \"listingPrice\": 595000,\n                \"listCommission\": 9000,\n                \"sellCommission\": 0,\n                \"refListCommission\": 0,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2010-12-15\",\n                \"expiredDate\": \"2012-04-30\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2012-02-20\",\n                \"estimatedClosingDate\": \"2012-02-27\",\n                \"cancelDate\": null,\n                \"closingDate\": \"2012-02-27\",\n                \"processedDate\": \"2012-02-28\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000055\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": \"Cash\",\n                \"classification\": null,\n                \"propertyType\": \"Other Residential\",\n                \"propertyUse\": \"Owner Occupied\",\n                \"development\": \"PORT ROYAL\",\n                \"neigborhoodName\": \"PORT ROYAL AREA\",\n                \"propertyLocation\": \"PORT ROYAL AREA BOAT HOUSE\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"0\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"0\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"1955\",\n                \"taxYear\": \"2011\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"3584.30\",\n                \"transactionID\": \"0001000000000055\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 41,\n                \"propertyID\": 23,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71741,\n                \"agent_ATGUID\": \"294DBD60-541B-4855-AFCF-2DAAFDEF2FE1\",\n                \"agent_FullName\": \"Ruth Trettsample\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 1,\n                \"agent_Gross\": 9000,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 540,\n                \"agent_Deduct3\": 1260,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 7200,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 1260,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": null,\n        \"propertyBuyerInfo\": [\n            {\n                \"propertyId\": 23,\n                \"buyerPersonId\": 10446,\n                \"buyerPersonName\": \"IRL ENGELHARDT\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"901 KENT ROAD \",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": \"Saint Louis\",\n                \"buyerState\": \"MO\",\n                \"buyerZip\": \"63124\",\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": null,\n                \"buyerleadSource\": null,\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            },\n            {\n                \"propertyId\": 23,\n                \"buyerPersonId\": 18025,\n                \"buyerPersonName\": \"SUSANNE ENGELHARDT\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"901 KENT ROAD \",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": \"Saint Louis\",\n                \"buyerState\": \"MO\",\n                \"buyerZip\": \"63124\",\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": null,\n                \"buyerleadSource\": null,\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertySellerInfo\": [\n            {\n                \"propertyId\": 23,\n                \"sellerPersonId\": 73632,\n                \"sellerPersonName\": \"Frances LOCKWOOD\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"58 Cove Lane \",\n                \"selleremailAddress\": \"\",\n                \"sellerCity\": \"Naples\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"34102      \",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertyPeopleInfo\": [\n            {\n                \"propertyId\": 23,\n                \"personId\": 12712,\n                \"personName\": \"Cheffy Passidomo, Attorneys At Law\",\n                \"personType\": \"Title Company\",\n                \"side\": \"S\",\n                \"address\": \"821 5th Avenue S. \",\n                \"emailAddress\": \"cp@napleslaw.com\",\n                \"phoneNumber\": null\n            },\n            {\n                \"propertyId\": 23,\n                \"personId\": 25104,\n                \"personName\": \"Bill Earls\",\n                \"personType\": \"CoBroke Agent\",\n                \"side\": \"S\",\n                \"address\": \"3255 Tamiami Trail North\\r\\nNaples\\r\\nFL 34103 \",\n                \"emailAddress\": null,\n                \"phoneNumber\": null\n            },\n            {\n                \"propertyId\": 23,\n                \"personId\": 46588,\n                \"personName\": \"John R. Wood Realtors\",\n                \"personType\": \"CoBroke Office\",\n                \"side\": \"S\",\n                \"address\": \"3255 Tamiami Trail North \",\n                \"emailAddress\": null,\n                \"phoneNumber\": null\n            }\n        ],\n        \"propertyFeaturesInfo\": null,\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": [\n            {\n                \"propertyId\": 23,\n                \"docType\": \"voucher\",\n                \"docId\": 137451,\n                \"orderDate\": \"2012-02-27T00:00:00\",\n                \"amountTotal\": 7200,\n                \"personId\": 71741,\n                \"personName\": \"Ruth Trettsample\",\n                \"sourcePost\": \"agent\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 23,\n                \"docType\": \"voucher\",\n                \"docId\": 137452,\n                \"orderDate\": \"2012-02-27T00:00:00\",\n                \"amountTotal\": 180,\n                \"personId\": 33591,\n                \"personName\": \"SOTHEBYS INTERNATIONAL REALTY AFFILLIATES, LLC\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 23,\n                \"docType\": \"voucher\",\n                \"docId\": 137453,\n                \"orderDate\": \"2012-02-27T00:00:00\",\n                \"amountTotal\": -540,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 23,\n                \"docType\": \"voucher\",\n                \"docId\": 137454,\n                \"orderDate\": \"2012-02-27T00:00:00\",\n                \"amountTotal\": 540,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 23,\n                \"docType\": \"invoice\",\n                \"docId\": 16081,\n                \"orderDate\": \"2012-02-27T00:00:00\",\n                \"amountTotal\": 9000,\n                \"personId\": 32495,\n                \"personName\": \"58 Cove Lane, Naples, FL 34102\",\n                \"sourcePost\": null,\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 23,\n                \"docType\": \"arPayment\",\n                \"docId\": 31449,\n                \"orderDate\": \"2012-02-27T00:00:00\",\n                \"amountTotal\": 9000,\n                \"personId\": 32495,\n                \"personName\": \"58 Cove Lane, Naples, FL 34102\",\n                \"sourcePost\": null,\n                \"description\": \"check\",\n                \"checkNumber\": null\n            },\n            {\n                \"propertyId\": 23,\n                \"docType\": \"apPayment\",\n                \"docId\": 47944,\n                \"orderDate\": \"2012-02-29T00:00:00\",\n                \"amountTotal\": 180,\n                \"personId\": 33591,\n                \"personName\": \"SOTHEBYS INTERNATIONAL REALTY AFFILLIATES, LLC\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"epay701030212\"\n            },\n            {\n                \"propertyId\": 23,\n                \"docType\": \"apPayment\",\n                \"docId\": 47945,\n                \"orderDate\": \"2012-02-29T00:00:00\",\n                \"amountTotal\": 0,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"epay701030212\"\n            },\n            {\n                \"propertyId\": 23,\n                \"docType\": \"apPayment\",\n                \"docId\": 46516,\n                \"orderDate\": \"2012-02-28T00:00:00\",\n                \"amountTotal\": 7200,\n                \"personId\": 71741,\n                \"personName\": \"Ruth Trettsample\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"7987\"\n            }\n        ],\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 23,\n                \"financeType\": \"Cash\",\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 24,\n        \"propertyAddress\": \"202 - 9th Avenue South\",\n        \"mlsNumber1\": \"210012200\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:19\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2022-09-27 05:30\",\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 24,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": null,\n                \"streetDirection\": null,\n                \"streetName\": \"202 - 9th Avenue South\",\n                \"streetDesignation\": null,\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": null,\n                \"buildingFloorNumber\": null,\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"34102\",\n                \"trType\": \"IH\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 3600000,\n                \"sellingPrice\": 3600000,\n                \"listingPricePrior\": null,\n                \"listingPrice\": 3995000,\n                \"listCommission\": 90000,\n                \"sellCommission\": 90000,\n                \"refListCommission\": 0,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2010-04-05\",\n                \"expiredDate\": \"2011-06-30\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2011-02-02\",\n                \"estimatedClosingDate\": \"2011-04-20\",\n                \"cancelDate\": null,\n                \"closingDate\": null,\n                \"processedDate\": \"2011-04-20\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000058\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": null,\n                \"classification\": null,\n                \"propertyType\": \"Single Family Home\",\n                \"propertyUse\": \"Owner Occupied\",\n                \"development\": null,\n                \"neigborhoodName\": \"\",\n                \"propertyLocation\": \"9TH AVE SOUTH - 202\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"5\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"5254\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"0\",\n                \"taxYear\": \"0\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"0.00\",\n                \"transactionID\": \"0001000000000058\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 42,\n                \"propertyID\": 24,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 59079,\n                \"agent_ATGUID\": \"50D6CD13-9E75-4537-9EB8-10CBB0B4777B\",\n                \"agent_FullName\": \"Debbi McDsamplemott\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": [\n            {\n                \"propertyDeductionID\": 43,\n                \"propertyID\": 24,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 59079,\n                \"agent_ATGUID\": \"50D6CD13-9E75-4537-9EB8-10CBB0B4777B\",\n                \"agent_FullName\": \"Debbi McDsamplemott\",\n                \"personType\": \"agent\",\n                \"side\": \"S\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyBuyerInfo\": [\n            {\n                \"propertyId\": 24,\n                \"buyerPersonId\": 15349,\n                \"buyerPersonName\": \"RICHARD R SINGLETON\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": \"Agent Generated\",\n                \"buyerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            },\n            {\n                \"propertyId\": 24,\n                \"buyerPersonId\": 15928,\n                \"buyerPersonName\": \"CATHERINE S SINGLETON\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": \"Agent Generated\",\n                \"buyerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertySellerInfo\": null,\n        \"propertyPeopleInfo\": null,\n        \"propertyFeaturesInfo\": null,\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": null,\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 24,\n                \"financeType\": null,\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 25,\n        \"propertyAddress\": \"280 - 2nd Avenue South #101\",\n        \"mlsNumber1\": \"210013314\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:19\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2022-09-27 05:30\",\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 25,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": null,\n                \"streetDirection\": null,\n                \"streetName\": \"280 - 2nd Avenue South #101\",\n                \"streetDesignation\": null,\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": null,\n                \"buildingFloorNumber\": null,\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"34102\",\n                \"trType\": \"OL\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 525000,\n                \"sellingPrice\": 525000,\n                \"listingPricePrior\": null,\n                \"listingPrice\": 595000,\n                \"listCommission\": 15750,\n                \"sellCommission\": 0,\n                \"refListCommission\": 0,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2010-04-12\",\n                \"expiredDate\": \"2011-04-30\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2011-03-01\",\n                \"estimatedClosingDate\": \"2011-04-30\",\n                \"cancelDate\": null,\n                \"closingDate\": null,\n                \"processedDate\": \"2011-04-29\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000060\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": null,\n                \"classification\": null,\n                \"propertyType\": \"Condominium\",\n                \"propertyUse\": \"Owner Occupied\",\n                \"development\": null,\n                \"neigborhoodName\": \"\",\n                \"propertyLocation\": \"WARWICK #101\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"3\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"1500\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"0\",\n                \"taxYear\": \"0\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"0.00\",\n                \"transactionID\": \"0001000000000060\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 44,\n                \"propertyID\": 25,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71754,\n                \"agent_ATGUID\": \"01E8508D-8791-4849-B645-D3B45FF1288B\",\n                \"agent_FullName\": \"Karen Van Arsdasample\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": null,\n        \"propertyBuyerInfo\": [\n            {\n                \"propertyId\": 25,\n                \"buyerPersonId\": 5702,\n                \"buyerPersonName\": \"S MICHAEL HARRILL\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": null,\n                \"buyerleadSource\": null,\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertySellerInfo\": [\n            {\n                \"propertyId\": 25,\n                \"sellerPersonId\": 55321,\n                \"sellerPersonName\": \"MARY JANE COLTON\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"280 - 2nd Avenue South #101 \",\n                \"selleremailAddress\": \"\",\n                \"sellerCity\": \"Naples\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"34102\",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            },\n            {\n                \"propertyId\": 25,\n                \"sellerPersonId\": 56312,\n                \"sellerPersonName\": \"TIMOTHY J COLTON\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"280 - 2nd Avenue South #101 \",\n                \"selleremailAddress\": \"\",\n                \"sellerCity\": \"Naples\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"34102\",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertyPeopleInfo\": null,\n        \"propertyFeaturesInfo\": null,\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": null,\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 25,\n                \"financeType\": null,\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 26,\n        \"propertyAddress\": \"292 - 14th Avenue South\",\n        \"mlsNumber1\": \"210034445\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:19\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2022-09-27 05:30\",\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 26,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": null,\n                \"streetDirection\": null,\n                \"streetName\": \"292 - 14th Avenue South\",\n                \"streetDesignation\": null,\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": null,\n                \"buildingFloorNumber\": null,\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"34102\",\n                \"trType\": \"IH\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 300000,\n                \"sellingPrice\": 300000,\n                \"listingPricePrior\": null,\n                \"listingPrice\": 350000,\n                \"listCommission\": 7875,\n                \"sellCommission\": 7875,\n                \"refListCommission\": 0,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2010-10-15\",\n                \"expiredDate\": \"2011-12-30\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2011-08-08\",\n                \"estimatedClosingDate\": \"2011-10-07\",\n                \"cancelDate\": null,\n                \"closingDate\": null,\n                \"processedDate\": \"2011-08-29\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000062\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": null,\n                \"classification\": null,\n                \"propertyType\": \"Condominium\",\n                \"propertyUse\": \"Owner Occupied\",\n                \"development\": null,\n                \"neigborhoodName\": \"\",\n                \"propertyLocation\": \"PETTIT SQUARE AT OLD NAPLES\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"1\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"851\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"0\",\n                \"taxYear\": \"0\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"0.00\",\n                \"transactionID\": \"0001000000000062\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 45,\n                \"propertyID\": 26,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71805,\n                \"agent_ATGUID\": \"6575E716-01EA-4DBB-9909-D7BA05F16AC8\",\n                \"agent_FullName\": \"Virginia Wsamplessample\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": [\n            {\n                \"propertyDeductionID\": 46,\n                \"propertyID\": 26,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71805,\n                \"agent_ATGUID\": \"6575E716-01EA-4DBB-9909-D7BA05F16AC8\",\n                \"agent_FullName\": \"Virginia Wsamplessample\",\n                \"personType\": \"agent\",\n                \"side\": \"S\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 55,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            },\n            {\n                \"propertyDeductionID\": 47,\n                \"propertyID\": 26,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 65524,\n                \"agent_ATGUID\": \"6F5614D0-DC2D-4948-AF32-A0EC6E294964\",\n                \"agent_FullName\": \"Carol Stsampleves\",\n                \"personType\": \"agent\",\n                \"side\": \"S\",\n                \"agent_ColumnNumber\": 2,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 45,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyBuyerInfo\": [\n            {\n                \"propertyId\": 26,\n                \"buyerPersonId\": 42741,\n                \"buyerPersonName\": \"SHERYL FORK\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": \"Agent Generated\",\n                \"buyerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            },\n            {\n                \"propertyId\": 26,\n                \"buyerPersonId\": 68426,\n                \"buyerPersonName\": \"RANDY FORK\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": \"Agent Generated\",\n                \"buyerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertySellerInfo\": [\n            {\n                \"propertyId\": 26,\n                \"sellerPersonId\": 49743,\n                \"sellerPersonName\": \"YASMEEN WILSON\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"292 - 14th Avenue South #B \",\n                \"selleremailAddress\": \"\",\n                \"sellerCity\": \"Naples\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"34102\",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertyPeopleInfo\": null,\n        \"propertyFeaturesInfo\": null,\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": null,\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 26,\n                \"financeType\": null,\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 27,\n        \"propertyAddress\": \"1400 Gulf Shore Blvd. N. #206\",\n        \"mlsNumber1\": \"210016283\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:19\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2022-09-27 05:30\",\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 27,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": null,\n                \"streetDirection\": null,\n                \"streetName\": \"1400 Gulf Shore Blvd. N. #206\",\n                \"streetDesignation\": null,\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": null,\n                \"buildingFloorNumber\": null,\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"34102\",\n                \"trType\": \"IH\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 1175000,\n                \"sellingPrice\": 1175000,\n                \"listingPricePrior\": null,\n                \"listingPrice\": 1375000,\n                \"listCommission\": 35250,\n                \"sellCommission\": 35250,\n                \"refListCommission\": 0,\n                \"refSellCommission\": 8812.5,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2010-05-05\",\n                \"expiredDate\": \"2011-05-03\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2011-02-02\",\n                \"estimatedClosingDate\": \"2011-04-03\",\n                \"cancelDate\": null,\n                \"closingDate\": null,\n                \"processedDate\": \"2011-02-24\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000064\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": null,\n                \"classification\": null,\n                \"propertyType\": \"Condominium\",\n                \"propertyUse\": \"Owner Occupied\",\n                \"development\": null,\n                \"neigborhoodName\": \"\",\n                \"propertyLocation\": \"CHARLESTON SQUARE #206\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"4\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"3784\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"0\",\n                \"taxYear\": \"0\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"0.00\",\n                \"transactionID\": \"0001000000000064\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 48,\n                \"propertyID\": 27,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71730,\n                \"agent_ATGUID\": \"E08CCA84-4DE2-417C-9E63-1D7984E0A54C\",\n                \"agent_FullName\": \"Cindy Thompssample\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": [\n            {\n                \"propertyDeductionID\": 49,\n                \"propertyID\": 27,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71730,\n                \"agent_ATGUID\": \"E08CCA84-4DE2-417C-9E63-1D7984E0A54C\",\n                \"agent_FullName\": \"Cindy Thompssample\",\n                \"personType\": \"agent\",\n                \"side\": \"S\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyBuyerInfo\": null,\n        \"propertySellerInfo\": null,\n        \"propertyPeopleInfo\": null,\n        \"propertyFeaturesInfo\": null,\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": null,\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 27,\n                \"financeType\": null,\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 28,\n        \"propertyAddress\": \"356 - 7th Avenue South\",\n        \"mlsNumber1\": \"210016422\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:19\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2022-09-27 05:30\",\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 28,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": null,\n                \"streetDirection\": null,\n                \"streetName\": \"356 - 7th Avenue South\",\n                \"streetDesignation\": null,\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": null,\n                \"buildingFloorNumber\": null,\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"34102\",\n                \"trType\": \"IH\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 500000,\n                \"sellingPrice\": 500000,\n                \"listingPricePrior\": null,\n                \"listingPrice\": 649000,\n                \"listCommission\": 12500,\n                \"sellCommission\": 12500,\n                \"refListCommission\": 0,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2010-05-07\",\n                \"expiredDate\": \"2011-05-31\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2011-04-15\",\n                \"estimatedClosingDate\": \"2011-06-14\",\n                \"cancelDate\": null,\n                \"closingDate\": null,\n                \"processedDate\": \"2011-04-29\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000065\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": null,\n                \"classification\": null,\n                \"propertyType\": \"Condominium\",\n                \"propertyUse\": \"Owner Occupied\",\n                \"development\": null,\n                \"neigborhoodName\": \"\",\n                \"propertyLocation\": \"7TH AVENUE SOUTH - 356 (HAMILTON CLUB)\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"3\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"1647\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"0\",\n                \"taxYear\": \"0\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"0.00\",\n                \"transactionID\": \"0001000000000065\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 50,\n                \"propertyID\": 28,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71805,\n                \"agent_ATGUID\": \"6575E716-01EA-4DBB-9909-D7BA05F16AC8\",\n                \"agent_FullName\": \"Virginia Wsamplessample\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": [\n            {\n                \"propertyDeductionID\": 51,\n                \"propertyID\": 28,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71805,\n                \"agent_ATGUID\": \"6575E716-01EA-4DBB-9909-D7BA05F16AC8\",\n                \"agent_FullName\": \"Virginia Wsamplessample\",\n                \"personType\": \"agent\",\n                \"side\": \"S\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyBuyerInfo\": [\n            {\n                \"propertyId\": 28,\n                \"buyerPersonId\": 16691,\n                \"buyerPersonName\": \"JIM WILLEY\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": \"Agent Generated\",\n                \"buyerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertySellerInfo\": [\n            {\n                \"propertyId\": 28,\n                \"sellerPersonId\": 27969,\n                \"sellerPersonName\": \"ADELINE HOAGLAND\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"356 - 7th Avenue South \",\n                \"selleremailAddress\": \"\",\n                \"sellerCity\": \"Naples\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"34102\",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            },\n            {\n                \"propertyId\": 28,\n                \"sellerPersonId\": 37024,\n                \"sellerPersonName\": \"WILLIAM P HOAGLAND\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"356 - 7th Avenue South \",\n                \"selleremailAddress\": \"\",\n                \"sellerCity\": \"Naples\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"34102\",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertyPeopleInfo\": null,\n        \"propertyFeaturesInfo\": null,\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": null,\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 28,\n                \"financeType\": null,\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 29,\n        \"propertyAddress\": \"421 Rosemeade Lane\",\n        \"mlsNumber1\": \"210017215\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:19\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2022-09-27 05:30\",\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 29,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": null,\n                \"streetDirection\": null,\n                \"streetName\": \"421 Rosemeade Lane\",\n                \"streetDesignation\": null,\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": null,\n                \"buildingFloorNumber\": null,\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"34105\",\n                \"trType\": \"OL\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 525000,\n                \"sellingPrice\": 525000,\n                \"listingPricePrior\": null,\n                \"listingPrice\": 950000,\n                \"listCommission\": 15750,\n                \"sellCommission\": 0,\n                \"refListCommission\": 0,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2010-05-15\",\n                \"expiredDate\": \"2011-05-15\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2010-11-22\",\n                \"estimatedClosingDate\": \"2010-11-30\",\n                \"cancelDate\": null,\n                \"closingDate\": null,\n                \"processedDate\": \"2010-11-30\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000066\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": null,\n                \"classification\": null,\n                \"propertyType\": \"Single Family Home\",\n                \"propertyUse\": \"Owner Occupied\",\n                \"development\": null,\n                \"neigborhoodName\": \"\",\n                \"propertyLocation\": \"ROSEMEADE LANE - 421\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"3\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"3371\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"0\",\n                \"taxYear\": \"0\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"0.00\",\n                \"transactionID\": \"0001000000000066\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 52,\n                \"propertyID\": 29,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 45900,\n                \"agent_ATGUID\": \"EDAE1EDE-6C36-4F83-9B9B-D28A81FD18F1\",\n                \"agent_FullName\": \"Isabelle Stansampley\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": null,\n        \"propertyBuyerInfo\": [\n            {\n                \"propertyId\": 29,\n                \"buyerPersonId\": 49070,\n                \"buyerPersonName\": \"NANCY FAIRHURST\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": null,\n                \"buyerleadSource\": null,\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            },\n            {\n                \"propertyId\": 29,\n                \"buyerPersonId\": 66123,\n                \"buyerPersonName\": \"HARRY FAIRHURST\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": null,\n                \"buyerleadSource\": null,\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertySellerInfo\": null,\n        \"propertyPeopleInfo\": null,\n        \"propertyFeaturesInfo\": null,\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": null,\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 29,\n                \"financeType\": null,\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 30,\n        \"propertyAddress\": \"974 - 5th Street South\",\n        \"mlsNumber1\": \"210017222\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:19\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2022-09-27 05:30\",\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 30,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": null,\n                \"streetDirection\": null,\n                \"streetName\": \"974 - 5th Street South\",\n                \"streetDesignation\": null,\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": null,\n                \"buildingFloorNumber\": null,\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"34102\",\n                \"trType\": \"IH\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 695000,\n                \"sellingPrice\": 695000,\n                \"listingPricePrior\": null,\n                \"listingPrice\": 745000,\n                \"listCommission\": 20850,\n                \"sellCommission\": 20850,\n                \"refListCommission\": 0,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2010-05-15\",\n                \"expiredDate\": \"2011-04-20\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2011-03-10\",\n                \"estimatedClosingDate\": \"2011-05-09\",\n                \"cancelDate\": null,\n                \"closingDate\": null,\n                \"processedDate\": \"2011-04-07\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000067\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": null,\n                \"classification\": null,\n                \"propertyType\": \"Townhouse\",\n                \"propertyUse\": \"Owner Occupied\",\n                \"development\": null,\n                \"neigborhoodName\": \"\",\n                \"propertyLocation\": \"5TH STREET SOUTH - 974 (VILLA DANNA)\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"3\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"2118\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"0\",\n                \"taxYear\": \"0\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"0.00\",\n                \"transactionID\": \"0001000000000067\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 53,\n                \"propertyID\": 30,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 59094,\n                \"agent_ATGUID\": \"722B638C-97DF-40C5-8641-FD5230DE0E98\",\n                \"agent_FullName\": \"Beth McNichsamples\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": [\n            {\n                \"propertyDeductionID\": 54,\n                \"propertyID\": 30,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71754,\n                \"agent_ATGUID\": \"01E8508D-8791-4849-B645-D3B45FF1288B\",\n                \"agent_FullName\": \"Karen Van Arsdasample\",\n                \"personType\": \"agent\",\n                \"side\": \"S\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyBuyerInfo\": [\n            {\n                \"propertyId\": 30,\n                \"buyerPersonId\": 10993,\n                \"buyerPersonName\": \"L C TROVILLION\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": \"Agent Generated\",\n                \"buyerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            },\n            {\n                \"propertyId\": 30,\n                \"buyerPersonId\": 47853,\n                \"buyerPersonName\": \"ELLEN TROVILLION\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": \"Agent Generated\",\n                \"buyerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertySellerInfo\": null,\n        \"propertyPeopleInfo\": null,\n        \"propertyFeaturesInfo\": null,\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": null,\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 30,\n                \"financeType\": null,\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 31,\n        \"propertyAddress\": \"1990 S 6th Street, Naples, FL 34102-7518\",\n        \"mlsNumber1\": \"210024499\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:20\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2022-09-27 05:30\",\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 31,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": \"1990\",\n                \"streetDirection\": \"S\",\n                \"streetName\": \"6th\",\n                \"streetDesignation\": \"ST\",\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": null,\n                \"buildingFloorNumber\": null,\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"34102-7518\",\n                \"trType\": \"OL\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 2400000,\n                \"sellingPrice\": 2400000,\n                \"listingPricePrior\": null,\n                \"listingPrice\": 2695000,\n                \"listCommission\": 57500,\n                \"sellCommission\": 0,\n                \"refListCommission\": 0,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2010-07-15\",\n                \"expiredDate\": \"2012-12-31\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2012-10-02\",\n                \"estimatedClosingDate\": \"2012-10-30\",\n                \"cancelDate\": null,\n                \"closingDate\": \"2012-10-30\",\n                \"processedDate\": \"2012-11-01\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000071\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": \"Cash\",\n                \"classification\": null,\n                \"propertyType\": \"Single Family Home\",\n                \"propertyUse\": \"Owner Occupied\",\n                \"development\": \"LAGUNA SHORES\",\n                \"neigborhoodName\": \"AQUALANE SHORES\",\n                \"propertyLocation\": \"AQUALANE SHORES\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"3\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"1982\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"1967\",\n                \"taxYear\": \"2011\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"18245.77\",\n                \"transactionID\": \"0001000000000071\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 55,\n                \"propertyID\": 31,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 59079,\n                \"agent_ATGUID\": \"50D6CD13-9E75-4537-9EB8-10CBB0B4777B\",\n                \"agent_FullName\": \"Debbi McDsamplemott\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 1,\n                \"agent_Gross\": 57500,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 3450,\n                \"agent_Deduct3\": 9458.75,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 43923.56,\n                \"agent_BillDeduct\": 667.69,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 9458.75,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": null,\n        \"propertyBuyerInfo\": [\n            {\n                \"propertyId\": 31,\n                \"buyerPersonId\": 9125,\n                \"buyerPersonName\": \"Furrukh Munawar or assigns\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": \"Agent Generated\",\n                \"buyerleadSource\": \"Personal/Repeat Customer\",\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertySellerInfo\": [\n            {\n                \"propertyId\": 31,\n                \"sellerPersonId\": 4424,\n                \"sellerPersonName\": \"HOLSEN FAMILY LP\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"1990 - 6th Street South \",\n                \"selleremailAddress\": \"gloriaholsen@yahoo.com\",\n                \"sellerCity\": \"Naples\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"34102      \",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertyPeopleInfo\": [\n            {\n                \"propertyId\": 31,\n                \"personId\": 46077,\n                \"personName\": \"FIRST BOSTON TITLE\",\n                \"personType\": \"Title Company\",\n                \"side\": \"S\",\n                \"address\": \"2180 IMMOKALEE ROAD, #212 \",\n                \"emailAddress\": null,\n                \"phoneNumber\": null\n            },\n            {\n                \"propertyId\": 31,\n                \"personId\": 46590,\n                \"personName\": \"JOHN R WOOD REALTORS\",\n                \"personType\": \"CoBroke Office\",\n                \"side\": \"S\",\n                \"address\": \"800 5TH AVE S, STE. 200 \",\n                \"emailAddress\": null,\n                \"phoneNumber\": null\n            },\n            {\n                \"propertyId\": 31,\n                \"personId\": 57520,\n                \"personName\": \"Mitch williams\",\n                \"personType\": \"CoBroke Agent\",\n                \"side\": \"S\",\n                \"address\": \"800 5TH AVE S, STE. 200\\r\\nNaples\\r\\nFL 34102 \",\n                \"emailAddress\": null,\n                \"phoneNumber\": null\n            }\n        ],\n        \"propertyFeaturesInfo\": [\n            {\n                \"propertyFeatureID\": 13502,\n                \"propertyID\": 31,\n                \"featureType\": \"Central Electric A/C\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 40647,\n                \"propertyID\": 31,\n                \"featureType\": \"Inground Pool\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 94325,\n                \"propertyID\": 31,\n                \"featureType\": \"LS-Boating\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 97410,\n                \"propertyID\": 31,\n                \"featureType\": \"Other Construction\",\n                \"confirmed\": false\n            }\n        ],\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": [\n            {\n                \"documentID\": 3,\n                \"propertyID\": 31,\n                \"person\": null,\n                \"office\": null,\n                \"filename\": \"6TH ST S 1990 CCC.pdf\",\n                \"description\": \"6TH ST S 1990 CCC\",\n                \"showSeller\": false,\n                \"showBuyer\": false,\n                \"showListAgent\": true,\n                \"showSellAgent\": true,\n                \"previewURL\": \"https://drive.google.com/file/d/1SnB1BG1nyuJV4h009MVS4QRX6YHHiolX/preview\",\n                \"createDate\": \"2019-04-02 01:48\"\n            },\n            {\n                \"documentID\": 178,\n                \"propertyID\": 31,\n                \"person\": null,\n                \"office\": null,\n                \"filename\": \"1990 6th St S - CD_10_31_2012_01_56_34.pdf\",\n                \"description\": \"Closing Documents\",\n                \"showSeller\": false,\n                \"showBuyer\": false,\n                \"showListAgent\": true,\n                \"showSellAgent\": true,\n                \"previewURL\": \"https://drive.google.com/file/d/11Ba2H_gMMCdHqZ7nQHy8EUbOn43qGOyy/preview\",\n                \"createDate\": \"2019-04-02 01:48\"\n            }\n        ],\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": [\n            {\n                \"propertyId\": 31,\n                \"docType\": \"voucher\",\n                \"docId\": 47057,\n                \"orderDate\": \"2012-10-30T00:00:00\",\n                \"amountTotal\": 43923.56,\n                \"personId\": 59079,\n                \"personName\": \"Debbi McDsamplemott\",\n                \"sourcePost\": \"agent\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 31,\n                \"docType\": \"voucher\",\n                \"docId\": 47058,\n                \"orderDate\": \"2012-10-30T00:00:00\",\n                \"amountTotal\": 1150,\n                \"personId\": 33591,\n                \"personName\": \"SOTHEBYS INTERNATIONAL REALTY AFFILLIATES, LLC\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 31,\n                \"docType\": \"voucher\",\n                \"docId\": 47059,\n                \"orderDate\": \"2012-10-30T00:00:00\",\n                \"amountTotal\": -3450,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 31,\n                \"docType\": \"voucher\",\n                \"docId\": 47060,\n                \"orderDate\": \"2012-10-30T00:00:00\",\n                \"amountTotal\": 3450,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 31,\n                \"docType\": \"invoice\",\n                \"docId\": 1993,\n                \"orderDate\": \"2012-10-30T00:00:00\",\n                \"amountTotal\": 57500,\n                \"personId\": 26104,\n                \"personName\": \"1990 S 6th Street, Naples, FL 34102-7518\",\n                \"sourcePost\": null,\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 31,\n                \"docType\": \"invoice\",\n                \"docId\": 18311,\n                \"orderDate\": \"2012-10-30T00:00:00\",\n                \"amountTotal\": -667.69,\n                \"personId\": 59079,\n                \"personName\": \"Debbi McDsamplemott\",\n                \"sourcePost\": null,\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 31,\n                \"docType\": \"arPayment\",\n                \"docId\": 6381,\n                \"orderDate\": \"2012-11-02T00:00:00\",\n                \"amountTotal\": -667.69,\n                \"personId\": 59079,\n                \"personName\": \"Debbi McDsamplemott\",\n                \"sourcePost\": null,\n                \"description\": \"Check\",\n                \"checkNumber\": null\n            },\n            {\n                \"propertyId\": 31,\n                \"docType\": \"arPayment\",\n                \"docId\": 16232,\n                \"orderDate\": \"2012-10-30T00:00:00\",\n                \"amountTotal\": 57500,\n                \"personId\": 26104,\n                \"personName\": \"1990 S 6th Street, Naples, FL 34102-7518\",\n                \"sourcePost\": null,\n                \"description\": \"check\",\n                \"checkNumber\": null\n            },\n            {\n                \"propertyId\": 31,\n                \"docType\": \"apPayment\",\n                \"docId\": 15833,\n                \"orderDate\": \"2012-11-12T00:00:00\",\n                \"amountTotal\": 0,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"epay\"\n            },\n            {\n                \"propertyId\": 31,\n                \"docType\": \"apPayment\",\n                \"docId\": 3505,\n                \"orderDate\": \"2012-11-01T00:00:00\",\n                \"amountTotal\": 43923.56,\n                \"personId\": 59079,\n                \"personName\": \"Debbi McDsamplemott\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"12525\"\n            },\n            {\n                \"propertyId\": 31,\n                \"docType\": \"apPayment\",\n                \"docId\": 15832,\n                \"orderDate\": \"2012-11-12T00:00:00\",\n                \"amountTotal\": 1150,\n                \"personId\": 33591,\n                \"personName\": \"SOTHEBYS INTERNATIONAL REALTY AFFILLIATES, LLC\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"epay\"\n            }\n        ],\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 31,\n                \"financeType\": \"Cash\",\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 32,\n        \"propertyAddress\": \"325 Windward Way\",\n        \"mlsNumber1\": \"210024569\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:20\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2022-09-27 05:30\",\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 32,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": null,\n                \"streetDirection\": null,\n                \"streetName\": \"325 Windward Way\",\n                \"streetDesignation\": null,\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": null,\n                \"buildingFloorNumber\": null,\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"34103\",\n                \"trType\": \"OL\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 3850000,\n                \"sellingPrice\": 3850000,\n                \"listingPricePrior\": null,\n                \"listingPrice\": 4250000,\n                \"listCommission\": 96250,\n                \"sellCommission\": 0,\n                \"refListCommission\": 0,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2010-07-19\",\n                \"expiredDate\": \"2011-11-22\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2011-05-03\",\n                \"estimatedClosingDate\": \"2011-07-02\",\n                \"cancelDate\": null,\n                \"closingDate\": null,\n                \"processedDate\": \"2011-06-28\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000072\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": null,\n                \"classification\": null,\n                \"propertyType\": \"Single Family Home\",\n                \"propertyUse\": \"Owner Occupied\",\n                \"development\": null,\n                \"neigborhoodName\": \"\",\n                \"propertyLocation\": \"WINDWARD WAY - 325\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"4\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"5675\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"2003\",\n                \"taxYear\": \"0\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"0.00\",\n                \"transactionID\": \"0001000000000072\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 56,\n                \"propertyID\": 32,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71741,\n                \"agent_ATGUID\": \"294DBD60-541B-4855-AFCF-2DAAFDEF2FE1\",\n                \"agent_FullName\": \"Ruth Trettsample\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": null,\n        \"propertyBuyerInfo\": [\n            {\n                \"propertyId\": 32,\n                \"buyerPersonId\": 33971,\n                \"buyerPersonName\": \"ROBERT FEDORIS\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": null,\n                \"buyerleadSource\": null,\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertySellerInfo\": [\n            {\n                \"propertyId\": 32,\n                \"sellerPersonId\": 66895,\n                \"sellerPersonName\": \"Diane Zent\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"325 Windward Way \",\n                \"selleremailAddress\": \"\",\n                \"sellerCity\": \"Naples\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"34103\",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Personal/Repeat Customer\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertyPeopleInfo\": null,\n        \"propertyFeaturesInfo\": [\n            {\n                \"propertyFeatureID\": 67824,\n                \"propertyID\": 32,\n                \"featureType\": \"Bay View\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 105907,\n                \"propertyID\": 32,\n                \"featureType\": \"Boat Dock\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 133453,\n                \"propertyID\": 32,\n                \"featureType\": \"Central Air\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 76823,\n                \"propertyID\": 32,\n                \"featureType\": \"Central Electric A/C\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 6733,\n                \"propertyID\": 32,\n                \"featureType\": \"City/Town Street\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 72476,\n                \"propertyID\": 32,\n                \"featureType\": \"Custom\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 11323,\n                \"propertyID\": 32,\n                \"featureType\": \"Deck/Patio\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 79802,\n                \"propertyID\": 32,\n                \"featureType\": \"Forced Air - Electric\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 616,\n                \"propertyID\": 32,\n                \"featureType\": \"LS-Boating\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 104213,\n                \"propertyID\": 32,\n                \"featureType\": \"LS-Fishing\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 132512,\n                \"propertyID\": 32,\n                \"featureType\": \"LS-Water View\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 79782,\n                \"propertyID\": 32,\n                \"featureType\": \"LS-Waterfront\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 21760,\n                \"propertyID\": 32,\n                \"featureType\": \"Other Construction\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 45647,\n                \"propertyID\": 32,\n                \"featureType\": \"Pool - Outdoor\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 83618,\n                \"propertyID\": 32,\n                \"featureType\": \"Pool-In Ground\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 110562,\n                \"propertyID\": 32,\n                \"featureType\": \"Residential\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 21881,\n                \"propertyID\": 32,\n                \"featureType\": \"Water View\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 101048,\n                \"propertyID\": 32,\n                \"featureType\": \"Yes\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 9081,\n                \"propertyID\": 32,\n                \"featureType\": \"Yes\",\n                \"confirmed\": false\n            }\n        ],\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": null,\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 32,\n                \"financeType\": null,\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 33,\n        \"propertyAddress\": \"626 Gulf Shore Blvd. S.\",\n        \"mlsNumber1\": \"211001081\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:20\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2022-09-27 05:30\",\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 33,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": null,\n                \"streetDirection\": null,\n                \"streetName\": \"626 Gulf Shore Blvd. S.\",\n                \"streetDesignation\": null,\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": null,\n                \"buildingFloorNumber\": null,\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"34102\",\n                \"trType\": \"OL\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 6000000,\n                \"sellingPrice\": 6000000,\n                \"listingPricePrior\": null,\n                \"listingPrice\": 6500000,\n                \"listCommission\": 150000,\n                \"sellCommission\": 0,\n                \"refListCommission\": 37500,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2010-07-19\",\n                \"expiredDate\": \"2011-06-30\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2011-02-06\",\n                \"estimatedClosingDate\": \"2011-04-07\",\n                \"cancelDate\": null,\n                \"closingDate\": null,\n                \"processedDate\": \"2011-03-11\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000073\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": null,\n                \"classification\": null,\n                \"propertyType\": \"Single Family Home\",\n                \"propertyUse\": \"Owner Occupied\",\n                \"development\": null,\n                \"neigborhoodName\": \"\",\n                \"propertyLocation\": \"GULF SHORE BLVD. S. - 626\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"2\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"3200\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"1916\",\n                \"taxYear\": \"0\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"0.00\",\n                \"transactionID\": \"0001000000000073\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 57,\n                \"propertyID\": 33,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71741,\n                \"agent_ATGUID\": \"294DBD60-541B-4855-AFCF-2DAAFDEF2FE1\",\n                \"agent_FullName\": \"Ruth Trettsample\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": null,\n        \"propertyBuyerInfo\": null,\n        \"propertySellerInfo\": [\n            {\n                \"propertyId\": 33,\n                \"sellerPersonId\": 3772,\n                \"sellerPersonName\": \"Arnold Aronoff\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"626 Gulf Shore Blvd. S. \",\n                \"selleremailAddress\": \"\",\n                \"sellerCity\": \"Naples\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"34102\",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertyPeopleInfo\": null,\n        \"propertyFeaturesInfo\": [\n            {\n                \"propertyFeatureID\": 53053,\n                \"propertyID\": 33,\n                \"featureType\": \"Asphalt Shingle\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 36560,\n                \"propertyID\": 33,\n                \"featureType\": \"Central Air\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 22430,\n                \"propertyID\": 33,\n                \"featureType\": \"Central Electric A/C\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 88873,\n                \"propertyID\": 33,\n                \"featureType\": \"City/Town Street\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 90291,\n                \"propertyID\": 33,\n                \"featureType\": \"Cottage\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 88293,\n                \"propertyID\": 33,\n                \"featureType\": \"Deck/Patio\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 18550,\n                \"propertyID\": 33,\n                \"featureType\": \"Forced Air - Electric\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 10683,\n                \"propertyID\": 33,\n                \"featureType\": \"Frame/Wood\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 38023,\n                \"propertyID\": 33,\n                \"featureType\": \"Guest House(s)\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 12770,\n                \"propertyID\": 33,\n                \"featureType\": \"Inground Pool\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 27426,\n                \"propertyID\": 33,\n                \"featureType\": \"LS-Fishing\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 60336,\n                \"propertyID\": 33,\n                \"featureType\": \"LS-Historic/Antique\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 127967,\n                \"propertyID\": 33,\n                \"featureType\": \"LS-Metropolitan\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 36303,\n                \"propertyID\": 33,\n                \"featureType\": \"LS-Ocean/Beach\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 38862,\n                \"propertyID\": 33,\n                \"featureType\": \"LS-Water View\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 129513,\n                \"propertyID\": 33,\n                \"featureType\": \"LS-Waterfront\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 517,\n                \"propertyID\": 33,\n                \"featureType\": \"Open Porch\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 94497,\n                \"propertyID\": 33,\n                \"featureType\": \"Pool - Outdoor\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 25571,\n                \"propertyID\": 33,\n                \"featureType\": \"Pool-In Ground\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 654,\n                \"propertyID\": 33,\n                \"featureType\": \"Residential\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 88758,\n                \"propertyID\": 33,\n                \"featureType\": \"Water View\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 26482,\n                \"propertyID\": 33,\n                \"featureType\": \"Yes\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 98521,\n                \"propertyID\": 33,\n                \"featureType\": \"Yes\",\n                \"confirmed\": false\n            }\n        ],\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": null,\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 33,\n                \"financeType\": null,\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 34,\n        \"propertyAddress\": \"1056 Forest Lakes Drive #A-206\",\n        \"mlsNumber1\": \"210032914\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:20\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2022-09-27 05:30\",\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 34,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": null,\n                \"streetDirection\": null,\n                \"streetName\": \"1056 Forest Lakes Drive #A-206\",\n                \"streetDesignation\": null,\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": null,\n                \"buildingFloorNumber\": null,\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"34105\",\n                \"trType\": \"OL\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 100000,\n                \"sellingPrice\": 100000,\n                \"listingPricePrior\": null,\n                \"listingPrice\": 120000,\n                \"listCommission\": 3000,\n                \"sellCommission\": 0,\n                \"refListCommission\": 0,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2010-09-30\",\n                \"expiredDate\": \"2011-12-20\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2011-05-31\",\n                \"estimatedClosingDate\": \"2011-07-30\",\n                \"cancelDate\": null,\n                \"closingDate\": null,\n                \"processedDate\": \"2011-06-17\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000075\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": null,\n                \"classification\": null,\n                \"propertyType\": \"Condominium\",\n                \"propertyUse\": \"Owner Occupied\",\n                \"development\": null,\n                \"neigborhoodName\": \"\",\n                \"propertyLocation\": \"FOREST LAKES V #A-206\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"2\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"1050\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"1979\",\n                \"taxYear\": \"0\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"0.00\",\n                \"transactionID\": \"0001000000000075\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 58,\n                \"propertyID\": 34,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71741,\n                \"agent_ATGUID\": \"294DBD60-541B-4855-AFCF-2DAAFDEF2FE1\",\n                \"agent_FullName\": \"Ruth Trettsample\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": null,\n        \"propertyBuyerInfo\": [\n            {\n                \"propertyId\": 34,\n                \"buyerPersonId\": 3663,\n                \"buyerPersonName\": \"ANTIONETTE SPRING\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": null,\n                \"buyerleadSource\": null,\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            },\n            {\n                \"propertyId\": 34,\n                \"buyerPersonId\": 9089,\n                \"buyerPersonName\": \"FREDERICK SPRING\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": null,\n                \"buyerleadSource\": null,\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertySellerInfo\": [\n            {\n                \"propertyId\": 34,\n                \"sellerPersonId\": 21880,\n                \"sellerPersonName\": \"Barbara Schmit\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"1056 Forest Lakes Drive #A-206 \",\n                \"selleremailAddress\": \"\",\n                \"sellerCity\": \"Naples\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"34105\",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Personal/Repeat Customer\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertyPeopleInfo\": null,\n        \"propertyFeaturesInfo\": [\n            {\n                \"propertyFeatureID\": 70834,\n                \"propertyID\": 34,\n                \"featureType\": \"Central Electric A/C\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 101898,\n                \"propertyID\": 34,\n                \"featureType\": \"Club House\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 71937,\n                \"propertyID\": 34,\n                \"featureType\": \"Condominium\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 67560,\n                \"propertyID\": 34,\n                \"featureType\": \"Forced Air - Electric\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 6184,\n                \"propertyID\": 34,\n                \"featureType\": \"Golf Community\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 97755,\n                \"propertyID\": 34,\n                \"featureType\": \"Inground Pool\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 71053,\n                \"propertyID\": 34,\n                \"featureType\": \"LS-55+ Retirement Community\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 41124,\n                \"propertyID\": 34,\n                \"featureType\": \"LS-Country Club\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 53959,\n                \"propertyID\": 34,\n                \"featureType\": \"LS-Golf\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 58082,\n                \"propertyID\": 34,\n                \"featureType\": \"LS-Tennis\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 1640,\n                \"propertyID\": 34,\n                \"featureType\": \"Pool - Outdoor\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 69038,\n                \"propertyID\": 34,\n                \"featureType\": \"Pool-In Ground\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 78039,\n                \"propertyID\": 34,\n                \"featureType\": \"Residential\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 57228,\n                \"propertyID\": 34,\n                \"featureType\": \"Yes\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 35419,\n                \"propertyID\": 34,\n                \"featureType\": \"Yes\",\n                \"confirmed\": false\n            }\n        ],\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": null,\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 34,\n                \"financeType\": null,\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 35,\n        \"propertyAddress\": \"590 Palm Circle West\",\n        \"mlsNumber1\": \"210034003\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:20\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2022-09-27 05:30\",\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 35,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": null,\n                \"streetDirection\": null,\n                \"streetName\": \"590 Palm Circle West\",\n                \"streetDesignation\": null,\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": null,\n                \"buildingFloorNumber\": null,\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"34102\",\n                \"trType\": \"IH\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 1190000,\n                \"sellingPrice\": 1190000,\n                \"listingPricePrior\": null,\n                \"listingPrice\": 1290000,\n                \"listCommission\": 29750,\n                \"sellCommission\": 29750,\n                \"refListCommission\": 0,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2010-10-11\",\n                \"expiredDate\": \"2011-04-30\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2010-11-30\",\n                \"estimatedClosingDate\": \"2010-12-21\",\n                \"cancelDate\": null,\n                \"closingDate\": null,\n                \"processedDate\": \"2010-12-21\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000077\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": null,\n                \"classification\": null,\n                \"propertyType\": \"Single Family Home\",\n                \"propertyUse\": \"Owner Occupied\",\n                \"development\": null,\n                \"neigborhoodName\": \"\",\n                \"propertyLocation\": \"PALM CIRCLE WEST - 590 (RIDGE LAKE)\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"3\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"2506\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"0\",\n                \"taxYear\": \"0\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"0.00\",\n                \"transactionID\": \"0001000000000077\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 59,\n                \"propertyID\": 35,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71754,\n                \"agent_ATGUID\": \"01E8508D-8791-4849-B645-D3B45FF1288B\",\n                \"agent_FullName\": \"Karen Van Arsdasample\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": [\n            {\n                \"propertyDeductionID\": 60,\n                \"propertyID\": 35,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71754,\n                \"agent_ATGUID\": \"01E8508D-8791-4849-B645-D3B45FF1288B\",\n                \"agent_FullName\": \"Karen Van Arsdasample\",\n                \"personType\": \"agent\",\n                \"side\": \"S\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyBuyerInfo\": [\n            {\n                \"propertyId\": 35,\n                \"buyerPersonId\": 29499,\n                \"buyerPersonName\": \"LEE ANDERSON\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": \"Agent Generated\",\n                \"buyerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            },\n            {\n                \"propertyId\": 35,\n                \"buyerPersonId\": 66273,\n                \"buyerPersonName\": \"HELEN ANDERSON\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": \"Agent Generated\",\n                \"buyerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertySellerInfo\": null,\n        \"propertyPeopleInfo\": null,\n        \"propertyFeaturesInfo\": null,\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": null,\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 35,\n                \"financeType\": null,\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 36,\n        \"propertyAddress\": \"6573 Marissa Loop #PH1\",\n        \"mlsNumber1\": \"210034458\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:20\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2022-09-27 05:30\",\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 36,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": null,\n                \"streetDirection\": null,\n                \"streetName\": \"6573 Marissa Loop #PH1\",\n                \"streetDesignation\": null,\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": null,\n                \"buildingFloorNumber\": null,\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"34108\",\n                \"trType\": \"OL\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 1200000,\n                \"sellingPrice\": 1200000,\n                \"listingPricePrior\": null,\n                \"listingPrice\": 1595000,\n                \"listCommission\": 36000,\n                \"sellCommission\": 0,\n                \"refListCommission\": 0,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2010-10-14\",\n                \"expiredDate\": \"2011-08-31\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2011-04-18\",\n                \"estimatedClosingDate\": \"2011-06-17\",\n                \"cancelDate\": null,\n                \"closingDate\": null,\n                \"processedDate\": \"2011-07-01\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000080\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": null,\n                \"classification\": null,\n                \"propertyType\": \"Condominium\",\n                \"propertyUse\": \"Owner Occupied\",\n                \"development\": null,\n                \"neigborhoodName\": \"\",\n                \"propertyLocation\": \"ST. MARISSA #PH1\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"5\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"3638\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"0\",\n                \"taxYear\": \"0\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"0.00\",\n                \"transactionID\": \"0001000000000080\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 61,\n                \"propertyID\": 36,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71754,\n                \"agent_ATGUID\": \"01E8508D-8791-4849-B645-D3B45FF1288B\",\n                \"agent_FullName\": \"Karen Van Arsdasample\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": null,\n        \"propertyBuyerInfo\": null,\n        \"propertySellerInfo\": [\n            {\n                \"propertyId\": 36,\n                \"sellerPersonId\": 11876,\n                \"sellerPersonName\": \"SUSAN K PORTER\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"6573 Marissa Loop #PH1 \",\n                \"selleremailAddress\": \"\",\n                \"sellerCity\": \"Naples\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"34108\",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            },\n            {\n                \"propertyId\": 36,\n                \"sellerPersonId\": 30615,\n                \"sellerPersonName\": \"TERRY PORTER\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"6573 Marissa Loop #PH1 \",\n                \"selleremailAddress\": \"terry-porter1@comcast.net\",\n                \"sellerCity\": \"Naples\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"34108\",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Personal/Repeat Customer\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertyPeopleInfo\": null,\n        \"propertyFeaturesInfo\": null,\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": null,\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 36,\n                \"financeType\": null,\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 37,\n        \"propertyAddress\": \"258 LITTLE HARBOUR LN\",\n        \"mlsNumber1\": \"210036375\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:20\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2022-09-27 05:30\",\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 37,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": null,\n                \"streetDirection\": null,\n                \"streetName\": \"258 LITTLE HARBOUR LN\",\n                \"streetDesignation\": null,\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": null,\n                \"buildingFloorNumber\": null,\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"34102\",\n                \"trType\": \"IH\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 3910000,\n                \"sellingPrice\": 3910000,\n                \"listingPricePrior\": null,\n                \"listingPrice\": 4550000,\n                \"listCommission\": 78200,\n                \"sellCommission\": 78200,\n                \"refListCommission\": 0,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2010-11-01\",\n                \"expiredDate\": \"2011-05-15\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2010-12-29\",\n                \"estimatedClosingDate\": \"2011-01-14\",\n                \"cancelDate\": null,\n                \"closingDate\": null,\n                \"processedDate\": \"2011-01-14\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000083\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": null,\n                \"classification\": null,\n                \"propertyType\": \"Single Family Home\",\n                \"propertyUse\": \"Other Residential\",\n                \"development\": null,\n                \"neigborhoodName\": \"\",\n                \"propertyLocation\": \"LITTLE HARBOUR LOT 34\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"4\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"4806\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"0\",\n                \"taxYear\": \"0\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"34737.00\",\n                \"transactionID\": \"0001000000000083\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 62,\n                \"propertyID\": 37,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71754,\n                \"agent_ATGUID\": \"01E8508D-8791-4849-B645-D3B45FF1288B\",\n                \"agent_FullName\": \"Karen Van Arsdasample\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": [\n            {\n                \"propertyDeductionID\": 63,\n                \"propertyID\": 37,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71754,\n                \"agent_ATGUID\": \"01E8508D-8791-4849-B645-D3B45FF1288B\",\n                \"agent_FullName\": \"Karen Van Arsdasample\",\n                \"personType\": \"agent\",\n                \"side\": \"S\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyBuyerInfo\": [\n            {\n                \"propertyId\": 37,\n                \"buyerPersonId\": 66105,\n                \"buyerPersonName\": \"HARRIETTE GUSSENHOVEN\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": \"Agent Generated\",\n                \"buyerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertySellerInfo\": [\n            {\n                \"propertyId\": 37,\n                \"sellerPersonId\": 74624,\n                \"sellerPersonName\": \"MC GRATH\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"258 LITTLE HARBOUR LN \",\n                \"selleremailAddress\": \"\",\n                \"sellerCity\": \"Naples\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"34102\",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertyPeopleInfo\": null,\n        \"propertyFeaturesInfo\": null,\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": null,\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 37,\n                \"financeType\": null,\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 38,\n        \"propertyAddress\": \"2607 HALF MOON WALK\",\n        \"mlsNumber1\": \"210037153\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:21\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2022-09-27 05:30\",\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 38,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": null,\n                \"streetDirection\": null,\n                \"streetName\": \"2607 HALF MOON WALK\",\n                \"streetDesignation\": null,\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": null,\n                \"buildingFloorNumber\": null,\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"34102\",\n                \"trType\": \"OL\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 1650000,\n                \"sellingPrice\": 1650000,\n                \"listingPricePrior\": null,\n                \"listingPrice\": 2100000,\n                \"listCommission\": 33000,\n                \"sellCommission\": 0,\n                \"refListCommission\": 0,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2010-11-08\",\n                \"expiredDate\": \"2011-05-14\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2010-12-14\",\n                \"estimatedClosingDate\": \"2011-02-12\",\n                \"cancelDate\": null,\n                \"closingDate\": null,\n                \"processedDate\": \"2011-03-21\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000084\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": null,\n                \"classification\": null,\n                \"propertyType\": \"Single Family Home\",\n                \"propertyUse\": \"Owner Occupied\",\n                \"development\": null,\n                \"neigborhoodName\": \"\",\n                \"propertyLocation\": \"LANTERN LAKE ADD PORT ROYAL LOT 73, LESS 10FT DRAI\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"2\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"3083\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"0\",\n                \"taxYear\": \"0\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"5914.00\",\n                \"transactionID\": \"0001000000000084\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 64,\n                \"propertyID\": 38,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71805,\n                \"agent_ATGUID\": \"6575E716-01EA-4DBB-9909-D7BA05F16AC8\",\n                \"agent_FullName\": \"Virginia Wsamplessample\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": null,\n        \"propertyBuyerInfo\": [\n            {\n                \"propertyId\": 38,\n                \"buyerPersonId\": 12019,\n                \"buyerPersonName\": \"SUSAN S JONES\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": null,\n                \"buyerleadSource\": null,\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            },\n            {\n                \"propertyId\": 38,\n                \"buyerPersonId\": 27813,\n                \"buyerPersonName\": \"ROBERT C JONES\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": null,\n                \"buyerleadSource\": null,\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertySellerInfo\": [\n            {\n                \"propertyId\": 38,\n                \"sellerPersonId\": 75586,\n                \"sellerPersonName\": \"UIHLEIN TRUST\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"2607 HALF MOON WALK \",\n                \"selleremailAddress\": \"\",\n                \"sellerCity\": \"Naples\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"34102\",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertyPeopleInfo\": null,\n        \"propertyFeaturesInfo\": null,\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": null,\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 38,\n                \"financeType\": null,\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 39,\n        \"propertyAddress\": \"1560 Clermont Drive, 202, Naples, FL 34109-3331\",\n        \"mlsNumber1\": \"211502994\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:21\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2022-09-27 05:30\",\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 39,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": \"1560\",\n                \"streetDirection\": null,\n                \"streetName\": \"Clermont\",\n                \"streetDesignation\": \"DR\",\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": \"202\",\n                \"buildingFloorNumber\": null,\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"34109-3331\",\n                \"trType\": \"OL\",\n                \"status\": \"Withdrawn\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 0,\n                \"sellingPrice\": 0,\n                \"listingPricePrior\": 359900,\n                \"listingPrice\": 295011,\n                \"listCommission\": 0,\n                \"sellCommission\": 0,\n                \"refListCommission\": 0,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2012-04-12\",\n                \"expiredDate\": \"2012-06-30\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": null,\n                \"estimatedClosingDate\": null,\n                \"cancelDate\": null,\n                \"closingDate\": null,\n                \"processedDate\": null,\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000085\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": null,\n                \"classification\": null,\n                \"propertyType\": \"Condominium\",\n                \"propertyUse\": \"Other Residential\",\n                \"development\": \"PELICAN MARSH\",\n                \"neigborhoodName\": \"PELICAN MARSH\",\n                \"propertyLocation\": \"PELICAN MARSH - CLERMONT\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"3\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"1820\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"1997\",\n                \"taxYear\": \"2011\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"4218.60\",\n                \"transactionID\": \"0001000000000085\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 65,\n                \"propertyID\": 39,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 52424,\n                \"agent_ATGUID\": \"CA54757D-89EB-4158-A4A4-A7EED4D5D57C\",\n                \"agent_FullName\": \"Michael Jsampledan\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": null,\n        \"propertyBuyerInfo\": null,\n        \"propertySellerInfo\": [\n            {\n                \"propertyId\": 39,\n                \"sellerPersonId\": 74629,\n                \"sellerPersonName\": \"MCCARTHY MCCARTHY\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"1560 CLERMONT DR \",\n                \"selleremailAddress\": \"\",\n                \"sellerCity\": \"Naples\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"34109\",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertyPeopleInfo\": null,\n        \"propertyFeaturesInfo\": [\n            {\n                \"propertyFeatureID\": 77865,\n                \"propertyID\": 39,\n                \"featureType\": \"Central Electric A/C\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 34394,\n                \"propertyID\": 39,\n                \"featureType\": \"Exercise Room\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 105248,\n                \"propertyID\": 39,\n                \"featureType\": \"Family Room\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 49118,\n                \"propertyID\": 39,\n                \"featureType\": \"Golf Community\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 20477,\n                \"propertyID\": 39,\n                \"featureType\": \"Other Construction\",\n                \"confirmed\": false\n            }\n        ],\n        \"propertyRemarksInfo\": [\n            {\n                \"propertyRemarkID\": 1,\n                \"propertyID\": 39,\n                \"remarkType\": \"Directions\",\n                \"remarkText\": \" Enter Pelican Marsh from either gate from 41N or Airport Pulling Rd.  Show card at gate.  Clermont is 1 mile down Pelican Marsh Blvd. Once in Clermont bear right all the way around.  Last building...202.\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyRemarkID\": 2,\n                \"propertyID\": 39,\n                \"remarkType\": \"Property Remarks\",\n                \"remarkText\": \" Easy to show. Bright, open, colorful tree-top Clermont coach Home!  Private corner with garden and fountain view from spacious lanai. Brand new wide plank Acacia hand-scraped floors, New A/C, H2O tank, stainless appliances, fixtures, hardware, newly painted walls & sealed garage floor. Grand great room with 3 beds and 2 baths. Enjoy a Pelican Marsh address with all the amenities and activities the new Community Center has to offer, next door!  Tennis, yoga, fitness, movies. Golf membership available. Minutes from the beach, Mercato, Waterside shops. 15 minutes to Old Naples and 25 minutes to the airport. The perfect home in Naples!  Potential Short Sale. Being sold as is.\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyRemarkID\": 3,\n                \"propertyID\": 39,\n                \"remarkType\": \"Showing Instructions\",\n                \"remarkText\": \" 24Hr Notice,Call Listing Office,No Sign On Property,Notify Guard,Owner Occupied,Pet On Premises,Short Notice OK\",\n                \"confirmed\": false\n            }\n        ],\n        \"propertyRoomsInfo\": [\n            {\n                \"propertyRoomID\": 72,\n                \"propertyID\": 39,\n                \"description\": \"Bedroom 2\",\n                \"roomName\": \"Bedroom 2\",\n                \"roomLength\": 11,\n                \"roomWidth\": 12,\n                \"sequenceNumber\": 10,\n                \"confirmed\": false\n            },\n            {\n                \"propertyRoomID\": 162,\n                \"propertyID\": 39,\n                \"description\": \"Bedroom 3\",\n                \"roomName\": \"Bedroom 3\",\n                \"roomLength\": 11,\n                \"roomWidth\": 10,\n                \"sequenceNumber\": 11,\n                \"confirmed\": false\n            },\n            {\n                \"propertyRoomID\": 327,\n                \"propertyID\": 39,\n                \"description\": \"Dining Room\",\n                \"roomName\": \"Dining Room\",\n                \"roomLength\": 13,\n                \"roomWidth\": 8,\n                \"sequenceNumber\": 2,\n                \"confirmed\": false\n            },\n            {\n                \"propertyRoomID\": 508,\n                \"propertyID\": 39,\n                \"description\": \"Great Room\",\n                \"roomName\": \"Great Room\",\n                \"roomLength\": 22,\n                \"roomWidth\": 17,\n                \"sequenceNumber\": 7,\n                \"confirmed\": false\n            },\n            {\n                \"propertyRoomID\": 761,\n                \"propertyID\": 39,\n                \"description\": \"Master Bedroom\",\n                \"roomName\": \"Master Bedroom\",\n                \"roomLength\": 19,\n                \"roomWidth\": 12,\n                \"sequenceNumber\": 9,\n                \"confirmed\": false\n            }\n        ],\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": null,\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 39,\n                \"financeType\": null,\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 40,\n        \"propertyAddress\": \"2630 Half Moon Walk\",\n        \"mlsNumber1\": \"210036556\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:21\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2022-09-27 05:30\",\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 40,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": null,\n                \"streetDirection\": null,\n                \"streetName\": \"2630 Half Moon Walk\",\n                \"streetDesignation\": null,\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": null,\n                \"buildingFloorNumber\": null,\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"34102\",\n                \"trType\": \"IH\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 1925000,\n                \"sellingPrice\": 1925000,\n                \"listingPricePrior\": null,\n                \"listingPrice\": 2375000,\n                \"listCommission\": 48125,\n                \"sellCommission\": 48125,\n                \"refListCommission\": 0,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2010-11-01\",\n                \"expiredDate\": \"2011-11-01\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2011-06-13\",\n                \"estimatedClosingDate\": \"2011-08-12\",\n                \"cancelDate\": null,\n                \"closingDate\": null,\n                \"processedDate\": \"2011-08-01\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000088\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": null,\n                \"classification\": null,\n                \"propertyType\": \"Single Family Home\",\n                \"propertyUse\": \"Other Residential\",\n                \"development\": null,\n                \"neigborhoodName\": \"\",\n                \"propertyLocation\": \"HALF MOON WALK AT PORT ROYAL\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"3\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"2513\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"0\",\n                \"taxYear\": \"0\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"22239.00\",\n                \"transactionID\": \"0001000000000088\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 66,\n                \"propertyID\": 40,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71820,\n                \"agent_ATGUID\": \"29DDB0ED-DA8E-4A64-ACD1-7A99E4F49000\",\n                \"agent_FullName\": \"Chris Yanssample\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": [\n            {\n                \"propertyDeductionID\": 67,\n                \"propertyID\": 40,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71754,\n                \"agent_ATGUID\": \"01E8508D-8791-4849-B645-D3B45FF1288B\",\n                \"agent_FullName\": \"Karen Van Arsdasample\",\n                \"personType\": \"agent\",\n                \"side\": \"S\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyBuyerInfo\": [\n            {\n                \"propertyId\": 40,\n                \"buyerPersonId\": 48804,\n                \"buyerPersonName\": \"MARY ANN LEVINE\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": \"Agent Generated\",\n                \"buyerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertySellerInfo\": [\n            {\n                \"propertyId\": 40,\n                \"sellerPersonId\": 37016,\n                \"sellerPersonName\": \"WILLIAM O KASTEN\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"2630 HALF MOON WALK \",\n                \"selleremailAddress\": \"\",\n                \"sellerCity\": \"Naples\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"34102\",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertyPeopleInfo\": null,\n        \"propertyFeaturesInfo\": null,\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": null,\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 40,\n                \"financeType\": null,\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 41,\n        \"propertyAddress\": \"575 1ST AVE N\",\n        \"mlsNumber1\": \"210036644\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:21\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2022-09-27 05:30\",\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 41,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": null,\n                \"streetDirection\": null,\n                \"streetName\": \"575 1ST AVE N\",\n                \"streetDesignation\": null,\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": null,\n                \"buildingFloorNumber\": null,\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"34102\",\n                \"trType\": \"OL\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 960000,\n                \"sellingPrice\": 960000,\n                \"listingPricePrior\": null,\n                \"listingPrice\": 1195000,\n                \"listCommission\": 28800,\n                \"sellCommission\": 0,\n                \"refListCommission\": 5760,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2010-11-03\",\n                \"expiredDate\": \"2011-05-16\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2011-02-27\",\n                \"estimatedClosingDate\": \"2011-04-28\",\n                \"cancelDate\": null,\n                \"closingDate\": null,\n                \"processedDate\": \"2011-03-16\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000089\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": null,\n                \"classification\": null,\n                \"propertyType\": \"Single Family Home\",\n                \"propertyUse\": \"Other Residential\",\n                \"development\": null,\n                \"neigborhoodName\": \"\",\n                \"propertyLocation\": \"NAPLES T 6 BLK 22 W 75FT OF S 4FT OF LOT 13 + W 75\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"4\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"2805\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"0\",\n                \"taxYear\": \"0\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"5292.00\",\n                \"transactionID\": \"0001000000000089\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 68,\n                \"propertyID\": 41,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71754,\n                \"agent_ATGUID\": \"01E8508D-8791-4849-B645-D3B45FF1288B\",\n                \"agent_FullName\": \"Karen Van Arsdasample\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": null,\n        \"propertyBuyerInfo\": [\n            {\n                \"propertyId\": 41,\n                \"buyerPersonId\": 5767,\n                \"buyerPersonName\": \"SUSAN AGEE KUNDA\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": null,\n                \"buyerleadSource\": null,\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            },\n            {\n                \"propertyId\": 41,\n                \"buyerPersonId\": 62697,\n                \"buyerPersonName\": \"TIMOTHY W KUNDA\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": null,\n                \"buyerleadSource\": null,\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertySellerInfo\": [\n            {\n                \"propertyId\": 41,\n                \"sellerPersonId\": 3075,\n                \"sellerPersonName\": \"RICE RICE\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"575 1ST AVE N \",\n                \"selleremailAddress\": \"\",\n                \"sellerCity\": \"Naples\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"34102\",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertyPeopleInfo\": null,\n        \"propertyFeaturesInfo\": null,\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": null,\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 41,\n                \"financeType\": null,\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 42,\n        \"propertyAddress\": \"458 11TH AVE S\",\n        \"mlsNumber1\": \"210037863\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:21\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2022-09-27 05:30\",\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 42,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": null,\n                \"streetDirection\": null,\n                \"streetName\": \"458 11TH AVE S\",\n                \"streetDesignation\": null,\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": null,\n                \"buildingFloorNumber\": null,\n                \"city\": \"NAPLES\",\n                \"state\": \"FL\",\n                \"zip\": \"34102\",\n                \"trType\": \"IH\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 1500000,\n                \"sellingPrice\": 1500000,\n                \"listingPricePrior\": null,\n                \"listingPrice\": 1700000,\n                \"listCommission\": 37500,\n                \"sellCommission\": 37500,\n                \"refListCommission\": 0,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2010-11-12\",\n                \"expiredDate\": \"2011-05-11\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2011-03-08\",\n                \"estimatedClosingDate\": \"2011-05-07\",\n                \"cancelDate\": null,\n                \"closingDate\": null,\n                \"processedDate\": \"2011-03-29\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000092\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": null,\n                \"classification\": null,\n                \"propertyType\": \"Townhouse\",\n                \"propertyUse\": \"Owner Occupied\",\n                \"development\": null,\n                \"neigborhoodName\": \"\",\n                \"propertyLocation\": \"CASA BELLA A CONDOMINIUM UNIT 3\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"3\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"3214\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"0\",\n                \"taxYear\": \"0\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"17985.00\",\n                \"transactionID\": \"0001000000000092\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 69,\n                \"propertyID\": 42,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 59094,\n                \"agent_ATGUID\": \"722B638C-97DF-40C5-8641-FD5230DE0E98\",\n                \"agent_FullName\": \"Beth McNichsamples\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": [\n            {\n                \"propertyDeductionID\": 70,\n                \"propertyID\": 42,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 59094,\n                \"agent_ATGUID\": \"722B638C-97DF-40C5-8641-FD5230DE0E98\",\n                \"agent_FullName\": \"Beth McNichsamples\",\n                \"personType\": \"agent\",\n                \"side\": \"S\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyBuyerInfo\": [\n            {\n                \"propertyId\": 42,\n                \"buyerPersonId\": 47322,\n                \"buyerPersonName\": \"BRADLEY J BELL\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": \"Agent Generated\",\n                \"buyerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertySellerInfo\": [\n            {\n                \"propertyId\": 42,\n                \"sellerPersonId\": 73383,\n                \"sellerPersonName\": \"DAMON TRUST DAMON TRUST\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"458 11TH AVE S \",\n                \"selleremailAddress\": \"\",\n                \"sellerCity\": \"NAPLES\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"34102\",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertyPeopleInfo\": null,\n        \"propertyFeaturesInfo\": null,\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": null,\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 42,\n                \"financeType\": null,\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 43,\n        \"propertyAddress\": \"1051 3RD STREET SOUTH\",\n        \"mlsNumber1\": \"210040060\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:21\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2022-09-27 05:30\",\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 43,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": null,\n                \"streetDirection\": null,\n                \"streetName\": \"1051 3RD STREET SOUTH\",\n                \"streetDesignation\": null,\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": null,\n                \"buildingFloorNumber\": null,\n                \"city\": \"NAPLES\",\n                \"state\": \"FL\",\n                \"zip\": \"341027049\",\n                \"trType\": \"IH\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 600000,\n                \"sellingPrice\": 600000,\n                \"listingPricePrior\": null,\n                \"listingPrice\": 649000,\n                \"listCommission\": 18000,\n                \"sellCommission\": 18000,\n                \"refListCommission\": 0,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2010-12-02\",\n                \"expiredDate\": \"2011-04-30\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2011-02-11\",\n                \"estimatedClosingDate\": \"2011-04-12\",\n                \"cancelDate\": null,\n                \"closingDate\": null,\n                \"processedDate\": \"2011-04-12\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000097\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": null,\n                \"classification\": null,\n                \"propertyType\": \"Condominium\",\n                \"propertyUse\": \"Owner Occupied\",\n                \"development\": null,\n                \"neigborhoodName\": \"\",\n                \"propertyLocation\": \"SOUTH BEACH CLUB AT OLD NAPLES\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"2\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"1085\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"1973\",\n                \"taxYear\": \"0\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"0.00\",\n                \"transactionID\": \"0001000000000097\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 71,\n                \"propertyID\": 43,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71741,\n                \"agent_ATGUID\": \"294DBD60-541B-4855-AFCF-2DAAFDEF2FE1\",\n                \"agent_FullName\": \"Ruth Trettsample\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": [\n            {\n                \"propertyDeductionID\": 72,\n                \"propertyID\": 43,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71741,\n                \"agent_ATGUID\": \"294DBD60-541B-4855-AFCF-2DAAFDEF2FE1\",\n                \"agent_FullName\": \"Ruth Trettsample\",\n                \"personType\": \"agent\",\n                \"side\": \"S\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyBuyerInfo\": [\n            {\n                \"propertyId\": 43,\n                \"buyerPersonId\": 54718,\n                \"buyerPersonName\": \"JOHN R PABST\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": \"Agent Generated\",\n                \"buyerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertySellerInfo\": [\n            {\n                \"propertyId\": 43,\n                \"sellerPersonId\": 9325,\n                \"sellerPersonName\": \"Richard Lecausi\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"1051 3RD STREET SOUTH \",\n                \"selleremailAddress\": \"\",\n                \"sellerCity\": \"NAPLES\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"341027049\",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Open House\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            },\n            {\n                \"propertyId\": 43,\n                \"sellerPersonId\": 40636,\n                \"sellerPersonName\": \"Blanche Lecausi\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"1051 3RD STREET SOUTH \",\n                \"selleremailAddress\": \"\",\n                \"sellerCity\": \"NAPLES\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"341027049\",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Open House\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertyPeopleInfo\": null,\n        \"propertyFeaturesInfo\": [\n            {\n                \"propertyFeatureID\": 15073,\n                \"propertyID\": 43,\n                \"featureType\": \"Central Electric A/C\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 111820,\n                \"propertyID\": 43,\n                \"featureType\": \"City/Town Street\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 44875,\n                \"propertyID\": 43,\n                \"featureType\": \"Condominium\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 14351,\n                \"propertyID\": 43,\n                \"featureType\": \"LS-Metropolitan\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 46335,\n                \"propertyID\": 43,\n                \"featureType\": \"No\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 134052,\n                \"propertyID\": 43,\n                \"featureType\": \"Pool - Outdoor\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 12801,\n                \"propertyID\": 43,\n                \"featureType\": \"Pool-In Ground\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 48326,\n                \"propertyID\": 43,\n                \"featureType\": \"Yes\",\n                \"confirmed\": false\n            }\n        ],\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": null,\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 43,\n                \"financeType\": null,\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 44,\n        \"propertyAddress\": \"3620 Fort Charles Dr, Naples, FL, 341027933\",\n        \"mlsNumber1\": \"MLS_44\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:22\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2022-09-27 05:30\",\n        \"modifyBy\": \"ATBIAPP\\\\cbMark\",\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 44,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": \"3620\",\n                \"streetDirection\": null,\n                \"streetName\": \"Fort Charles\",\n                \"streetDesignation\": \"Dr\",\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": null,\n                \"buildingFloorNumber\": null,\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"341027933\",\n                \"trType\": \"IH\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 4650000,\n                \"sellingPrice\": 4650000,\n                \"listingPricePrior\": null,\n                \"listingPrice\": 5450000,\n                \"listCommission\": 93000,\n                \"sellCommission\": 93000,\n                \"refListCommission\": 0,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2010-12-10\",\n                \"expiredDate\": \"2011-07-08\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2011-10-28\",\n                \"estimatedClosingDate\": \"2011-11-15\",\n                \"cancelDate\": null,\n                \"closingDate\": \"2011-11-15\",\n                \"processedDate\": \"2011-11-16\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000099\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": null,\n                \"classification\": null,\n                \"propertyType\": \"Single Family Home\",\n                \"propertyUse\": \"Owner Occupied\",\n                \"development\": \"PORT ROYAL\",\n                \"neigborhoodName\": \"\",\n                \"propertyLocation\": \"Port Royal\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"5\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"6161\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"2000\",\n                \"taxYear\": \"0\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"0.00\",\n                \"transactionID\": \"0001000000000099\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 73,\n                \"propertyID\": 44,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71754,\n                \"agent_ATGUID\": \"01E8508D-8791-4849-B645-D3B45FF1288B\",\n                \"agent_FullName\": \"Karen Van Arsdasample\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 1,\n                \"agent_Gross\": 93000,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 5580,\n                \"agent_Deduct3\": 8366.1,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 75101.21,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 3952.69,\n                \"companyDollar\": 8366.1,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": [\n            {\n                \"propertyDeductionID\": 74,\n                \"propertyID\": 44,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71754,\n                \"agent_ATGUID\": \"01E8508D-8791-4849-B645-D3B45FF1288B\",\n                \"agent_FullName\": \"Karen Van Arsdasample\",\n                \"personType\": \"agent\",\n                \"side\": \"S\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 1,\n                \"agent_Gross\": 93000,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 5580,\n                \"agent_Deduct3\": 8366.1,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 75101.21,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 3952.69,\n                \"companyDollar\": 8366.1,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyBuyerInfo\": [\n            {\n                \"propertyId\": 44,\n                \"buyerPersonId\": 22296,\n                \"buyerPersonName\": \"DAVID JACKSON\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": \"Agent Generated\",\n                \"buyerleadSource\": \"Personal/Repeat Customer\",\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertySellerInfo\": [\n            {\n                \"propertyId\": 44,\n                \"sellerPersonId\": 24067,\n                \"sellerPersonName\": \"Scott Kapnick\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"3620 Fort Charles Drive \",\n                \"selleremailAddress\": \"\",\n                \"sellerCity\": \"NAPLES\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"34102\",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Internet/Email\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            },\n            {\n                \"propertyId\": 44,\n                \"sellerPersonId\": 41822,\n                \"sellerPersonName\": \"Kathleen Kapnick\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"3620 Fort Charles Drive \",\n                \"selleremailAddress\": \"\",\n                \"sellerCity\": \"NAPLES\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"34102\",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Internet/Email\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertyPeopleInfo\": [\n            {\n                \"propertyId\": 44,\n                \"personId\": 71841,\n                \"personName\": \"Stock Yards Bank & Trust Co.\",\n                \"personType\": \"Lender\",\n                \"side\": \"L\",\n                \"address\": \"\",\n                \"emailAddress\": null,\n                \"phoneNumber\": null\n            }\n        ],\n        \"propertyFeaturesInfo\": [\n            {\n                \"propertyFeatureID\": 112505,\n                \"propertyID\": 44,\n                \"featureType\": \"Boat Dock\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 105999,\n                \"propertyID\": 44,\n                \"featureType\": \"Central Electric A/C\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 120477,\n                \"propertyID\": 44,\n                \"featureType\": \"Inground Pool\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 8148,\n                \"propertyID\": 44,\n                \"featureType\": \"LS-Boating\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 86590,\n                \"propertyID\": 44,\n                \"featureType\": \"LS-Metropolitan\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 86481,\n                \"propertyID\": 44,\n                \"featureType\": \"LS-Waterfront\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 39212,\n                \"propertyID\": 44,\n                \"featureType\": \"Pool - Outdoor\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 117373,\n                \"propertyID\": 44,\n                \"featureType\": \"Traditional\",\n                \"confirmed\": false\n            }\n        ],\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": [\n            {\n                \"propertyId\": 44,\n                \"propertyDeductionId\": 73,\n                \"agentPersonId\": 71754,\n                \"agentName\": \"Karen Van Arsdasample\",\n                \"side\": \"L\",\n                \"columnNumber\": 1,\n                \"thirdPartyPaymentId\": 479,\n                \"vendorPersonId\": 33620,\n                \"vendorName\": \"Kimberly A. Spink\",\n                \"amount\": 3952.69,\n                \"flag1099\": \"2 \",\n                \"ignoreOffset\": false\n            },\n            {\n                \"propertyId\": 44,\n                \"propertyDeductionId\": 74,\n                \"agentPersonId\": 71754,\n                \"agentName\": \"Karen Van Arsdasample\",\n                \"side\": \"S\",\n                \"columnNumber\": 1,\n                \"thirdPartyPaymentId\": 480,\n                \"vendorPersonId\": 33620,\n                \"vendorName\": \"Kimberly A. Spink\",\n                \"amount\": 3952.69,\n                \"flag1099\": \"2 \",\n                \"ignoreOffset\": false\n            }\n        ],\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": [\n            {\n                \"propertyId\": 44,\n                \"docType\": \"voucher\",\n                \"docId\": 101285,\n                \"orderDate\": \"2011-11-15T00:00:00\",\n                \"amountTotal\": 3952.69,\n                \"personId\": 33620,\n                \"personName\": \"Kimberly A. Spink\",\n                \"sourcePost\": \"thirdparty\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 44,\n                \"docType\": \"voucher\",\n                \"docId\": 101286,\n                \"orderDate\": \"2011-11-15T00:00:00\",\n                \"amountTotal\": 3952.69,\n                \"personId\": 33620,\n                \"personName\": \"Kimberly A. Spink\",\n                \"sourcePost\": \"thirdparty\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 44,\n                \"docType\": \"voucher\",\n                \"docId\": 101287,\n                \"orderDate\": \"2011-11-15T00:00:00\",\n                \"amountTotal\": 75101.21,\n                \"personId\": 71754,\n                \"personName\": \"Karen Van Arsdasample\",\n                \"sourcePost\": \"agent\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 44,\n                \"docType\": \"voucher\",\n                \"docId\": 101288,\n                \"orderDate\": \"2011-11-15T00:00:00\",\n                \"amountTotal\": 75101.21,\n                \"personId\": 71754,\n                \"personName\": \"Karen Van Arsdasample\",\n                \"sourcePost\": \"agent\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 44,\n                \"docType\": \"voucher\",\n                \"docId\": 101289,\n                \"orderDate\": \"2011-11-15T00:00:00\",\n                \"amountTotal\": 1860,\n                \"personId\": 33591,\n                \"personName\": \"SOTHEBYS INTERNATIONAL REALTY AFFILLIATES, LLC\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 44,\n                \"docType\": \"voucher\",\n                \"docId\": 101290,\n                \"orderDate\": \"2011-11-15T00:00:00\",\n                \"amountTotal\": 5580,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 44,\n                \"docType\": \"voucher\",\n                \"docId\": 101291,\n                \"orderDate\": \"2011-11-15T00:00:00\",\n                \"amountTotal\": -5580,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 44,\n                \"docType\": \"voucher\",\n                \"docId\": 101292,\n                \"orderDate\": \"2011-11-15T00:00:00\",\n                \"amountTotal\": -5580,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 44,\n                \"docType\": \"voucher\",\n                \"docId\": 101293,\n                \"orderDate\": \"2011-11-15T00:00:00\",\n                \"amountTotal\": 1860,\n                \"personId\": 33591,\n                \"personName\": \"SOTHEBYS INTERNATIONAL REALTY AFFILLIATES, LLC\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 44,\n                \"docType\": \"voucher\",\n                \"docId\": 101294,\n                \"orderDate\": \"2011-11-15T00:00:00\",\n                \"amountTotal\": 5580,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 44,\n                \"docType\": \"invoice\",\n                \"docId\": 10306,\n                \"orderDate\": \"2011-11-15T00:00:00\",\n                \"amountTotal\": 186000,\n                \"personId\": 14027,\n                \"personName\": \"3620 Fort Charles Drive, NAPLES, FL 341027933\",\n                \"sourcePost\": null,\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 44,\n                \"docType\": \"arPayment\",\n                \"docId\": 25573,\n                \"orderDate\": \"2011-11-15T00:00:00\",\n                \"amountTotal\": 186000,\n                \"personId\": 14027,\n                \"personName\": \"3620 Fort Charles Drive, NAPLES, FL 341027933\",\n                \"sourcePost\": null,\n                \"description\": \"check\",\n                \"checkNumber\": null\n            },\n            {\n                \"propertyId\": 44,\n                \"docType\": \"apPayment\",\n                \"docId\": 28361,\n                \"orderDate\": \"2011-11-16T00:00:00\",\n                \"amountTotal\": 150202.42,\n                \"personId\": 71754,\n                \"personName\": \"Karen Van Arsdasample\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"6589\"\n            },\n            {\n                \"propertyId\": 44,\n                \"docType\": \"apPayment\",\n                \"docId\": 36977,\n                \"orderDate\": \"2011-11-21T00:00:00\",\n                \"amountTotal\": 0,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"epay701112311\"\n            },\n            {\n                \"propertyId\": 44,\n                \"docType\": \"apPayment\",\n                \"docId\": 36976,\n                \"orderDate\": \"2011-11-21T00:00:00\",\n                \"amountTotal\": 3720,\n                \"personId\": 33591,\n                \"personName\": \"SOTHEBYS INTERNATIONAL REALTY AFFILLIATES, LLC\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"epay701112311\"\n            },\n            {\n                \"propertyId\": 44,\n                \"docType\": \"apPayment\",\n                \"docId\": 28359,\n                \"orderDate\": \"2011-11-16T00:00:00\",\n                \"amountTotal\": 3952.69,\n                \"personId\": 33620,\n                \"personName\": \"Kimberly A. Spink\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"6587\"\n            },\n            {\n                \"propertyId\": 44,\n                \"docType\": \"apPayment\",\n                \"docId\": 28364,\n                \"orderDate\": \"2011-11-16T00:00:00\",\n                \"amountTotal\": 3952.69,\n                \"personId\": 33620,\n                \"personName\": \"Kimberly A. Spink\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"6591\"\n            }\n        ],\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 44,\n                \"financeType\": null,\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 45,\n        \"propertyAddress\": \"205 11TH AVE SOUTH\",\n        \"mlsNumber1\": \"210041057\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:22\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2022-09-27 05:30\",\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 45,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": null,\n                \"streetDirection\": null,\n                \"streetName\": \"205 11TH AVE SOUTH\",\n                \"streetDesignation\": null,\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": null,\n                \"buildingFloorNumber\": null,\n                \"city\": \"NAPLES\",\n                \"state\": \"FL\",\n                \"zip\": \"341027022\",\n                \"trType\": \"OL\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 2450000,\n                \"sellingPrice\": 2450000,\n                \"listingPricePrior\": null,\n                \"listingPrice\": 2695000,\n                \"listCommission\": 49000,\n                \"sellCommission\": 0,\n                \"refListCommission\": 0,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2010-12-10\",\n                \"expiredDate\": \"2011-06-11\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2011-01-31\",\n                \"estimatedClosingDate\": \"2011-04-01\",\n                \"cancelDate\": null,\n                \"closingDate\": null,\n                \"processedDate\": \"2011-03-31\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000100\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": null,\n                \"classification\": null,\n                \"propertyType\": \"Single Family Home\",\n                \"propertyUse\": \"Owner Occupied\",\n                \"development\": null,\n                \"neigborhoodName\": \"\",\n                \"propertyLocation\": \"OLD NAPLES HISTORIC COTTAGE\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"3\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"2448\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"1920\",\n                \"taxYear\": \"0\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"0.00\",\n                \"transactionID\": \"0001000000000100\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 75,\n                \"propertyID\": 45,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71754,\n                \"agent_ATGUID\": \"01E8508D-8791-4849-B645-D3B45FF1288B\",\n                \"agent_FullName\": \"Karen Van Arsdasample\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": null,\n        \"propertyBuyerInfo\": [\n            {\n                \"propertyId\": 45,\n                \"buyerPersonId\": 42836,\n                \"buyerPersonName\": \"THOMAS D GALLAGHER\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": null,\n                \"buyerleadSource\": null,\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            },\n            {\n                \"propertyId\": 45,\n                \"buyerPersonId\": 49036,\n                \"buyerPersonName\": \"NANCY C GALLAGHER\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": null,\n                \"buyerleadSource\": null,\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertySellerInfo\": [\n            {\n                \"propertyId\": 45,\n                \"sellerPersonId\": 22945,\n                \"sellerPersonName\": \"JULIA VALENTINE\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"2401 Gulf Shore Blvd. N. #12 \",\n                \"selleremailAddress\": \"jvalco01@aol.com\",\n                \"sellerCity\": \"Naples\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"34103\",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Personal/Repeat Customer\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            },\n            {\n                \"propertyId\": 45,\n                \"sellerPersonId\": 41336,\n                \"sellerPersonName\": \"JAMES VALENTINE\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"205 11TH AVE SOUTH \",\n                \"selleremailAddress\": \"jvalco01@aol.com\",\n                \"sellerCity\": \"NAPLES\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"341027022\",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Personal/Repeat Customer\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertyPeopleInfo\": null,\n        \"propertyFeaturesInfo\": [\n            {\n                \"propertyFeatureID\": 29420,\n                \"propertyID\": 45,\n                \"featureType\": \"Central Electric A/C\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 70899,\n                \"propertyID\": 45,\n                \"featureType\": \"LS-Historic/Antique\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 27994,\n                \"propertyID\": 45,\n                \"featureType\": \"LS-Metropolitan\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 4061,\n                \"propertyID\": 45,\n                \"featureType\": \"Traditional\",\n                \"confirmed\": false\n            }\n        ],\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": null,\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 45,\n                \"financeType\": null,\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 46,\n        \"propertyAddress\": \"475 3RD STREET SOUTH\",\n        \"mlsNumber1\": \"210042501\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:22\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2022-09-27 05:30\",\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 46,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": null,\n                \"streetDirection\": null,\n                \"streetName\": \"475 3RD STREET SOUTH\",\n                \"streetDesignation\": null,\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": null,\n                \"buildingFloorNumber\": null,\n                \"city\": \"NAPLES\",\n                \"state\": \"FL\",\n                \"zip\": \"34102\",\n                \"trType\": \"IH\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 1250000,\n                \"sellingPrice\": 1250000,\n                \"listingPricePrior\": null,\n                \"listingPrice\": 1395000,\n                \"listCommission\": 36550,\n                \"sellCommission\": 36550,\n                \"refListCommission\": 0,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2010-11-19\",\n                \"expiredDate\": \"2011-05-19\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2011-02-26\",\n                \"estimatedClosingDate\": \"2011-04-27\",\n                \"cancelDate\": null,\n                \"closingDate\": null,\n                \"processedDate\": \"2011-07-20\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000101\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": null,\n                \"classification\": null,\n                \"propertyType\": \"Condominium\",\n                \"propertyUse\": \"Owner Occupied\",\n                \"development\": null,\n                \"neigborhoodName\": \"\",\n                \"propertyLocation\": \"BEACH BUNGALOWS OF NAPLES\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"3\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"2563\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"0\",\n                \"taxYear\": \"0\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"0.00\",\n                \"transactionID\": \"0001000000000101\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 76,\n                \"propertyID\": 46,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 65507,\n                \"agent_ATGUID\": \"E4CF9B53-A94B-4883-8176-E9E23BFD0D5C\",\n                \"agent_FullName\": \"Lindsey Smsampleh\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": [\n            {\n                \"propertyDeductionID\": 77,\n                \"propertyID\": 46,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71754,\n                \"agent_ATGUID\": \"01E8508D-8791-4849-B645-D3B45FF1288B\",\n                \"agent_FullName\": \"Karen Van Arsdasample\",\n                \"personType\": \"agent\",\n                \"side\": \"S\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyBuyerInfo\": [\n            {\n                \"propertyId\": 46,\n                \"buyerPersonId\": 34754,\n                \"buyerPersonName\": \"DAVID W TRUETZEL\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": \"Agent Generated\",\n                \"buyerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            },\n            {\n                \"propertyId\": 46,\n                \"buyerPersonId\": 56075,\n                \"buyerPersonName\": \"STEPHANIE H TRUETZEL\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": \"Agent Generated\",\n                \"buyerleadSource\": \"Non Commissionable Sale ( Excluded )\",\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertySellerInfo\": null,\n        \"propertyPeopleInfo\": null,\n        \"propertyFeaturesInfo\": null,\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": null,\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 46,\n                \"financeType\": null,\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 47,\n        \"propertyAddress\": \"356 11th Avenue South\",\n        \"mlsNumber1\": \"210041818\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:22\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2022-09-27 05:30\",\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 47,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": null,\n                \"streetDirection\": null,\n                \"streetName\": \"356 11th Avenue South\",\n                \"streetDesignation\": null,\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": null,\n                \"buildingFloorNumber\": null,\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"34102\",\n                \"trType\": \"OL\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 2000000,\n                \"sellingPrice\": 2000000,\n                \"listingPricePrior\": null,\n                \"listingPrice\": 2375000,\n                \"listCommission\": 50000,\n                \"sellCommission\": 0,\n                \"refListCommission\": 0,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2010-12-15\",\n                \"expiredDate\": \"2011-06-15\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2011-02-13\",\n                \"estimatedClosingDate\": \"2011-04-14\",\n                \"cancelDate\": null,\n                \"closingDate\": null,\n                \"processedDate\": \"2011-03-23\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000102\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": null,\n                \"classification\": null,\n                \"propertyType\": \"Single Family Home\",\n                \"propertyUse\": \"Owner Occupied\",\n                \"development\": null,\n                \"neigborhoodName\": \"\",\n                \"propertyLocation\": \"OLD NAPLES BUNGALOW\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"2\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"2317\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"1930\",\n                \"taxYear\": \"0\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"0.00\",\n                \"transactionID\": \"0001000000000102\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 78,\n                \"propertyID\": 47,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71730,\n                \"agent_ATGUID\": \"E08CCA84-4DE2-417C-9E63-1D7984E0A54C\",\n                \"agent_FullName\": \"Cindy Thompssample\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": null,\n        \"propertyBuyerInfo\": [\n            {\n                \"propertyId\": 47,\n                \"buyerPersonId\": 41723,\n                \"buyerPersonName\": \"KATHI S FLACK\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": null,\n                \"buyerleadSource\": null,\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertySellerInfo\": [\n            {\n                \"propertyId\": 47,\n                \"sellerPersonId\": 9227,\n                \"sellerPersonName\": \"Richard Goldstein\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"356 11th Avenue South \",\n                \"selleremailAddress\": \"\",\n                \"sellerCity\": \"Naples\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"34102\",\n                \"sellerphoneNumber\": \"9143421155\",\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Internet/Email\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertyPeopleInfo\": null,\n        \"propertyFeaturesInfo\": [\n            {\n                \"propertyFeatureID\": 37577,\n                \"propertyID\": 47,\n                \"featureType\": \"Bungalow\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 127480,\n                \"propertyID\": 47,\n                \"featureType\": \"Central Electric A/C\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 11925,\n                \"propertyID\": 47,\n                \"featureType\": \"Guest House(s)\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 124289,\n                \"propertyID\": 47,\n                \"featureType\": \"Hardwood Flooring\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 129685,\n                \"propertyID\": 47,\n                \"featureType\": \"LS-Metropolitan\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 71487,\n                \"propertyID\": 47,\n                \"featureType\": \"LS-Privacy\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 79036,\n                \"propertyID\": 47,\n                \"featureType\": \"Pool - Outdoor\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 126310,\n                \"propertyID\": 47,\n                \"featureType\": \"Pool-In Ground\",\n                \"confirmed\": false\n            }\n        ],\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": null,\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 47,\n                \"financeType\": null,\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 48,\n        \"propertyAddress\": \"1006 S 5th Street, 503, Naples, FL 34102-7106\",\n        \"mlsNumber1\": \"211015294\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:22\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2022-09-27 05:30\",\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 48,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": \"1006\",\n                \"streetDirection\": \"S\",\n                \"streetName\": \"5th\",\n                \"streetDesignation\": \"St\",\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": \"503\",\n                \"buildingFloorNumber\": null,\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"34102-7106\",\n                \"trType\": \"OL\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 1545000,\n                \"sellingPrice\": 1545000,\n                \"listingPricePrior\": 1700000,\n                \"listingPrice\": 1675000,\n                \"listCommission\": 46350,\n                \"sellCommission\": 0,\n                \"refListCommission\": 0,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2011-05-12\",\n                \"expiredDate\": \"2013-01-02\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2012-11-09\",\n                \"estimatedClosingDate\": \"2013-01-31\",\n                \"cancelDate\": null,\n                \"closingDate\": \"2013-01-31\",\n                \"processedDate\": \"2013-02-11\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000103\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": \"Cash\",\n                \"classification\": null,\n                \"propertyType\": \"Condominium\",\n                \"propertyUse\": \"Other Residential\",\n                \"development\": \"OLD NAPLES\",\n                \"neigborhoodName\": \"\",\n                \"propertyLocation\": \"OLD NAPLES - ISLA MAR\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"3\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"2770\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"2001\",\n                \"taxYear\": \"2011\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"11865.04\",\n                \"transactionID\": \"0001000000000103\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 79,\n                \"propertyID\": 48,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71741,\n                \"agent_ATGUID\": \"294DBD60-541B-4855-AFCF-2DAAFDEF2FE1\",\n                \"agent_FullName\": \"Ruth Trettsample\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 1,\n                \"agent_Gross\": 46350,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 2781,\n                \"agent_Deduct3\": 6487.42,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 37081.58,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 6487.42,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": null,\n        \"propertyBuyerInfo\": [\n            {\n                \"propertyId\": 48,\n                \"buyerPersonId\": 73427,\n                \"buyerPersonName\": \"Don Polak\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"1209 Beddington Park \",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": \"Nashville\",\n                \"buyerState\": \"TN\",\n                \"buyerZip\": \"37215\",\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": \"Agent Generated\",\n                \"buyerleadSource\": \"Personal/Repeat Customer\",\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertySellerInfo\": [\n            {\n                \"propertyId\": 48,\n                \"sellerPersonId\": 34758,\n                \"sellerPersonName\": \"David Ward\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"1006 5th Street South \",\n                \"selleremailAddress\": \"dward@wardrecycling.com\",\n                \"sellerCity\": \"Naples\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"34102\",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Personal/Repeat Customer\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertyPeopleInfo\": [\n            {\n                \"propertyId\": 48,\n                \"personId\": 12760,\n                \"personName\": \"Bryant Title & Escrow, LLC\",\n                \"personType\": \"Title Company\",\n                \"side\": \"S\",\n                \"address\": \"370 12th Ave S., 100 \",\n                \"emailAddress\": \"hdest@btenaples.com\",\n                \"phoneNumber\": null\n            },\n            {\n                \"propertyId\": 48,\n                \"personId\": 46590,\n                \"personName\": \"JOHN R WOOD REALTORS\",\n                \"personType\": \"CoBroke Office\",\n                \"side\": \"S\",\n                \"address\": \"800 5TH AVE S, STE. 200 \",\n                \"emailAddress\": null,\n                \"phoneNumber\": null\n            },\n            {\n                \"propertyId\": 48,\n                \"personId\": 52545,\n                \"personName\": \"CASH\",\n                \"personType\": \"Lender\",\n                \"side\": \"L\",\n                \"address\": \"\",\n                \"emailAddress\": null,\n                \"phoneNumber\": null\n            },\n            {\n                \"propertyId\": 48,\n                \"personId\": 70071,\n                \"personName\": \"Guy Brooks\",\n                \"personType\": \"CoBroke Agent\",\n                \"side\": \"S\",\n                \"address\": \"800 5TH AVE S, STE. 200\\r\\nNaples\\r\\nFL 34102 \",\n                \"emailAddress\": null,\n                \"phoneNumber\": null\n            }\n        ],\n        \"propertyFeaturesInfo\": [\n            {\n                \"propertyFeatureID\": 105541,\n                \"propertyID\": 48,\n                \"featureType\": \"Central Air\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 50812,\n                \"propertyID\": 48,\n                \"featureType\": \"Central Electric A/C\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 136174,\n                \"propertyID\": 48,\n                \"featureType\": \"City/Town Street\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 56549,\n                \"propertyID\": 48,\n                \"featureType\": \"Condominium\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 130393,\n                \"propertyID\": 48,\n                \"featureType\": \"Deck/Patio\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 52103,\n                \"propertyID\": 48,\n                \"featureType\": \"Forced Air - Electric\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 53067,\n                \"propertyID\": 48,\n                \"featureType\": \"LS-Metropolitan\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 81066,\n                \"propertyID\": 48,\n                \"featureType\": \"Open Porch\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 114554,\n                \"propertyID\": 48,\n                \"featureType\": \"Other Construction\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 19910,\n                \"propertyID\": 48,\n                \"featureType\": \"Pool - Outdoor\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 52891,\n                \"propertyID\": 48,\n                \"featureType\": \"Pool-In Ground\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 62676,\n                \"propertyID\": 48,\n                \"featureType\": \"Residential\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 48438,\n                \"propertyID\": 48,\n                \"featureType\": \"Storage\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 39141,\n                \"propertyID\": 48,\n                \"featureType\": \"Yes\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 141995,\n                \"propertyID\": 48,\n                \"featureType\": \"Yes\",\n                \"confirmed\": false\n            }\n        ],\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": [\n            {\n                \"propertyOpenhouseID\": 1,\n                \"propertyID\": 48,\n                \"date\": \"2012-08-26\",\n                \"time\": null,\n                \"duration\": 3,\n                \"notes\": \"\",\n                \"done\": false,\n                \"confirmed\": true\n            },\n            {\n                \"propertyOpenhouseID\": 2,\n                \"propertyID\": 48,\n                \"date\": \"2012-09-30\",\n                \"time\": null,\n                \"duration\": 3,\n                \"notes\": \"\",\n                \"done\": false,\n                \"confirmed\": true\n            },\n            {\n                \"propertyOpenhouseID\": 3,\n                \"propertyID\": 48,\n                \"date\": \"2012-04-29\",\n                \"time\": null,\n                \"duration\": 3,\n                \"notes\": \"\",\n                \"done\": false,\n                \"confirmed\": true\n            },\n            {\n                \"propertyOpenhouseID\": 4,\n                \"propertyID\": 48,\n                \"date\": \"2012-07-22\",\n                \"time\": null,\n                \"duration\": 3,\n                \"notes\": \"\",\n                \"done\": false,\n                \"confirmed\": true\n            }\n        ],\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": [\n            {\n                \"documentID\": 448,\n                \"propertyID\": 48,\n                \"person\": null,\n                \"office\": null,\n                \"filename\": \"1006 5TH ST S - CCC.pdf\",\n                \"description\": \"Contract to Close Checklist\",\n                \"showSeller\": false,\n                \"showBuyer\": false,\n                \"showListAgent\": true,\n                \"showSellAgent\": true,\n                \"previewURL\": \"https://drive.google.com/file/d/1kzC13ElreJpg9TkfddOY_rINCDSB41A3/preview\",\n                \"createDate\": \"2019-04-02 01:48\"\n            },\n            {\n                \"documentID\": 449,\n                \"propertyID\": 48,\n                \"person\": null,\n                \"office\": null,\n                \"filename\": \"1006 5TH ST S - SP.pdf\",\n                \"description\": \"Sales Packet\",\n                \"showSeller\": false,\n                \"showBuyer\": false,\n                \"showListAgent\": true,\n                \"showSellAgent\": true,\n                \"previewURL\": \"https://drive.google.com/file/d/1l-e1Z50hs7EUHunnXhYPinJ_1q-5pzg0/preview\",\n                \"createDate\": \"2019-04-02 01:48\"\n            },\n            {\n                \"documentID\": 1934,\n                \"propertyID\": 48,\n                \"person\": null,\n                \"office\": null,\n                \"filename\": \"1006 5th st s #503 - hud-02022013125403.pdf\",\n                \"description\": \"1006 5th st s #503 - hud\",\n                \"showSeller\": false,\n                \"showBuyer\": false,\n                \"showListAgent\": true,\n                \"showSellAgent\": true,\n                \"previewURL\": \"https://drive.google.com/file/d/1kdxm4M_EjaE_h6_M-RDUYaceJzDvb4w9/preview\",\n                \"createDate\": \"2019-04-02 01:48\"\n            }\n        ],\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": [\n            {\n                \"propertyId\": 48,\n                \"docType\": \"voucher\",\n                \"docId\": 80922,\n                \"orderDate\": \"2013-01-31T00:00:00\",\n                \"amountTotal\": 0,\n                \"personId\": 71741,\n                \"personName\": \"Ruth Trettsample\",\n                \"sourcePost\": \"agent\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 48,\n                \"docType\": \"voucher\",\n                \"docId\": 80923,\n                \"orderDate\": \"2013-01-31T00:00:00\",\n                \"amountTotal\": 927,\n                \"personId\": 33591,\n                \"personName\": \"SOTHEBYS INTERNATIONAL REALTY AFFILLIATES, LLC\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 48,\n                \"docType\": \"voucher\",\n                \"docId\": 80924,\n                \"orderDate\": \"2013-01-31T00:00:00\",\n                \"amountTotal\": -2781,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 48,\n                \"docType\": \"voucher\",\n                \"docId\": 80925,\n                \"orderDate\": \"2013-01-31T00:00:00\",\n                \"amountTotal\": 2781,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 48,\n                \"docType\": \"invoice\",\n                \"docId\": 7173,\n                \"orderDate\": \"2013-01-31T00:00:00\",\n                \"amountTotal\": 9268.42,\n                \"personId\": 25964,\n                \"personName\": \"1006 S 5th Street, 503, Naples, FL 34102-7106\",\n                \"sourcePost\": null,\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 48,\n                \"docType\": \"arPayment\",\n                \"docId\": 22315,\n                \"orderDate\": \"2013-01-31T00:00:00\",\n                \"amountTotal\": 9268.42,\n                \"personId\": 25964,\n                \"personName\": \"1006 S 5th Street, 503, Naples, FL 34102-7106\",\n                \"sourcePost\": null,\n                \"description\": \"check\",\n                \"checkNumber\": null\n            },\n            {\n                \"propertyId\": 48,\n                \"docType\": \"apPayment\",\n                \"docId\": 33805,\n                \"orderDate\": \"2013-02-22T00:00:00\",\n                \"amountTotal\": 0,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"ePay022213-001\"\n            },\n            {\n                \"propertyId\": 48,\n                \"docType\": \"apPayment\",\n                \"docId\": 33804,\n                \"orderDate\": \"2013-02-22T00:00:00\",\n                \"amountTotal\": 927,\n                \"personId\": 33591,\n                \"personName\": \"SOTHEBYS INTERNATIONAL REALTY AFFILLIATES, LLC\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"ePay022213-001\"\n            }\n        ],\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 48,\n                \"financeType\": \"Cash\",\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 49,\n        \"propertyAddress\": \"115 - 5th Avenue South\",\n        \"mlsNumber1\": \"210042011\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:22\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2022-09-27 05:30\",\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 49,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": null,\n                \"streetDirection\": null,\n                \"streetName\": \"115 - 5th Avenue South\",\n                \"streetDesignation\": null,\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": null,\n                \"buildingFloorNumber\": null,\n                \"city\": \"NAPLES\",\n                \"state\": \"FL\",\n                \"zip\": \"34102\",\n                \"trType\": \"OL\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 1575000,\n                \"sellingPrice\": 1575000,\n                \"listingPricePrior\": null,\n                \"listingPrice\": 1795000,\n                \"listCommission\": 39375,\n                \"sellCommission\": 0,\n                \"refListCommission\": 7875,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2010-12-15\",\n                \"expiredDate\": \"2011-05-30\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2011-01-29\",\n                \"estimatedClosingDate\": \"2011-03-30\",\n                \"cancelDate\": null,\n                \"closingDate\": null,\n                \"processedDate\": \"2011-03-28\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000104\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": null,\n                \"classification\": null,\n                \"propertyType\": \"Residential Lot\",\n                \"propertyUse\": \"Owner Occupied\",\n                \"development\": null,\n                \"neigborhoodName\": \"\",\n                \"propertyLocation\": \"PRIME CORNER RESIDENTIAL LOT IN OLD NAPLES\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"0\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"18000\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"0\",\n                \"taxYear\": \"0\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"0.00\",\n                \"transactionID\": \"0001000000000104\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 80,\n                \"propertyID\": 49,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 71754,\n                \"agent_ATGUID\": \"01E8508D-8791-4849-B645-D3B45FF1288B\",\n                \"agent_FullName\": \"Karen Van Arsdasample\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 0,\n                \"agent_Gross\": 0,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 0,\n                \"agent_Deduct3\": 0,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 0,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 0,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": null,\n        \"propertyBuyerInfo\": [\n            {\n                \"propertyId\": 49,\n                \"buyerPersonId\": 36635,\n                \"buyerPersonName\": \"SHAWN W MARTIN\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": null,\n                \"buyerleadSource\": null,\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            },\n            {\n                \"propertyId\": 49,\n                \"buyerPersonId\": 60814,\n                \"buyerPersonName\": \"EUGENE E MARTIN\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": null,\n                \"buyerleadSource\": null,\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertySellerInfo\": [\n            {\n                \"propertyId\": 49,\n                \"sellerPersonId\": 21299,\n                \"sellerPersonName\": \"Gary Seevers\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"115 5TH AVENUE SOUTH \",\n                \"selleremailAddress\": \"\",\n                \"sellerCity\": \"NAPLES\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"34102\",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Personal/Repeat Customer\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertyPeopleInfo\": null,\n        \"propertyFeaturesInfo\": [\n            {\n                \"propertyFeatureID\": 97798,\n                \"propertyID\": 49,\n                \"featureType\": \"City/Strip Views\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 97789,\n                \"propertyID\": 49,\n                \"featureType\": \"LS-Metropolitan\",\n                \"confirmed\": false\n            }\n        ],\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": null,\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 49,\n                \"financeType\": null,\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    },\n    {\n        \"propertyId\": 50,\n        \"propertyAddress\": \"805 RIVER POINT DR, 301C, NAPLES, FL 34102-3476\",\n        \"mlsNumber1\": \"210042087\",\n        \"feedID\": null,\n        \"createDate\": \"2011-09-27 11:22\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": \"2022-09-27 05:30\",\n        \"modifyBy\": null,\n        \"deleteDate\": null,\n        \"deletedBy\": null,\n        \"propertyBasicInfo\": [\n            {\n                \"propertyID\": 50,\n                \"companyID\": 1,\n                \"company\": \"Century 21 Mass\",\n                \"streetNumber\": \"805\",\n                \"streetDirection\": null,\n                \"streetName\": \"RIVER POINT\",\n                \"streetDesignation\": \"DR\",\n                \"streetSuffix\": null,\n                \"suiteAptNumber\": \"301C\",\n                \"buildingFloorNumber\": null,\n                \"city\": \"Naples\",\n                \"state\": \"FL\",\n                \"zip\": \"34102-3476\",\n                \"trType\": \"OL\",\n                \"status\": \"Processed\",\n                \"mlsNumber2\": null,\n                \"commissionPrice\": 170000,\n                \"sellingPrice\": 170000,\n                \"listingPricePrior\": 199000,\n                \"listingPrice\": 179500,\n                \"listCommission\": 5100,\n                \"sellCommission\": 0,\n                \"refListCommission\": 0,\n                \"refSellCommission\": 0,\n                \"alternateListOffice\": null,\n                \"alternateSellOffice\": null,\n                \"excludeDuplicate\": false,\n                \"hideListPriceOnWeb\": false,\n                \"showOnInternet\": true,\n                \"showPriceOnInternet\": false,\n                \"excludeList\": false,\n                \"excludeSell\": false,\n                \"forclosure\": false,\n                \"shortSale\": false,\n                \"listDate\": \"2010-12-17\",\n                \"expiredDate\": \"2012-05-31\",\n                \"withdrawnDate\": null,\n                \"pendingDate\": \"2012-02-24\",\n                \"estimatedClosingDate\": \"2012-04-03\",\n                \"cancelDate\": null,\n                \"closingDate\": \"2012-04-03\",\n                \"processedDate\": \"2012-04-06\",\n                \"qaControl1\": null,\n                \"qaControl2\": \"0001000000000105\",\n                \"brokerReferenceNo\": null,\n                \"escrowNo\": null,\n                \"additionalincome\": null,\n                \"cancelReason\": null,\n                \"financingType\": \"Cash\",\n                \"classification\": null,\n                \"propertyType\": \"Condominium\",\n                \"propertyUse\": \"Owner Occupied\",\n                \"development\": \"OLD NAPLES\",\n                \"neigborhoodName\": \"BEAUMER\",\n                \"propertyLocation\": \"BEAUMER 301 C AT OLD NAPLES\",\n                \"subDivision\": null,\n                \"levelsCount\": null,\n                \"transportation\": null,\n                \"bedrooms\": \"2\",\n                \"threeQuarterBathsTotal\": null,\n                \"halfBathsTotal\": null,\n                \"quarterBathsTotal\": null,\n                \"squareFeet\": \"850\",\n                \"numberOfAcres\": null,\n                \"lotSize\": null,\n                \"lastSoldDate\": null,\n                \"yearBuilt\": \"1982\",\n                \"taxYear\": \"2011\",\n                \"taxRollNumber\": null,\n                \"annualTaxes\": \"2080.68\",\n                \"transactionID\": \"0001000000000105\",\n                \"trans1\": \"0.00\",\n                \"trans2\": \"0.00\",\n                \"sellerSendSurveyDelivery\": \"False\",\n                \"buyerSendSurveyDelivery\": \"False\"\n            }\n        ],\n        \"propertyAgentListInfo\": [\n            {\n                \"propertyDeductionID\": 81,\n                \"propertyID\": 50,\n                \"agent_officeID\": 3,\n                \"agent_officeName\": \"Broadway\",\n                \"agent_PersonID\": 59069,\n                \"agent_ATGUID\": \"4DE8E008-EA9D-4CA7-8903-450252732D3C\",\n                \"agent_FullName\": \"Tom McCsamplethy\",\n                \"personType\": \"agent\",\n                \"side\": \"L\",\n                \"agent_ColumnNumber\": 1,\n                \"agent_CommPercent\": 1,\n                \"agent_Gross\": 5100,\n                \"agent_Deduct1\": 0,\n                \"agent_Deduct2\": 306,\n                \"agent_Deduct3\": 838.95,\n                \"agent_Deduct4\": 0,\n                \"agent_Deduct5\": 0,\n                \"agent_Deduct6\": 0,\n                \"agent_Deduct7\": 0,\n                \"agent_Deduct8\": 0,\n                \"agent_Deduct9\": 0,\n                \"agent_Deduct10\": 0,\n                \"agent_Deduct11\": 0,\n                \"agent_Deduct12\": 0,\n                \"regionalPercent\": 100,\n                \"agent_Net\": 3955.05,\n                \"agent_BillDeduct\": 0,\n                \"agent_3rdPartyPayment\": 0,\n                \"companyDollar\": 838.95,\n                \"agent_ReportingOfficeID\": 3,\n                \"agent_ReportingOffice\": \"Broadway\"\n            }\n        ],\n        \"propertyAgentSellInfo\": null,\n        \"propertyBuyerInfo\": [\n            {\n                \"propertyId\": 50,\n                \"buyerPersonId\": 29293,\n                \"buyerPersonName\": \"KABIR CHUTANNI\",\n                \"buyerPersonType\": \"BUYER\",\n                \"buyerAddressLine\": \"\",\n                \"buyeremailAddress\": \"\",\n                \"buyerCity\": null,\n                \"buyerState\": null,\n                \"buyerZip\": null,\n                \"buyerphoneNumber\": null,\n                \"buyerLeadGeneratedBy\": null,\n                \"buyerleadSource\": null,\n                \"buyereRELOID\": null,\n                \"buyerdotLoopID\": null,\n                \"buyerskyslopeID\": null,\n                \"buyerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertySellerInfo\": [\n            {\n                \"propertyId\": 50,\n                \"sellerPersonId\": 48009,\n                \"sellerPersonName\": \"Jane Hunt\",\n                \"sellerPersonType\": \"SELLER\",\n                \"sellerAddressLine\": \"805 River Point Drive \",\n                \"selleremailAddress\": \"jed803@yahoo.com\",\n                \"sellerCity\": \"Naples\",\n                \"sellerState\": \"FL\",\n                \"sellerZip\": \"341023476\",\n                \"sellerphoneNumber\": null,\n                \"sellerLeadGeneratedBy\": \"Agent Generated\",\n                \"sellerleadSource\": \"Open House\",\n                \"sellereRELOID\": null,\n                \"sellerdotLoopID\": null,\n                \"sellerskyslopeID\": null,\n                \"sellerSendSurveyDelivery\": false\n            }\n        ],\n        \"propertyPeopleInfo\": [\n            {\n                \"propertyId\": 50,\n                \"personId\": 31450,\n                \"personName\": \"Carolyn Quistberg\",\n                \"personType\": \"CoBroke Agent\",\n                \"side\": \"S\",\n                \"address\": \"370 12th Avenue South, Ste. #101\\r\\nNaples\\r\\nFL 34102 \",\n                \"emailAddress\": null,\n                \"phoneNumber\": null\n            },\n            {\n                \"propertyId\": 50,\n                \"personId\": 46088,\n                \"personName\": \"COLLIER TITLE INSURANCE AGENCY\",\n                \"personType\": \"Title Company\",\n                \"side\": \"S\",\n                \"address\": \"2335 N. TAMIAMI TRAIL, STE. 310 \",\n                \"emailAddress\": null,\n                \"phoneNumber\": null\n            },\n            {\n                \"propertyId\": 50,\n                \"personId\": 72271,\n                \"personName\": \"Premiere Plus Realty, Co.\",\n                \"personType\": \"CoBroke Office\",\n                \"side\": \"S\",\n                \"address\": \"370 12th Avenue South, Ste. #101 \",\n                \"emailAddress\": null,\n                \"phoneNumber\": null\n            }\n        ],\n        \"propertyFeaturesInfo\": [\n            {\n                \"propertyFeatureID\": 75317,\n                \"propertyID\": 50,\n                \"featureType\": \"Central Air\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 10994,\n                \"propertyID\": 50,\n                \"featureType\": \"Central Electric A/C\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 48591,\n                \"propertyID\": 50,\n                \"featureType\": \"Condominium\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 71393,\n                \"propertyID\": 50,\n                \"featureType\": \"Frame/Wood\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 103699,\n                \"propertyID\": 50,\n                \"featureType\": \"LS-Boating\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 1423,\n                \"propertyID\": 50,\n                \"featureType\": \"LS-Metropolitan\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 78898,\n                \"propertyID\": 50,\n                \"featureType\": \"LS-Water View\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 105970,\n                \"propertyID\": 50,\n                \"featureType\": \"Water View\",\n                \"confirmed\": false\n            },\n            {\n                \"propertyFeatureID\": 114601,\n                \"propertyID\": 50,\n                \"featureType\": \"Yes\",\n                \"confirmed\": false\n            }\n        ],\n        \"propertyRemarksInfo\": null,\n        \"propertyRoomsInfo\": null,\n        \"propertyMediaInfo\": null,\n        \"propertyOpenHousesInfo\": null,\n        \"propertyShowingsInfo\": null,\n        \"propertyTasksInfo\": null,\n        \"propertyDocumentsInfo\": null,\n        \"propertyThirdPartyPaymentsInfo\": null,\n        \"propertyReimbsInfo\": null,\n        \"propertyReferralsInfo\": null,\n        \"propertyExtravouchersInfo\": null,\n        \"propertyOverridesInfo\": null,\n        \"propertyAccountingInfo\": [\n            {\n                \"propertyId\": 50,\n                \"docType\": \"voucher\",\n                \"docId\": 64778,\n                \"orderDate\": \"2012-04-03T00:00:00\",\n                \"amountTotal\": 3955.05,\n                \"personId\": 59069,\n                \"personName\": \"Tom McCsamplethy\",\n                \"sourcePost\": \"agent\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 50,\n                \"docType\": \"voucher\",\n                \"docId\": 64779,\n                \"orderDate\": \"2012-04-03T00:00:00\",\n                \"amountTotal\": 102,\n                \"personId\": 33591,\n                \"personName\": \"SOTHEBYS INTERNATIONAL REALTY AFFILLIATES, LLC\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 50,\n                \"docType\": \"voucher\",\n                \"docId\": 64780,\n                \"orderDate\": \"2012-04-03T00:00:00\",\n                \"amountTotal\": -306,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 50,\n                \"docType\": \"voucher\",\n                \"docId\": 64781,\n                \"orderDate\": \"2012-04-03T00:00:00\",\n                \"amountTotal\": 306,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": \"extravoucher\",\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 50,\n                \"docType\": \"invoice\",\n                \"docId\": 4751,\n                \"orderDate\": \"2012-04-03T00:00:00\",\n                \"amountTotal\": 5100,\n                \"personId\": 65265,\n                \"personName\": \"805 RIVER POINT DR, 301C, NAPLES, FL 34102-3476\",\n                \"sourcePost\": null,\n                \"description\": \"Commission\",\n                \"checkNumber\": \"\"\n            },\n            {\n                \"propertyId\": 50,\n                \"docType\": \"arPayment\",\n                \"docId\": 19796,\n                \"orderDate\": \"2012-04-03T00:00:00\",\n                \"amountTotal\": 5100,\n                \"personId\": 65265,\n                \"personName\": \"805 RIVER POINT DR, 301C, NAPLES, FL 34102-3476\",\n                \"sourcePost\": null,\n                \"description\": \"check\",\n                \"checkNumber\": null\n            },\n            {\n                \"propertyId\": 50,\n                \"docType\": \"apPayment\",\n                \"docId\": 11539,\n                \"orderDate\": \"2012-04-06T00:00:00\",\n                \"amountTotal\": 3955.05,\n                \"personId\": 59069,\n                \"personName\": \"Tom McCsamplethy\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"8828\"\n            },\n            {\n                \"propertyId\": 50,\n                \"docType\": \"apPayment\",\n                \"docId\": 16524,\n                \"orderDate\": \"2012-04-09T00:00:00\",\n                \"amountTotal\": 0,\n                \"personId\": 33593,\n                \"personName\": \"SOTHEBYS franchise\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"epay701041312\"\n            },\n            {\n                \"propertyId\": 50,\n                \"docType\": \"apPayment\",\n                \"docId\": 16523,\n                \"orderDate\": \"2012-04-09T00:00:00\",\n                \"amountTotal\": 102,\n                \"personId\": 33591,\n                \"personName\": \"SOTHEBYS INTERNATIONAL REALTY AFFILLIATES, LLC\",\n                \"sourcePost\": null,\n                \"description\": null,\n                \"checkNumber\": \"epay701041312\"\n            }\n        ],\n        \"propertyFinancingInfo\": [\n            {\n                \"propertyId\": 50,\n                \"financeType\": \"Cash\",\n                \"loanRate\": 0,\n                \"loanAmount\": 0\n            }\n        ],\n        \"propertyCustomFieldInfo\": null\n    }\n]"}],"_postman_id":"63e13877-f12f-413e-b68b-e408ea078369"},{"name":"Property Report Summary","event":[{"listen":"prerequest","script":{"id":"3efd806d-4ca7-496a-9fae-e8bbc0febb58","exec":["pm.environment.set(\"pageSize\",5);"],"type":"text/javascript"}}],"id":"6be36745-9f13-44f9-a529-dd66ef38a23d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://{{base_url}}/api/propertyreport/summary?dateEnd={{dateEnd}}&dateStart={{dateStart}}&pageIndex={{pageIndex}}&pageSize={{pageSize}}","description":"<p>This Resource will allow you to get a summary of all closings broken down by year, month and agent.</p>\n","urlObject":{"protocol":"https","path":["api","propertyreport","summary"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>End date to filter the property data.</p>\n","type":"text/plain"},"key":"dateEnd","value":"{{dateEnd}}"},{"description":{"content":"<p>Start date to filter the property data.</p>\n","type":"text/plain"},"key":"dateStart","value":"{{dateStart}}"},{"description":{"content":"<p>The page number from which to retrieve the properties. Starts in zero.</p>\n","type":"text/plain"},"key":"pageIndex","value":"{{pageIndex}}"},{"description":{"content":"<p>The number of rows that can be pulled on a single call. Max value is 100.</p>\n","type":"text/plain"},"key":"pageSize","value":"{{pageSize}}"}],"variable":[]}},"response":[{"id":"a666cc39-9322-46ad-98e3-2a570aa259ab","name":"Property Report Summary","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic {{token}}","type":"text"}],"url":{"raw":"https://{{base_url}}/api/propertyreport/summary?dateEnd={{dateEnd}}&dateStart={{dateStart}}&pageIndex={{pageIndex}}&pageSize={{pageSize}}&showRemarks={{showRemarks}}","protocol":"https","host":["{{base_url}}"],"path":["api","propertyreport","summary"],"query":[{"key":"dateEnd","value":"{{dateEnd}}"},{"key":"dateStart","value":"{{dateStart}}"},{"key":"pageIndex","value":"{{pageIndex}}","description":"The page number from which to retrieve the properties. Starts in zero"},{"key":"pageSize","value":"{{pageSize}}","description":"The number of rows that can be pulled on a single call. Max value is 100"},{"key":"showRemarks","value":"{{showRemarks}}","description":"Retrieves fields from the <b>Darwin Property Remarks</b> section.\nPossible values are 1 or 0.\n\n1 means the fields of this section will be retrieved \n0 means the fields of this section will not be retrieved \n\nNOTE: see JSON response example for a complete list of fields in this section"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 06 Sep 2021 17:15:09 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"rowNumber\": 1,\n        \"date\": \"2014-01-01T00:00:00\",\n        \"companyID\": 1,\n        \"companyName\": \"Premier\",\n        \"officeID\": 3,\n        \"officeName\": \"Broad Avenue\",\n        \"officeAddress\": \"\",\n        \"officeCity\": \"\",\n        \"officeState\": \"\",\n        \"officeZip\": \"\",\n        \"agentID\": 140,\n        \"agentName\": \"Karen Jane Bsampled\",\n        \"agentStartDate\": null,\n        \"agentEndDate\": null,\n        \"active\": false,\n        \"typeCode\": null,\n        \"class\": \"SALE\",\n        \"c_list_gross\": null,\n        \"c_list_net\": null,\n        \"c_list_companyDollar\": null,\n        \"c_list_volume\": null,\n        \"c_list_transCount\": null,\n        \"c_list_deduct1\": null,\n        \"c_list_deduct2\": null,\n        \"c_list_deduct3\": null,\n        \"c_list_deduct4\": null,\n        \"c_list_deduct5\": null,\n        \"c_list_deduct6\": null,\n        \"c_list_deduct7\": null,\n        \"c_list_deduct8\": null,\n        \"c_list_deduct9\": null,\n        \"c_list_deduct10\": null,\n        \"c_list_deduct11\": null,\n        \"c_list_deduct12\": null,\n        \"c_list_billDeduct\": null,\n        \"c_list_thirdParty\": null,\n        \"c_list_count\": null,\n        \"c_list_referralAmount\": null,\n        \"c_sell_gross\": null,\n        \"c_sell_net\": null,\n        \"c_sell_companyDollar\": null,\n        \"c_sell_volume\": null,\n        \"c_sell_transCount\": null,\n        \"c_sell_deduct1\": null,\n        \"c_sell_deduct2\": null,\n        \"c_sell_deduct3\": null,\n        \"c_sell_deduct4\": null,\n        \"c_sell_deduct5\": null,\n        \"c_sell_deduct6\": null,\n        \"c_sell_deduct7\": null,\n        \"c_sell_deduct8\": null,\n        \"c_sell_deduct9\": null,\n        \"c_sell_deduct10\": null,\n        \"c_sell_deduct11\": null,\n        \"c_sell_deduct12\": null,\n        \"c_sell_billDeduct\": null,\n        \"c_sell_thirdParty\": null,\n        \"c_sell_count\": null,\n        \"c_sellers_count\": null,\n        \"c_buyers_count\": null,\n        \"c_sell_referralAmount\": null,\n        \"l_current_volume\": null,\n        \"l_current_count\": null,\n        \"l_taken_volume\": null,\n        \"l_taken_count\": null,\n        \"l_hist_volume\": null,\n        \"l_hist_count\": null,\n        \"p_current_gross\": null,\n        \"p_current_net\": null,\n        \"p_current_companyDollar\": null,\n        \"p_current_volume\": null,\n        \"p_current_transCount\": null,\n        \"p_current_otherDeducts\": null,\n        \"p_current_billDeduct\": null,\n        \"p_current_thirdParty\": null,\n        \"p_current_count\": null,\n        \"p_written_gross\": null,\n        \"p_written_net\": null,\n        \"p_written_companyDollar\": null,\n        \"p_written_volume\": null,\n        \"p_written_transCount\": null,\n        \"p_written_otherDeducts\": null,\n        \"p_written_billDeduct\": null,\n        \"p_written_thirdParty\": null,\n        \"p_written_count\": null,\n        \"p_hist_gross\": null,\n        \"p_hist_net\": null,\n        \"p_hist_companyDollar\": null,\n        \"p_hist_volume\": null,\n        \"p_hist_transCount\": null,\n        \"p_hist_otherDeducts\": null,\n        \"p_hist_billDeduct\": null,\n        \"p_hist_thirdParty\": null,\n        \"p_hist_count\": null\n    },\n    {\n        \"rowNumber\": 2,\n        \"date\": \"2014-01-01T00:00:00\",\n        \"companyID\": 1,\n        \"companyName\": \"Premier\",\n        \"officeID\": 3,\n        \"officeName\": \"Broad Avenue\",\n        \"officeAddress\": \"\",\n        \"officeCity\": \"\",\n        \"officeState\": \"\",\n        \"officeZip\": \"\",\n        \"agentID\": 73,\n        \"agentName\": \"Lynn sampleerssample\",\n        \"agentStartDate\": null,\n        \"agentEndDate\": null,\n        \"active\": false,\n        \"typeCode\": null,\n        \"class\": \"SALE\",\n        \"c_list_gross\": null,\n        \"c_list_net\": null,\n        \"c_list_companyDollar\": null,\n        \"c_list_volume\": null,\n        \"c_list_transCount\": null,\n        \"c_list_deduct1\": null,\n        \"c_list_deduct2\": null,\n        \"c_list_deduct3\": null,\n        \"c_list_deduct4\": null,\n        \"c_list_deduct5\": null,\n        \"c_list_deduct6\": null,\n        \"c_list_deduct7\": null,\n        \"c_list_deduct8\": null,\n        \"c_list_deduct9\": null,\n        \"c_list_deduct10\": null,\n        \"c_list_deduct11\": null,\n        \"c_list_deduct12\": null,\n        \"c_list_billDeduct\": null,\n        \"c_list_thirdParty\": null,\n        \"c_list_count\": null,\n        \"c_list_referralAmount\": null,\n        \"c_sell_gross\": null,\n        \"c_sell_net\": null,\n        \"c_sell_companyDollar\": null,\n        \"c_sell_volume\": null,\n        \"c_sell_transCount\": null,\n        \"c_sell_deduct1\": null,\n        \"c_sell_deduct2\": null,\n        \"c_sell_deduct3\": null,\n        \"c_sell_deduct4\": null,\n        \"c_sell_deduct5\": null,\n        \"c_sell_deduct6\": null,\n        \"c_sell_deduct7\": null,\n        \"c_sell_deduct8\": null,\n        \"c_sell_deduct9\": null,\n        \"c_sell_deduct10\": null,\n        \"c_sell_deduct11\": null,\n        \"c_sell_deduct12\": null,\n        \"c_sell_billDeduct\": null,\n        \"c_sell_thirdParty\": null,\n        \"c_sell_count\": null,\n        \"c_sellers_count\": null,\n        \"c_buyers_count\": null,\n        \"c_sell_referralAmount\": null,\n        \"l_current_volume\": null,\n        \"l_current_count\": null,\n        \"l_taken_volume\": null,\n        \"l_taken_count\": null,\n        \"l_hist_volume\": null,\n        \"l_hist_count\": null,\n        \"p_current_gross\": null,\n        \"p_current_net\": null,\n        \"p_current_companyDollar\": null,\n        \"p_current_volume\": null,\n        \"p_current_transCount\": null,\n        \"p_current_otherDeducts\": null,\n        \"p_current_billDeduct\": null,\n        \"p_current_thirdParty\": null,\n        \"p_current_count\": null,\n        \"p_written_gross\": null,\n        \"p_written_net\": null,\n        \"p_written_companyDollar\": null,\n        \"p_written_volume\": null,\n        \"p_written_transCount\": null,\n        \"p_written_otherDeducts\": null,\n        \"p_written_billDeduct\": null,\n        \"p_written_thirdParty\": null,\n        \"p_written_count\": null,\n        \"p_hist_gross\": null,\n        \"p_hist_net\": null,\n        \"p_hist_companyDollar\": null,\n        \"p_hist_volume\": null,\n        \"p_hist_transCount\": null,\n        \"p_hist_otherDeducts\": null,\n        \"p_hist_billDeduct\": null,\n        \"p_hist_thirdParty\": null,\n        \"p_hist_count\": null\n    },\n    {\n        \"rowNumber\": 3,\n        \"date\": \"2014-01-01T00:00:00\",\n        \"companyID\": 1,\n        \"companyName\": \"Premier\",\n        \"officeID\": 4,\n        \"officeName\": \"Captiva\",\n        \"officeAddress\": \"\",\n        \"officeCity\": \"\",\n        \"officeState\": \"\",\n        \"officeZip\": \"\",\n        \"agentID\": 131,\n        \"agentName\": \"Stephanie Bsamplesett\",\n        \"agentStartDate\": null,\n        \"agentEndDate\": null,\n        \"active\": true,\n        \"typeCode\": null,\n        \"class\": \"SALE\",\n        \"c_list_gross\": null,\n        \"c_list_net\": null,\n        \"c_list_companyDollar\": null,\n        \"c_list_volume\": null,\n        \"c_list_transCount\": null,\n        \"c_list_deduct1\": null,\n        \"c_list_deduct2\": null,\n        \"c_list_deduct3\": null,\n        \"c_list_deduct4\": null,\n        \"c_list_deduct5\": null,\n        \"c_list_deduct6\": null,\n        \"c_list_deduct7\": null,\n        \"c_list_deduct8\": null,\n        \"c_list_deduct9\": null,\n        \"c_list_deduct10\": null,\n        \"c_list_deduct11\": null,\n        \"c_list_deduct12\": null,\n        \"c_list_billDeduct\": null,\n        \"c_list_thirdParty\": null,\n        \"c_list_count\": null,\n        \"c_list_referralAmount\": null,\n        \"c_sell_gross\": null,\n        \"c_sell_net\": null,\n        \"c_sell_companyDollar\": null,\n        \"c_sell_volume\": null,\n        \"c_sell_transCount\": null,\n        \"c_sell_deduct1\": null,\n        \"c_sell_deduct2\": null,\n        \"c_sell_deduct3\": null,\n        \"c_sell_deduct4\": null,\n        \"c_sell_deduct5\": null,\n        \"c_sell_deduct6\": null,\n        \"c_sell_deduct7\": null,\n        \"c_sell_deduct8\": null,\n        \"c_sell_deduct9\": null,\n        \"c_sell_deduct10\": null,\n        \"c_sell_deduct11\": null,\n        \"c_sell_deduct12\": null,\n        \"c_sell_billDeduct\": null,\n        \"c_sell_thirdParty\": null,\n        \"c_sell_count\": null,\n        \"c_sellers_count\": null,\n        \"c_buyers_count\": null,\n        \"c_sell_referralAmount\": null,\n        \"l_current_volume\": null,\n        \"l_current_count\": null,\n        \"l_taken_volume\": null,\n        \"l_taken_count\": null,\n        \"l_hist_volume\": null,\n        \"l_hist_count\": null,\n        \"p_current_gross\": null,\n        \"p_current_net\": null,\n        \"p_current_companyDollar\": null,\n        \"p_current_volume\": null,\n        \"p_current_transCount\": null,\n        \"p_current_otherDeducts\": null,\n        \"p_current_billDeduct\": null,\n        \"p_current_thirdParty\": null,\n        \"p_current_count\": null,\n        \"p_written_gross\": null,\n        \"p_written_net\": null,\n        \"p_written_companyDollar\": null,\n        \"p_written_volume\": null,\n        \"p_written_transCount\": null,\n        \"p_written_otherDeducts\": null,\n        \"p_written_billDeduct\": null,\n        \"p_written_thirdParty\": null,\n        \"p_written_count\": null,\n        \"p_hist_gross\": null,\n        \"p_hist_net\": null,\n        \"p_hist_companyDollar\": null,\n        \"p_hist_volume\": null,\n        \"p_hist_transCount\": null,\n        \"p_hist_otherDeducts\": null,\n        \"p_hist_billDeduct\": null,\n        \"p_hist_thirdParty\": null,\n        \"p_hist_count\": null\n    },\n    {\n        \"rowNumber\": 4,\n        \"date\": \"2014-01-01T00:00:00\",\n        \"companyID\": 1,\n        \"companyName\": \"Premier\",\n        \"officeID\": 8,\n        \"officeName\": \"Gallery\",\n        \"officeAddress\": \"\",\n        \"officeCity\": \"\",\n        \"officeState\": \"\",\n        \"officeZip\": \"\",\n        \"agentID\": 81,\n        \"agentName\": \"Amy sampleherholt\",\n        \"agentStartDate\": \"2020-06-21T00:00:00\",\n        \"agentEndDate\": \"2021-06-20T00:00:00\",\n        \"active\": true,\n        \"typeCode\": null,\n        \"class\": \"SALE\",\n        \"c_list_gross\": null,\n        \"c_list_net\": null,\n        \"c_list_companyDollar\": null,\n        \"c_list_volume\": null,\n        \"c_list_transCount\": null,\n        \"c_list_deduct1\": null,\n        \"c_list_deduct2\": null,\n        \"c_list_deduct3\": null,\n        \"c_list_deduct4\": null,\n        \"c_list_deduct5\": null,\n        \"c_list_deduct6\": null,\n        \"c_list_deduct7\": null,\n        \"c_list_deduct8\": null,\n        \"c_list_deduct9\": null,\n        \"c_list_deduct10\": null,\n        \"c_list_deduct11\": null,\n        \"c_list_deduct12\": null,\n        \"c_list_billDeduct\": null,\n        \"c_list_thirdParty\": null,\n        \"c_list_count\": null,\n        \"c_list_referralAmount\": null,\n        \"c_sell_gross\": null,\n        \"c_sell_net\": null,\n        \"c_sell_companyDollar\": null,\n        \"c_sell_volume\": null,\n        \"c_sell_transCount\": null,\n        \"c_sell_deduct1\": null,\n        \"c_sell_deduct2\": null,\n        \"c_sell_deduct3\": null,\n        \"c_sell_deduct4\": null,\n        \"c_sell_deduct5\": null,\n        \"c_sell_deduct6\": null,\n        \"c_sell_deduct7\": null,\n        \"c_sell_deduct8\": null,\n        \"c_sell_deduct9\": null,\n        \"c_sell_deduct10\": null,\n        \"c_sell_deduct11\": null,\n        \"c_sell_deduct12\": null,\n        \"c_sell_billDeduct\": null,\n        \"c_sell_thirdParty\": null,\n        \"c_sell_count\": null,\n        \"c_sellers_count\": null,\n        \"c_buyers_count\": null,\n        \"c_sell_referralAmount\": null,\n        \"l_current_volume\": null,\n        \"l_current_count\": null,\n        \"l_taken_volume\": null,\n        \"l_taken_count\": null,\n        \"l_hist_volume\": null,\n        \"l_hist_count\": null,\n        \"p_current_gross\": null,\n        \"p_current_net\": null,\n        \"p_current_companyDollar\": null,\n        \"p_current_volume\": null,\n        \"p_current_transCount\": null,\n        \"p_current_otherDeducts\": null,\n        \"p_current_billDeduct\": null,\n        \"p_current_thirdParty\": null,\n        \"p_current_count\": null,\n        \"p_written_gross\": null,\n        \"p_written_net\": null,\n        \"p_written_companyDollar\": null,\n        \"p_written_volume\": null,\n        \"p_written_transCount\": null,\n        \"p_written_otherDeducts\": null,\n        \"p_written_billDeduct\": null,\n        \"p_written_thirdParty\": null,\n        \"p_written_count\": null,\n        \"p_hist_gross\": null,\n        \"p_hist_net\": null,\n        \"p_hist_companyDollar\": null,\n        \"p_hist_volume\": null,\n        \"p_hist_transCount\": null,\n        \"p_hist_otherDeducts\": null,\n        \"p_hist_billDeduct\": null,\n        \"p_hist_thirdParty\": null,\n        \"p_hist_count\": null\n    },\n    {\n        \"rowNumber\": 5,\n        \"date\": \"2014-01-01T00:00:00\",\n        \"companyID\": 1,\n        \"companyName\": \"Premier\",\n        \"officeID\": 9,\n        \"officeName\": \"Harbour Dr\",\n        \"officeAddress\": null,\n        \"officeCity\": null,\n        \"officeState\": null,\n        \"officeZip\": null,\n        \"agentID\": 52474,\n        \"agentName\": \"Michael samplewler\",\n        \"agentStartDate\": \"2020-03-01T00:00:00\",\n        \"agentEndDate\": \"2021-02-28T00:00:00\",\n        \"active\": true,\n        \"typeCode\": null,\n        \"class\": \"SALE\",\n        \"c_list_gross\": null,\n        \"c_list_net\": null,\n        \"c_list_companyDollar\": null,\n        \"c_list_volume\": null,\n        \"c_list_transCount\": null,\n        \"c_list_deduct1\": null,\n        \"c_list_deduct2\": null,\n        \"c_list_deduct3\": null,\n        \"c_list_deduct4\": null,\n        \"c_list_deduct5\": null,\n        \"c_list_deduct6\": null,\n        \"c_list_deduct7\": null,\n        \"c_list_deduct8\": null,\n        \"c_list_deduct9\": null,\n        \"c_list_deduct10\": null,\n        \"c_list_deduct11\": null,\n        \"c_list_deduct12\": null,\n        \"c_list_billDeduct\": null,\n        \"c_list_thirdParty\": null,\n        \"c_list_count\": null,\n        \"c_list_referralAmount\": null,\n        \"c_sell_gross\": null,\n        \"c_sell_net\": null,\n        \"c_sell_companyDollar\": null,\n        \"c_sell_volume\": null,\n        \"c_sell_transCount\": null,\n        \"c_sell_deduct1\": null,\n        \"c_sell_deduct2\": null,\n        \"c_sell_deduct3\": null,\n        \"c_sell_deduct4\": null,\n        \"c_sell_deduct5\": null,\n        \"c_sell_deduct6\": null,\n        \"c_sell_deduct7\": null,\n        \"c_sell_deduct8\": null,\n        \"c_sell_deduct9\": null,\n        \"c_sell_deduct10\": null,\n        \"c_sell_deduct11\": null,\n        \"c_sell_deduct12\": null,\n        \"c_sell_billDeduct\": null,\n        \"c_sell_thirdParty\": null,\n        \"c_sell_count\": null,\n        \"c_sellers_count\": null,\n        \"c_buyers_count\": null,\n        \"c_sell_referralAmount\": null,\n        \"l_current_volume\": null,\n        \"l_current_count\": null,\n        \"l_taken_volume\": null,\n        \"l_taken_count\": null,\n        \"l_hist_volume\": null,\n        \"l_hist_count\": null,\n        \"p_current_gross\": null,\n        \"p_current_net\": null,\n        \"p_current_companyDollar\": null,\n        \"p_current_volume\": null,\n        \"p_current_transCount\": null,\n        \"p_current_otherDeducts\": null,\n        \"p_current_billDeduct\": null,\n        \"p_current_thirdParty\": null,\n        \"p_current_count\": null,\n        \"p_written_gross\": null,\n        \"p_written_net\": null,\n        \"p_written_companyDollar\": null,\n        \"p_written_volume\": null,\n        \"p_written_transCount\": null,\n        \"p_written_otherDeducts\": null,\n        \"p_written_billDeduct\": null,\n        \"p_written_thirdParty\": null,\n        \"p_written_count\": null,\n        \"p_hist_gross\": null,\n        \"p_hist_net\": null,\n        \"p_hist_companyDollar\": null,\n        \"p_hist_volume\": null,\n        \"p_hist_transCount\": null,\n        \"p_hist_otherDeducts\": null,\n        \"p_hist_billDeduct\": null,\n        \"p_hist_thirdParty\": null,\n        \"p_hist_count\": null\n    }\n]"}],"_postman_id":"6be36745-9f13-44f9-a529-dd66ef38a23d"},{"name":"Property People","event":[{"listen":"prerequest","script":{"id":"997900a1-a544-4522-97e9-92338c4397a7","exec":[""],"type":"text/javascript"}}],"id":"1d066af5-977f-4bbb-b21d-93375c005922","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://{{base_url}}/api/property/people?propertyID={{propertyId}}&typeName={{typeName}}&side={{side}}","description":"<p>This Resource allowd you to get the information of people involved in a given transaction (attorneys, title companies, lenders, home inspectors, appraisers, etc.) filtered by different parameters such as propertyId, typeName, side.</p>\n","urlObject":{"protocol":"https","path":["api","property","people"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>This is the unique identifier of the property.</p>\n","type":"text/plain"},"key":"propertyID","value":"{{propertyId}}"},{"description":{"content":"<p>The person type in any given property people. This name must match the one in Darwin (attorney, title company, lender, home inspectors, appraisers, etc.).</p>\n<p>If used, it will filter the results to show only Darwin properties people who have this value as the person type.</p>\n","type":"text/plain"},"key":"typeName","value":"{{typeName}}"},{"description":{"content":"<p>The side in any given property people. Possible values are L or S.</p>\n<p>If used, it will filter the results to only show properties people that has this value as side.</p>\n","type":"text/plain"},"key":"side","value":"{{side}}"}],"variable":[]}},"response":[{"id":"7a866e26-d195-42dc-8d20-87aa4540f0f8","name":"Property People","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Basic {{token}}"}],"url":{"raw":"https://{{base_url}}/api/property/people?propertyID={{propertyId}}&typeName={{typeName}}&side={{side}}","protocol":"https","host":["{{base_url}}"],"path":["api","property","people"],"query":[{"key":"propertyID","value":"{{propertyId}}","description":"This is the unique identifier of the property"},{"key":"typeName","value":"{{typeName}}"},{"key":"side","value":"{{side}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 06 Sep 2021 17:12:32 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"propertyPeopleId\": 49311,\n        \"propertyId\": 252,\n        \"personId\": 27648,\n        \"personTypeId\": 1371,\n        \"personName\": \"George Kuzma\",\n        \"personEmailAddress\": \"\",\n        \"personPhone\": null,\n        \"personAddress\": \"11030 Gulfshore Drive #401 \",\n        \"cityStateZipAddress\": \"Naples, FL 34108\",\n        \"side\": \"L\",\n        \"typePerson\": \"Buyer/Seller\",\n        \"leadGeneratedBy\": \"Agent Generated\",\n        \"leadSource\": \"Non Commissionable Sale ( Excluded )\",\n        \"division\": null,\n        \"confirmed\": false,\n        \"createDate\": \"2019-04-02T13:47:54.033\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": null,\n        \"modifyBy\": null,\n        \"deposit\": false,\n        \"print\": false,\n        \"ignoreOffset\": null\n    },\n    {\n        \"propertyPeopleId\": 40727,\n        \"propertyId\": 252,\n        \"personId\": 16827,\n        \"personTypeId\": 1371,\n        \"personName\": \"Judith Kuzma\",\n        \"personEmailAddress\": \"\",\n        \"personPhone\": null,\n        \"personAddress\": \"11030 Gulfshore Drive #401 \",\n        \"cityStateZipAddress\": \"Naples, FL 34108\",\n        \"side\": \"L\",\n        \"typePerson\": \"Buyer/Seller\",\n        \"leadGeneratedBy\": \"Agent Generated\",\n        \"leadSource\": \"Non Commissionable Sale ( Excluded )\",\n        \"division\": null,\n        \"confirmed\": false,\n        \"createDate\": \"2019-04-02T13:47:54.033\",\n        \"createdBy\": \"ATBIAPP\\\\lucho\",\n        \"modifyDate\": null,\n        \"modifyBy\": null,\n        \"deposit\": false,\n        \"print\": false,\n        \"ignoreOffset\": null\n    }\n]"}],"_postman_id":"1d066af5-977f-4bbb-b21d-93375c005922"},{"name":"Property Payload","id":"2f22f355-649b-47c9-976e-cfb23c9efd74","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\"propertyID\": 0,\r\n\"streetNumber\": \"388\",\r\n\"streetName\": \"Howard\",\r\n\"streetSuffix\": \"Ave.\",\r\n\"city\": \"Holland\",\r\n\"state\": \"MI\",\r\n\"zip\": \"49424\",\r\n\"statusCode\": \"AC\",\r\n\"companyName\": \"Company 9\",\r\n\"checkType\": \"DEPOSIT\",\r\n\"amount\": 7000.0,\r\n\"accountNumber\": \"1-9901\",\r\n\"payeeID\": 125843,\r\n\"checkNumber\": \"PL-530-168-399\",\r\n\"checkDate\": \"2021-01-04T16:57:05\",\r\n\"checkMemo\": \"Earnest Money Payment\",\r\n\"listingAgentPersonId\":85,\r\n\"sellingAgentPersonId\":0,\r\n\"BuyerFirstName\":\"Jean\",\r\n\"BuyerLastName\":\"Sean\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{base_url}}/api/property/payload","description":"<p>This Resource will allow you to create send an escrow check or deposit for any given property.</p>\n<p>It will first try to find the proiperty by either PropertyId (if available) or MLS Number. If no match is found, it will create a new property and it will attach the escrow deposit or check into that property.</p>\n<p>If buyer information is sent, it will create the buyer as a person record in Darwin system</p>\n<p>If listing or selling agent IDs are set, the corresponding agent will get assigned to the property</p>\n","urlObject":{"protocol":"https","path":["api","property","payload"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"9de7e53f-0df0-4ebf-91ff-f38fa85b183d","name":"Property Payload","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Basic {{token}}","type":"text","description":"This is a value generated with 2 components:\n\n“Basic `{userName:token}`”\n\nThe Token will be issued to the user after a successful authentication (used can get it from the LOGIN endpoint response when this succeeds) \n\nThis 2-value string needs to be encoded to base64\n"}],"body":{"mode":"raw","raw":"{\r\n\"propertyID\": 0,\r\n\"streetNumber\": \"388\",\r\n\"streetName\": \"Howard\",\r\n\"streetSuffix\": \"Ave.\",\r\n\"city\": \"Holland\",\r\n\"state\": \"MI\",\r\n\"zip\": \"49424\",\r\n\"statusCode\": \"AC\",\r\n\"companyName\": \"Company 9\",\r\n\"checkType\": \"DEPOSIT\",\r\n\"amount\": 7000.0,\r\n\"accountNumber\": \"1-9901\",\r\n\"payeeID\": 125843,\r\n\"checkNumber\": \"PL-530-168-399\",\r\n\"checkDate\": \"2021-01-04T16:57:05\",\r\n\"checkMemo\": \"Earnest Money Payment\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{base_url}}/api/property/payload"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Thu, 09 Sep 2021 22:01:23 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"propertyID\": 77722,\n    \"propertyAddress\": \"388 Howard Ave., Holland, MI, 49424\",\n    \"statusID\": 1678,\n    \"statusCode\": \"AC\",\n    \"status\": \"Active\",\n    \"companyID\": 2,\n    \"companyName\": \"Company 9\",\n    \"escrowID\": 63125,\n    \"checkType\": \"DEPOSIT\",\n    \"amount\": 7000,\n    \"accountNumber\": \"1-9901\",\n    \"accountDescription\": \"FL Bank Escrow\",\n    \"payeeID\": 125843,\n    \"payee\": \"2941 Sandringham Pl, Sarasota, FL 34235\",\n    \"checkNumber\": \"PL-530-168-399\",\n    \"checkDate\": \"2021-01-04T16:57:05\",\n    \"checkMemo\": \"Earnest Money Payment\",\n    \"listingAgentPersonId\": 0,\n    \"sellingAgentPersonId\": 0,\n    \"buyerFirstName\": null,\n    \"buyerLastName\": null\n}"}],"_postman_id":"2f22f355-649b-47c9-976e-cfb23c9efd74"},{"name":"Property Add","id":"531e45ef-5ffa-4c8e-9b47-0ebb852e68a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"propertyId\": 0,\r\n    \"propertyAddress\": \"14531Main StreetPlazaApt 204California CityCA93504\",\r\n    \"transactionGUID\": \"\",\r\n    \"transactionId\": \"\",\r\n    \"person_CustomerId\": \"\",\r\n    \"person_Customer\": \"\",\r\n    \"streetNumber\": \"14531\",\r\n    \"streetDirection\": \"NE\",\r\n    \"streetName\": \"Main Street\",\r\n    \"streetDesignation\": \"Plaza\",\r\n    \"streetSuffix\": \"N\",\r\n    \"suiteAptNumber\": \"Apt 204\",\r\n    \"buildingFloorNumber\": \"3\",\r\n    \"city\": \"California City\",\r\n    \"state\": \"CA\",\r\n    \"zip\": \"93504\",\r\n    \"statusId\": 1688,\r\n    \"status\": \"Pending\",\r\n    \"statusCode\": \"OP\",\r\n    \"statusLocked\": false,\r\n    \"excludeList\": false,\r\n    \"excludeSell\": false,\r\n    \"excludeDuplicate\": false,\r\n    \"special\": false,\r\n    \"shortSale\": false,\r\n    \"forclosure\": false,\r\n    \"showOnInternet\": false,\r\n    \"showAddressOnInternet\": false,\r\n    \"showPriceOnInternet\": false,\r\n    \"hideListPriceOnWeb\": false,\r\n    \"condo\": false,\r\n    \"offset\": false,\r\n    \"regionalPost\": false,\r\n    \"condoFee\": \"\",\r\n    \"mlsNumber1\": \"45645\",\r\n    \"mlsNumber2\": \"\",\r\n    \"qaControl1\": \"\",\r\n    \"qaControl2\": \"\",\r\n    \"brokerReferenceNo\": \"\",\r\n    \"escrowNo\": \"\",\r\n    \"schemaType\": \"\",\r\n    \"listDate\": \"07/01/2025\",\r\n    \"expiredDate\": \"07/31/2025\",\r\n    \"withdrawnDate\": \"\",\r\n    \"pendingDate\": \"\",\r\n    \"estimatedClosingDate\": \"\",\r\n    \"cancelDate\": \"\",\r\n    \"cancelReasonId\": \"\",\r\n    \"closeDate\": \"\",\r\n    \"processedDate\": \"\",\r\n    \"sellerEnglishSurvey\": false,\r\n    \"sellerDirectMail\": false,\r\n    \"sellerSendSurveyDelivery\": false,\r\n    \"sellerSurveyDeliveryMethod\": \"\",\r\n    \"buyerEnglishSurvey\": false,\r\n    \"buyerDirectMail\": false,\r\n    \"buyerSendSurveyDelivery\": false,\r\n    \"buyerSurveyDeliveryMethod\": \"\",\r\n    \"keyNumber\": \"\",\r\n    \"shackleCode\": \"\",\r\n    \"notes\": \"\",\r\n    \"showingInstructionsInternal\": \"\",\r\n    \"directionsInternal\": \"\",\r\n    \"alternateListOfficeId\": \"\",\r\n    \"alternateSellOfficeId\": \"\",\r\n    \"yearBuilt\": \"\",\r\n    \"lastSoldDate\": \"\",\r\n    \"taxYear\": \"\",\r\n    \"taxRollNumber\": \"\",\r\n    \"annualTaxes\": \"\",\r\n    \"numberOfAcres\": \"\",\r\n    \"lotSize\": \"\",\r\n    \"lotSizeUnitID\": \"\",\r\n    \"squareFeet\": \"\",\r\n    \"squareFeetUnitID\": \"\",\r\n    \"levelsCount\": \"\",\r\n    \"sequenceNumber\": \"\",\r\n    \"transportation\": \"\",\r\n    \"neigborhoodName\": \"\",\r\n    \"propertyLocation\": \"\",\r\n    \"bedrooms\": \"\",\r\n    \"escrowHeld\": \"\",\r\n    \"referralTypeId\": \"\",\r\n    \"numOfRooms\": \"\",\r\n    \"parkingSpaces\": \"\",\r\n    \"referralType\": \"\",\r\n    \"typeCode\": \"C\",\r\n    \"classificationId\": 22939,\r\n    \"propertyTypeId\": 1726,\r\n    \"incomeTypeID\": 1258,\r\n    \"propertyStyleId\": \"\",\r\n    \"transactionTypeId\": \"\",\r\n    \"propertyUseId\": \"\",\r\n    \"developmentId\": \"\",\r\n    \"appraisalDate\": \"\",\r\n    \"inspectionDate\": \"\",\r\n    \"applicationDate\": \"\",\r\n    \"loanRate\": \"\",\r\n    \"loanAmount\": \"\",\r\n    \"financingTypeId\": \"\",\r\n    \"listingPrice\": 0,\r\n    \"sellingPrice\": 0,\r\n    \"commissionPrice\": 0,\r\n    \"isFlatCommission\": false,\r\n    \"reactivate\": \"\",\r\n    \"listCommRate\": 0,\r\n    \"listCommission\": 0,\r\n    \"sellCommRate\": 0,\r\n    \"sellCommission\": 0,\r\n    \"totalCommission\": 0,\r\n    \"totalCommRate\": 0,\r\n    \"listingGUID\": \"\",\r\n    \"DASHTransactionGUID\": \"\",\r\n    \"payCobroke\": false,\r\n    \"refListRate\": 0,\r\n    \"refListCommission\": 0,\r\n    \"refSellRate\": 0,\r\n    \"refSellCommission\": 0,\r\n    \"companyIncome\": \"\",\r\n    \"balanceDue\": \"\",\r\n    \"trans1\": \"\",\r\n    \"trans2\": \"\",\r\n    \"reimbursedDeposit\": \"\",\r\n    \"additionalincome\": \"\",\r\n    \"propId\": \"\",\r\n    \"firstTimeBuyer\": false,\r\n    \"confirmed\": false,\r\n    \"TRType\": \"\",\r\n    \"rentalFrequency\": \"\",\r\n    \"fullBaths\": \"\",\r\n    \"halfBathsTotal\": \"\",\r\n    \"threeQuarterBathsTotal\": \"\",\r\n    \"quarterBathsTotal\": \"\",\r\n    \"companyID\": 54,\r\n    \"companyName\": \"\",\r\n    \"ourList\": false,\r\n    \"ourSell\": false,\r\n    \"listAgentID\": \"\",\r\n    \"sellAgentID\": \"\",\r\n    \"listAgent\": \"\",\r\n    \"sellAgent\": \"\",\r\n    \"listOffice\": \"\",\r\n    \"sellOffice\": \"\",\r\n    \"leadGeneratedByBuyer\": \"\",\r\n    \"leadGeneratedBySeller\": \"\",\r\n    \"leadSourceBuyer\": \"\",\r\n    \"leadSourceSeller\": \"\",\r\n    \"cobrokeCommRate\": 0,\r\n    \"cobrokeCommission\": 0,\r\n    \"subDivision\": \"\",\r\n    \"transactionNotes\": \"\",\r\n    \"agentCommissionNotes\": \"\",\r\n    \"sellerReferralNotes\": \"\",\r\n    \"buyerReferralNotes\": \"\",\r\n    \"excludeFromSubmission\": false,\r\n    \"needRecalc\": false,\r\n    \"expireDateCalculated\": false,\r\n    \"feedID\": \"\",\r\n    \"feedName\": \"\",\r\n    \"dotLoopID\": \"\",\r\n    \"eRELOID\": \"\",\r\n    \"skySlopeID\": \"\",\r\n    \"appFileID\": \"\",\r\n    \"mlsListingRID\": \"\",\r\n    \"submitID\": \"\",\r\n    \"submitDate\": \"\",\r\n    \"resultType\": \"\",\r\n    \"resultDate\": \"\",\r\n    \"resultMessage\": \"\",\r\n    \"trade_LW\": \"\",\r\n    \"listing_LW\": \"\",\r\n    \"photoCount\": 0,\r\n    \"addedManuallyPhotoCount\": 0,\r\n    \"pulledFromMLSPhotoCount\": 0,\r\n    \"photoLastUpdated\": \"0001-01-01T00:00:00\",\r\n    \"addedManuallyPhotoLastUpdated\": \"0001-01-01T00:00:00\",\r\n    \"pulledFromMLSPhotoLastUpdated\": \"0001-01-01T00:00:00\",\r\n    \"createDate\": \"\",\r\n    \"createdBy\": \"\",\r\n    \"modifyDate\": \"\",\r\n    \"modifyBy\": \"\",\r\n    \"deleteDate\": \"\",\r\n    \"deletedBy\": \"\",\r\n    \"isMiscIncome\": true,\r\n    \"isOtherIncome\": false,\r\n    \"atGUID\": \"\",\r\n    \"rulesEnabled\": false,\r\n    \"rulesToValidate\": \"ALL\",\r\n    \"agentTeamListId\": \"\",\r\n    \"agentTeamSellId\": \"\",\r\n    \"depositsInAdvance\": 0,\r\n    \"agents\": \"\",\r\n    \"referrals\": \"\",\r\n    \"thirdPartyPayments\": \"\",\r\n    \"overrides\": \"\",\r\n    \"extraVouchers\": \"\",\r\n    \"reimbursements\": \"\",\r\n    \"invoice\": \"\",\r\n    \"invoiceDetail\": \"\",\r\n    \"agentVouchers\": \"\",\r\n    \"agentVouchersDetail\": \"\",\r\n    \"referralVouchers\": \"\",\r\n    \"referralVouchersDetail\": \"\",\r\n    \"thirdPartyVouchers\": \"\",\r\n    \"thirdPartyVouchersDetail\": \"\",\r\n    \"overrideVouchers\": \"\",\r\n    \"overrideVouchersDetail\": \"\",\r\n    \"reimbursementVouchers\": \"\",\r\n    \"reimbursementVouchersDetail\": \"\",\r\n    \"extraVouchersMain\": \"\",\r\n    \"extraVouchersDetail\": \"\",\r\n    \"billDeductInvoice\": \"\",\r\n    \"isCommercialLease\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{base_url}}/api/property","description":"<p>This Resource will allow you to create a property record with just the minimal information:</p>\n<p>propertyAddress, streetNumber, streetDirection, streetName, streetDesignation, streetSuffix, suiteAptNumber, buildingFloorNumber, city, state, zip, statusId, status, statusCode, mlsNumber1, listDate, expiredDate, classificationId, propertyTypeId, incomeTypeID.</p>\n","urlObject":{"protocol":"https","path":["api","property"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"4ceb1fd8-bd19-4e3e-9bd7-a3202060d77e","name":"Property Add","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"propertyId\": 0,\r\n    \"propertyAddress\": \"14531Main StreetPlazaApt 204California CityCA93504\",\r\n    \"transactionGUID\": \"\",\r\n    \"transactionId\": \"\",\r\n    \"person_CustomerId\": \"\",\r\n    \"person_Customer\": \"\",\r\n    \"streetNumber\": \"14531\",\r\n    \"streetDirection\": \"NE\",\r\n    \"streetName\": \"Main Street\",\r\n    \"streetDesignation\": \"Plaza\",\r\n    \"streetSuffix\": \"N\",\r\n    \"suiteAptNumber\": \"Apt 204\",\r\n    \"buildingFloorNumber\": \"3\",\r\n    \"city\": \"California City\",\r\n    \"state\": \"CA\",\r\n    \"zip\": \"93504\",\r\n    \"statusId\": 1688,\r\n    \"status\": \"Pending\",\r\n    \"statusCode\": \"OP\",\r\n    \"statusLocked\": false,\r\n    \"excludeList\": false,\r\n    \"excludeSell\": false,\r\n    \"excludeDuplicate\": false,\r\n    \"special\": false,\r\n    \"shortSale\": false,\r\n    \"forclosure\": false,\r\n    \"showOnInternet\": false,\r\n    \"showAddressOnInternet\": false,\r\n    \"showPriceOnInternet\": false,\r\n    \"hideListPriceOnWeb\": false,\r\n    \"condo\": false,\r\n    \"offset\": false,\r\n    \"regionalPost\": false,\r\n    \"condoFee\": \"\",\r\n    \"mlsNumber1\": \"45645\",\r\n    \"mlsNumber2\": \"\",\r\n    \"qaControl1\": \"\",\r\n    \"qaControl2\": \"\",\r\n    \"brokerReferenceNo\": \"\",\r\n    \"escrowNo\": \"\",\r\n    \"schemaType\": \"\",\r\n    \"listDate\": \"07/01/2025\",\r\n    \"expiredDate\": \"07/31/2025\",\r\n    \"withdrawnDate\": \"\",\r\n    \"pendingDate\": \"\",\r\n    \"estimatedClosingDate\": \"\",\r\n    \"cancelDate\": \"\",\r\n    \"cancelReasonId\": \"\",\r\n    \"closeDate\": \"\",\r\n    \"processedDate\": \"\",\r\n    \"sellerEnglishSurvey\": false,\r\n    \"sellerDirectMail\": false,\r\n    \"sellerSendSurveyDelivery\": false,\r\n    \"sellerSurveyDeliveryMethod\": \"\",\r\n    \"buyerEnglishSurvey\": false,\r\n    \"buyerDirectMail\": false,\r\n    \"buyerSendSurveyDelivery\": false,\r\n    \"buyerSurveyDeliveryMethod\": \"\",\r\n    \"keyNumber\": \"\",\r\n    \"shackleCode\": \"\",\r\n    \"notes\": \"\",\r\n    \"showingInstructionsInternal\": \"\",\r\n    \"directionsInternal\": \"\",\r\n    \"alternateListOfficeId\": \"\",\r\n    \"alternateSellOfficeId\": \"\",\r\n    \"yearBuilt\": \"\",\r\n    \"lastSoldDate\": \"\",\r\n    \"taxYear\": \"\",\r\n    \"taxRollNumber\": \"\",\r\n    \"annualTaxes\": \"\",\r\n    \"numberOfAcres\": \"\",\r\n    \"lotSize\": \"\",\r\n    \"lotSizeUnitID\": \"\",\r\n    \"squareFeet\": \"\",\r\n    \"squareFeetUnitID\": \"\",\r\n    \"levelsCount\": \"\",\r\n    \"sequenceNumber\": \"\",\r\n    \"transportation\": \"\",\r\n    \"neigborhoodName\": \"\",\r\n    \"propertyLocation\": \"\",\r\n    \"bedrooms\": \"\",\r\n    \"escrowHeld\": \"\",\r\n    \"referralTypeId\": \"\",\r\n    \"numOfRooms\": \"\",\r\n    \"parkingSpaces\": \"\",\r\n    \"referralType\": \"\",\r\n    \"typeCode\": \"C\",\r\n    \"classificationId\": 22939,\r\n    \"propertyTypeId\": 1726,\r\n    \"incomeTypeID\": 1258,\r\n    \"propertyStyleId\": \"\",\r\n    \"transactionTypeId\": \"\",\r\n    \"propertyUseId\": \"\",\r\n    \"developmentId\": \"\",\r\n    \"appraisalDate\": \"\",\r\n    \"inspectionDate\": \"\",\r\n    \"applicationDate\": \"\",\r\n    \"loanRate\": \"\",\r\n    \"loanAmount\": \"\",\r\n    \"financingTypeId\": \"\",\r\n    \"listingPrice\": 0,\r\n    \"sellingPrice\": 0,\r\n    \"commissionPrice\": 0,\r\n    \"isFlatCommission\": false,\r\n    \"reactivate\": \"\",\r\n    \"listCommRate\": 0,\r\n    \"listCommission\": 0,\r\n    \"sellCommRate\": 0,\r\n    \"sellCommission\": 0,\r\n    \"totalCommission\": 0,\r\n    \"totalCommRate\": 0,\r\n    \"listingGUID\": \"\",\r\n    \"DASHTransactionGUID\": \"\",\r\n    \"payCobroke\": false,\r\n    \"refListRate\": 0,\r\n    \"refListCommission\": 0,\r\n    \"refSellRate\": 0,\r\n    \"refSellCommission\": 0,\r\n    \"companyIncome\": \"\",\r\n    \"balanceDue\": \"\",\r\n    \"trans1\": \"\",\r\n    \"trans2\": \"\",\r\n    \"reimbursedDeposit\": \"\",\r\n    \"additionalincome\": \"\",\r\n    \"propId\": \"\",\r\n    \"firstTimeBuyer\": false,\r\n    \"confirmed\": false,\r\n    \"TRType\": \"\",\r\n    \"rentalFrequency\": \"\",\r\n    \"fullBaths\": \"\",\r\n    \"halfBathsTotal\": \"\",\r\n    \"threeQuarterBathsTotal\": \"\",\r\n    \"quarterBathsTotal\": \"\",\r\n    \"companyID\": 54,\r\n    \"companyName\": \"\",\r\n    \"ourList\": false,\r\n    \"ourSell\": false,\r\n    \"listAgentID\": \"\",\r\n    \"sellAgentID\": \"\",\r\n    \"listAgent\": \"\",\r\n    \"sellAgent\": \"\",\r\n    \"listOffice\": \"\",\r\n    \"sellOffice\": \"\",\r\n    \"leadGeneratedByBuyer\": \"\",\r\n    \"leadGeneratedBySeller\": \"\",\r\n    \"leadSourceBuyer\": \"\",\r\n    \"leadSourceSeller\": \"\",\r\n    \"cobrokeCommRate\": 0,\r\n    \"cobrokeCommission\": 0,\r\n    \"subDivision\": \"\",\r\n    \"transactionNotes\": \"\",\r\n    \"agentCommissionNotes\": \"\",\r\n    \"sellerReferralNotes\": \"\",\r\n    \"buyerReferralNotes\": \"\",\r\n    \"excludeFromSubmission\": false,\r\n    \"needRecalc\": false,\r\n    \"expireDateCalculated\": false,\r\n    \"feedID\": \"\",\r\n    \"feedName\": \"\",\r\n    \"dotLoopID\": \"\",\r\n    \"eRELOID\": \"\",\r\n    \"skySlopeID\": \"\",\r\n    \"appFileID\": \"\",\r\n    \"mlsListingRID\": \"\",\r\n    \"submitID\": \"\",\r\n    \"submitDate\": \"\",\r\n    \"resultType\": \"\",\r\n    \"resultDate\": \"\",\r\n    \"resultMessage\": \"\",\r\n    \"trade_LW\": \"\",\r\n    \"listing_LW\": \"\",\r\n    \"photoCount\": 0,\r\n    \"addedManuallyPhotoCount\": 0,\r\n    \"pulledFromMLSPhotoCount\": 0,\r\n    \"photoLastUpdated\": \"0001-01-01T00:00:00\",\r\n    \"addedManuallyPhotoLastUpdated\": \"0001-01-01T00:00:00\",\r\n    \"pulledFromMLSPhotoLastUpdated\": \"0001-01-01T00:00:00\",\r\n    \"createDate\": \"\",\r\n    \"createdBy\": \"\",\r\n    \"modifyDate\": \"\",\r\n    \"modifyBy\": \"\",\r\n    \"deleteDate\": \"\",\r\n    \"deletedBy\": \"\",\r\n    \"isMiscIncome\": true,\r\n    \"isOtherIncome\": false,\r\n    \"atGUID\": \"\",\r\n    \"rulesEnabled\": false,\r\n    \"rulesToValidate\": \"ALL\",\r\n    \"agentTeamListId\": \"\",\r\n    \"agentTeamSellId\": \"\",\r\n    \"depositsInAdvance\": 0,\r\n    \"agents\": \"\",\r\n    \"referrals\": \"\",\r\n    \"thirdPartyPayments\": \"\",\r\n    \"overrides\": \"\",\r\n    \"extraVouchers\": \"\",\r\n    \"reimbursements\": \"\",\r\n    \"invoice\": \"\",\r\n    \"invoiceDetail\": \"\",\r\n    \"agentVouchers\": \"\",\r\n    \"agentVouchersDetail\": \"\",\r\n    \"referralVouchers\": \"\",\r\n    \"referralVouchersDetail\": \"\",\r\n    \"thirdPartyVouchers\": \"\",\r\n    \"thirdPartyVouchersDetail\": \"\",\r\n    \"overrideVouchers\": \"\",\r\n    \"overrideVouchersDetail\": \"\",\r\n    \"reimbursementVouchers\": \"\",\r\n    \"reimbursementVouchersDetail\": \"\",\r\n    \"extraVouchersMain\": \"\",\r\n    \"extraVouchersDetail\": \"\",\r\n    \"billDeductInvoice\": \"\",\r\n    \"isCommercialLease\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{base_url}}/api/property"},"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":"Server","value":"Kestrel"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Thu, 31 Jul 2025 21:05:16 GMT"},{"key":"Strict-Transport-Security","value":"max-age=157680000"}],"cookie":[],"responseTime":null,"body":"{\n    \"propertyId\": 85797,\n    \"propertyAddress\": \"14531 NE Main Street Plaza N, Apt 204, 3, California City, CA 93504\",\n    \"transactionGUID\": \"C6A28260-12B3-43C5-9457-61180219BC2D\",\n    \"transactionId\": null,\n    \"person_CustomerId\": null,\n    \"person_Customer\": null,\n    \"streetNumber\": \"14531\",\n    \"streetDirection\": \"NE\",\n    \"streetName\": \"Main Street\",\n    \"streetDesignation\": \"Plaza\",\n    \"streetSuffix\": \"N\",\n    \"suiteAptNumber\": \"Apt 204\",\n    \"buildingFloorNumber\": \"3\",\n    \"city\": \"California City\",\n    \"state\": \"CA\",\n    \"zip\": \"93504\",\n    \"statusId\": 1688,\n    \"status\": \"Pending\",\n    \"statusCode\": \"OP\",\n    \"statusLocked\": false,\n    \"excludeList\": false,\n    \"excludeSell\": false,\n    \"excludeDuplicate\": false,\n    \"special\": false,\n    \"shortSale\": false,\n    \"forclosure\": false,\n    \"showOnInternet\": true,\n    \"showAddressOnInternet\": true,\n    \"showPriceOnInternet\": true,\n    \"hideListPriceOnWeb\": false,\n    \"condo\": false,\n    \"offset\": false,\n    \"regionalPost\": false,\n    \"condoFee\": 0,\n    \"mlsNumber1\": \"45645\",\n    \"mlsNumber2\": null,\n    \"qaControl1\": null,\n    \"qaControl2\": null,\n    \"brokerReferenceNo\": null,\n    \"escrowNo\": null,\n    \"schemaType\": \"OtherIncomeTransaction\",\n    \"listDate\": \"2025-07-01T00:00:00\",\n    \"expiredDate\": \"2025-07-31T00:00:00\",\n    \"withdrawnDate\": null,\n    \"pendingDate\": null,\n    \"estimatedClosingDate\": null,\n    \"cancelDate\": null,\n    \"cancelReasonId\": null,\n    \"closeDate\": null,\n    \"processedDate\": null,\n    \"sellerEnglishSurvey\": false,\n    \"sellerDirectMail\": false,\n    \"sellerSendSurveyDelivery\": false,\n    \"sellerSurveyDeliveryMethod\": null,\n    \"buyerEnglishSurvey\": false,\n    \"buyerDirectMail\": false,\n    \"buyerSendSurveyDelivery\": false,\n    \"buyerSurveyDeliveryMethod\": null,\n    \"keyNumber\": null,\n    \"shackleCode\": null,\n    \"notes\": null,\n    \"showingInstructionsInternal\": null,\n    \"directionsInternal\": null,\n    \"alternateListOfficeId\": null,\n    \"alternateSellOfficeId\": null,\n    \"yearBuilt\": null,\n    \"lastSoldDate\": null,\n    \"taxYear\": null,\n    \"taxRollNumber\": null,\n    \"annualTaxes\": null,\n    \"numberOfAcres\": null,\n    \"lotSize\": null,\n    \"lotSizeUnitID\": null,\n    \"squareFeet\": null,\n    \"squareFeetUnitID\": null,\n    \"levelsCount\": null,\n    \"sequenceNumber\": \"0\",\n    \"transportation\": null,\n    \"neigborhoodName\": null,\n    \"propertyLocation\": null,\n    \"bedrooms\": null,\n    \"escrowHeld\": \"0.00\",\n    \"referralTypeId\": null,\n    \"numOfRooms\": null,\n    \"parkingSpaces\": null,\n    \"referralType\": null,\n    \"typeCode\": \"C\",\n    \"classificationId\": 22939,\n    \"propertyTypeId\": 1726,\n    \"incomeTypeID\": 1258,\n    \"propertyStyleId\": null,\n    \"transactionTypeId\": null,\n    \"propertyUseId\": null,\n    \"developmentId\": null,\n    \"appraisalDate\": null,\n    \"inspectionDate\": null,\n    \"applicationDate\": null,\n    \"loanRate\": null,\n    \"loanAmount\": null,\n    \"financingTypeId\": null,\n    \"listingPrice\": 0,\n    \"sellingPrice\": 0,\n    \"commissionPrice\": 0,\n    \"isFlatCommission\": false,\n    \"reactivate\": null,\n    \"listCommRate\": 0,\n    \"listCommission\": 0,\n    \"sellCommRate\": 0,\n    \"sellCommission\": 0,\n    \"totalCommission\": 0,\n    \"totalCommRate\": 0,\n    \"listingGUID\": null,\n    \"dashTransactionGUID\": null,\n    \"payCobroke\": false,\n    \"refListRate\": 0,\n    \"refListCommission\": 0,\n    \"refSellRate\": 0,\n    \"refSellCommission\": 0,\n    \"companyIncome\": null,\n    \"balanceDue\": null,\n    \"trans1\": null,\n    \"trans2\": null,\n    \"reimbursedDeposit\": null,\n    \"additionalincome\": null,\n    \"propId\": null,\n    \"firstTimeBuyer\": false,\n    \"confirmed\": false,\n    \"trType\": \"OF\",\n    \"rentalFrequency\": null,\n    \"fullBaths\": null,\n    \"halfBathsTotal\": null,\n    \"threeQuarterBathsTotal\": null,\n    \"quarterBathsTotal\": null,\n    \"companyID\": 54,\n    \"companyName\": \"ABC company\",\n    \"ourList\": false,\n    \"ourSell\": false,\n    \"listAgentID\": null,\n    \"sellAgentID\": null,\n    \"listAgent\": null,\n    \"sellAgent\": null,\n    \"listOffice\": null,\n    \"sellOffice\": null,\n    \"leadGeneratedByBuyer\": null,\n    \"leadGeneratedBySeller\": null,\n    \"leadSourceBuyer\": null,\n    \"leadSourceSeller\": null,\n    \"cobrokeCommRate\": 0,\n    \"cobrokeCommission\": 0,\n    \"subDivision\": null,\n    \"transactionNotes\": \"\",\n    \"agentCommissionNotes\": \"\",\n    \"sellerReferralNotes\": \"\",\n    \"buyerReferralNotes\": \"\",\n    \"excludeFromSubmission\": false,\n    \"needRecalc\": false,\n    \"expireDateCalculated\": false,\n    \"feedID\": null,\n    \"feedName\": null,\n    \"dotLoopID\": null,\n    \"eRELOID\": null,\n    \"skySlopeID\": null,\n    \"appFileID\": null,\n    \"mlsListingRID\": null,\n    \"submitID\": null,\n    \"submitDate\": null,\n    \"resultType\": null,\n    \"resultDate\": null,\n    \"resultMessage\": null,\n    \"trade_LW\": null,\n    \"listing_LW\": null,\n    \"photoCount\": 0,\n    \"addedManuallyPhotoCount\": 0,\n    \"pulledFromMLSPhotoCount\": 0,\n    \"photoLastUpdated\": null,\n    \"addedManuallyPhotoLastUpdated\": null,\n    \"pulledFromMLSPhotoLastUpdated\": null,\n    \"createDate\": \"2025-07-31T17:05:15.147\",\n    \"createdBy\": \"saDeploy\",\n    \"modifyDate\": \"2025-07-31T17:05:15.943\",\n    \"modifyBy\": \"saDeploy\",\n    \"deleteDate\": null,\n    \"deletedBy\": null,\n    \"isRentalIncome\": false,\n    \"isMiscIncome\": true,\n    \"isOtherIncome\": true,\n    \"isCommercialLease\": false,\n    \"atGUID\": \"2B520EC6-8EBE-4D54-B585-A8811C57A3DF\",\n    \"rulesEnabled\": true,\n    \"rulesToValidate\": null,\n    \"agentTeamListId\": null,\n    \"agentTeamSellId\": null,\n    \"depositsInAdvance\": 0,\n    \"emailAddress_BuySide\": null,\n    \"isTaxesApply\": false,\n    \"taxCollected\": 0,\n    \"isTaxCollectedFlat\": false,\n    \"conditions\": null,\n    \"conditionExpireDate\": null,\n    \"mlsBoardName\": null,\n    \"listSubplanId\": null,\n    \"sellSubplanId\": null,\n    \"guid1\": null,\n    \"guid2\": null,\n    \"guid3\": null,\n    \"leaseTermID\": null,\n    \"leaseTypeID\": null,\n    \"minLease\": 0,\n    \"maxLease\": 0,\n    \"termDays\": 0,\n    \"dateAvailable\": null,\n    \"allowMapping\": false,\n    \"zoning\": null,\n    \"isOverride\": false,\n    \"concession\": 0,\n    \"leaseArea\": 0,\n    \"leaseRate\": 0,\n    \"terms\": 0,\n    \"commencementDate\": null,\n    \"leaseExpireDate\": null,\n    \"isRightToRenew\": false,\n    \"isSublease\": false,\n    \"taxLocked\": false,\n    \"agents\": null,\n    \"referrals\": null,\n    \"thirdPartyPayments\": null,\n    \"overrides\": null,\n    \"extraVouchers\": null,\n    \"reimbursements\": null,\n    \"invoice\": null,\n    \"invoiceDetail\": null,\n    \"agentVouchers\": null,\n    \"agentVouchersDetail\": null,\n    \"referralVouchers\": null,\n    \"referralVouchersDetail\": null,\n    \"thirdPartyVouchers\": null,\n    \"thirdPartyVouchersDetail\": null,\n    \"overrideVouchers\": null,\n    \"overrideVouchersDetail\": null,\n    \"reimbursementVouchers\": null,\n    \"reimbursementVouchersDetail\": null,\n    \"extraVouchersMain\": null,\n    \"extraVouchersDetail\": null,\n    \"billDeductInvoice\": null,\n    \"escrowCheckbooks\": null,\n    \"escrowCheckbooksDetail\": null\n}"}],"_postman_id":"531e45ef-5ffa-4c8e-9b47-0ebb852e68a0"},{"name":"Property Update","id":"0ada5789-b0e8-4c6e-af16-e14cff2bc7a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{token}}"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"propertyId\": 85797,\r\n    \"propertyAddress\": \"14531 NE Main Street Update Plaza N, Apt 204, 3, California City, CA 93504\",\r\n    \"transactionGUID\": \"C6A28260-12B3-43C5-9457-61180219BC2D\",\r\n    \"transactionId\": null,\r\n    \"person_CustomerId\": 1011997,\r\n    \"person_Customer\": \"14531 NE Main Street Plaza N, Apt 204, 3, California City, CA 93504\",\r\n    \"streetNumber\": \"14531\",\r\n    \"streetDirection\": \"NE\",\r\n    \"streetName\": \"Main Street\",\r\n    \"streetDesignation\": \"Plaza\",\r\n    \"streetSuffix\": \"N\",\r\n    \"suiteAptNumber\": \"Apt 204\",\r\n    \"buildingFloorNumber\": \"3\",\r\n    \"city\": \"California City\",\r\n    \"state\": \"CA\",\r\n    \"zip\": \"93504\",\r\n    \"statusId\": 1688,\r\n    \"status\": \"Pending\",\r\n    \"statusCode\": \"OP\",\r\n    \"statusLocked\": false,\r\n    \"excludeList\": false,\r\n    \"excludeSell\": false,\r\n    \"excludeDuplicate\": false,\r\n    \"special\": false,\r\n    \"shortSale\": false,\r\n    \"forclosure\": false,\r\n    \"showOnInternet\": true,\r\n    \"showAddressOnInternet\": true,\r\n    \"showPriceOnInternet\": true,\r\n    \"hideListPriceOnWeb\": false,\r\n    \"condo\": false,\r\n    \"offset\": false,\r\n    \"regionalPost\": false,\r\n    \"condoFee\": 0,\r\n    \"mlsNumber1\": \"456333\",\r\n    \"mlsNumber2\": null,\r\n    \"qaControl1\": null,\r\n    \"qaControl2\": null,\r\n    \"brokerReferenceNo\": null,\r\n    \"escrowNo\": null,\r\n    \"schemaType\": \"OtherIncomeTransaction\",\r\n    \"listDate\": \"2025/07/01\",\r\n    \"expiredDate\": \"2025/07/31\",\r\n    \"withdrawnDate\": null,\r\n    \"pendingDate\": null,\r\n    \"estimatedClosingDate\": null,\r\n    \"cancelDate\": null,\r\n    \"cancelReasonId\": null,\r\n    \"closeDate\": null,\r\n    \"processedDate\": null,\r\n    \"sellerEnglishSurvey\": false,\r\n    \"sellerDirectMail\": false,\r\n    \"sellerSendSurveyDelivery\": false,\r\n    \"sellerSurveyDeliveryMethod\": null,\r\n    \"buyerEnglishSurvey\": false,\r\n    \"buyerDirectMail\": false,\r\n    \"buyerSendSurveyDelivery\": false,\r\n    \"buyerSurveyDeliveryMethod\": null,\r\n    \"keyNumber\": null,\r\n    \"shackleCode\": null,\r\n    \"notes\": null,\r\n    \"showingInstructionsInternal\": null,\r\n    \"directionsInternal\": null,\r\n    \"alternateListOfficeId\": null,\r\n    \"alternateSellOfficeId\": null,\r\n    \"yearBuilt\": null,\r\n    \"lastSoldDate\": null,\r\n    \"taxYear\": null,\r\n    \"taxRollNumber\": null,\r\n    \"annualTaxes\": null,\r\n    \"numberOfAcres\": null,\r\n    \"lotSize\": null,\r\n    \"lotSizeUnitID\": null,\r\n    \"squareFeet\": null,\r\n    \"squareFeetUnitID\": null,\r\n    \"levelsCount\": null,\r\n    \"sequenceNumber\": \"0\",\r\n    \"transportation\": null,\r\n    \"neigborhoodName\": null,\r\n    \"propertyLocation\": null,\r\n    \"bedrooms\": null,\r\n    \"escrowHeld\": \"0.00\",\r\n    \"referralTypeId\": null,\r\n    \"numOfRooms\": null,\r\n    \"parkingSpaces\": null,\r\n    \"referralType\": null,\r\n    \"typeCode\": \"C\",\r\n    \"classificationId\": 22939,\r\n    \"propertyTypeId\": 1726,\r\n    \"incomeTypeID\": 1258,\r\n    \"propertyStyleId\": null,\r\n    \"transactionTypeId\": null,\r\n    \"propertyUseId\": null,\r\n    \"developmentId\": null,\r\n    \"appraisalDate\": null,\r\n    \"inspectionDate\": null,\r\n    \"applicationDate\": null,\r\n    \"loanRate\": null,\r\n    \"loanAmount\": null,\r\n    \"financingTypeId\": null,\r\n    \"listingPrice\": 0,\r\n    \"sellingPrice\": 0,\r\n    \"commissionPrice\": 0,\r\n    \"isFlatCommission\": false,\r\n    \"reactivate\": null,\r\n    \"listCommRate\": 0,\r\n    \"listCommission\": 0,\r\n    \"sellCommRate\": 0,\r\n    \"sellCommission\": 0,\r\n    \"totalCommission\": 0,\r\n    \"totalCommRate\": 0,\r\n    \"listingGUID\": null,\r\n    \"DASHTransactionGUID\": null,\r\n    \"payCobroke\": false,\r\n    \"refListRate\": 0,\r\n    \"refListCommission\": 0,\r\n    \"refSellRate\": 0,\r\n    \"refSellCommission\": 0,\r\n    \"companyIncome\": null,\r\n    \"balanceDue\": null,\r\n    \"trans1\": null,\r\n    \"trans2\": 0,\r\n    \"reimbursedDeposit\": null,\r\n    \"additionalincome\": null,\r\n    \"propId\": null,\r\n    \"firstTimeBuyer\": false,\r\n    \"confirmed\": false,\r\n    \"trType\": \"OF\",\r\n    \"rentalFrequency\": null,\r\n    \"fullBaths\": null,\r\n    \"halfBathsTotal\": null,\r\n    \"threeQuarterBathsTotal\": null,\r\n    \"quarterBathsTotal\": null,\r\n    \"companyID\": 54,\r\n    \"companyName\": \"ABC company\",\r\n    \"ourList\": true,\r\n    \"ourSell\": false,\r\n    \"listAgentID\": 953924,\r\n    \"sellAgentID\": null,\r\n    \"listAgent\": null,\r\n    \"sellAgent\": null,\r\n    \"listOffice\": null,\r\n    \"sellOffice\": null,\r\n    \"leadGeneratedByBuyer\": \"AG\",\r\n    \"leadGeneratedBySeller\": \"AG\",\r\n    \"leadSourceBuyer\": \"Personal/Repeat Customer\",\r\n    \"leadSourceSeller\": \"Personal/Repeat Customer\",\r\n    \"cobrokeCommRate\": 0,\r\n    \"cobrokeCommission\": 0,\r\n    \"subDivision\": null,\r\n    \"transactionNotes\": \"\",\r\n    \"agentCommissionNotes\": \"\",\r\n    \"sellerReferralNotes\": \"\",\r\n    \"buyerReferralNotes\": \"\",\r\n    \"excludeFromSubmission\": false,\r\n    \"needRecalc\": false,\r\n    \"expireDateCalculated\": false,\r\n    \"feedID\": null,\r\n    \"feedName\": null,\r\n    \"dotLoopID\": null,\r\n    \"eRELOID\": null,\r\n    \"skySlopeID\": null,\r\n    \"appFileID\": null,\r\n    \"mlsListingRID\": null,\r\n    \"submitID\": null,\r\n    \"submitDate\": null,\r\n    \"resultType\": null,\r\n    \"resultDate\": null,\r\n    \"resultMessage\": null,\r\n    \"trade_LW\": null,\r\n    \"listing_LW\": null,\r\n    \"photoCount\": 0,\r\n    \"addedManuallyPhotoCount\": 0,\r\n    \"pulledFromMLSPhotoCount\": 0,\r\n    \"photoLastUpdated\": null,\r\n    \"addedManuallyPhotoLastUpdated\": null,\r\n    \"pulledFromMLSPhotoLastUpdated\": null,\r\n    \"createDate\": \"2025/07/31\",\r\n    \"createdBy\": \"saDeploy\",\r\n    \"modifyDate\": \"2025/08/01\",\r\n    \"modifyBy\": \"saDeploy\",\r\n    \"deleteDate\": null,\r\n    \"deletedBy\": null,\r\n    \"isRentalIncome\": false,\r\n    \"isMiscIncome\": true,\r\n    \"isOtherIncome\": true,\r\n    \"isCommercialLease\": false,\r\n    \"atGUID\": \"2B520EC6-8EBE-4D54-B585-A8811C57A3DF\",\r\n    \"rulesEnabled\": true,\r\n    \"rulesToValidate\": \"ALL\",\r\n    \"agentTeamListId\": null,\r\n    \"agentTeamSellId\": null,\r\n    \"depositsInAdvance\": 0,\r\n    \"emailAddress_BuySide\": null,\r\n    \"isTaxesApply\": false,\r\n    \"taxCollected\": 0,\r\n    \"isTaxCollectedFlat\": false,\r\n    \"conditions\": null,\r\n    \"conditionExpireDate\": null,\r\n    \"mlsBoardName\": null,\r\n    \"listSubplanId\": null,\r\n    \"sellSubplanId\": null,\r\n    \"guid1\": null,\r\n    \"guid2\": null,\r\n    \"guid3\": null,\r\n    \"leaseTermID\": null,\r\n    \"leaseTypeID\": null,\r\n    \"minLease\": 0,\r\n    \"maxLease\": 0,\r\n    \"termDays\": 0,\r\n    \"dateAvailable\": null,\r\n    \"allowMapping\": false,\r\n    \"zoning\": null,\r\n    \"isOverride\": false,\r\n    \"concession\": 0,\r\n    \"leaseArea\": 0,\r\n    \"leaseRate\": 0,\r\n    \"terms\": 0,\r\n    \"commencementDate\": null,\r\n    \"leaseExpireDate\": null,\r\n    \"isRightToRenew\": false,\r\n    \"isSublease\": false,\r\n    \"taxLocked\": false,\r\n    \"agents\": null,\r\n    \"referrals\": null,\r\n    \"thirdPartyPayments\": null,\r\n    \"overrides\": null,\r\n    \"extraVouchers\": null,\r\n    \"reimbursements\": null,\r\n    \"invoice\": null,\r\n    \"invoiceDetail\": null,\r\n    \"agentVouchers\": null,\r\n    \"agentVouchersDetail\": null,\r\n    \"referralVouchers\": null,\r\n    \"referralVouchersDetail\": null,\r\n    \"thirdPartyVouchers\": null,\r\n    \"thirdPartyVouchersDetail\": null,\r\n    \"overrideVouchers\": null,\r\n    \"overrideVouchersDetail\": null,\r\n    \"reimbursementVouchers\": null,\r\n    \"reimbursementVouchersDetail\": null,\r\n    \"extraVouchersMain\": null,\r\n    \"extraVouchersDetail\": null,\r\n    \"billDeductInvoice\": null,\r\n    \"escrowCheckbooks\": null,\r\n    \"escrowCheckbooksDetail\": null\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{base_url}}/api/property/{{propertyId}}?onlyUpdateCommission=false&refreshListSide=true&refreshSellSide=true&includeColumns=null&ignoreColumns=null","description":"<p>This resource will allow you to update an existing property by its identifier (<code>id</code>).</p>\n<p>It accepts a <code>Property</code> object in the request body, with optional parameters to update only commissions and control the recalculation of related data.</p>\n<p>After updating, it recalculates associated deductions based on configuration settings and returns the updated property, optionally including or excluding specific columns in the response.</p>\n","urlObject":{"protocol":"https","path":["api","property","{{propertyId}}"],"host":["{{base_url}}"],"query":[{"disabled":true,"key":null,"value":""},{"description":{"content":"<p>Indicates whether to update only commission-related fields (true) or perform a full property update including all fields (false).</p>\n","type":"text/plain"},"key":"onlyUpdateCommission","value":"false"},{"description":{"content":"<p>Indicates whether to recalculate and update commission distributions and referral payments for agents involved on the list side of the property transaction after updating commission data.</p>\n","type":"text/plain"},"key":"refreshListSide","value":"true"},{"description":{"content":"<p>Indicates whether to recalculate and update commission distributions and referral payments for agents involved on the sell side of the property transaction after updating commission data.</p>\n","type":"text/plain"},"key":"refreshSellSide","value":"true"},{"description":{"content":"<p>It is used to specify the columns to return in the response. If null, all columns will be included</p>\n","type":"text/plain"},"key":"includeColumns","value":"null"},{"description":{"content":"<p>It is used to specify the columns to exclude from the response. If null no columns will be excluded</p>\n","type":"text/plain"},"key":"ignoreColumns","value":"null"}],"variable":[]}},"response":[{"id":"cdeb6357-3c5b-4511-b1eb-2840365a5014","name":"Property Update","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"propertyId\": 85797,\r\n    \"propertyAddress\": \"14531 NE Main Street Update Plaza N, Apt 204, 3, California City, CA 93504\",\r\n    \"transactionGUID\": \"C6A28260-12B3-43C5-9457-61180219BC2D\",\r\n    \"transactionId\": null,\r\n    \"person_CustomerId\": 1011997,\r\n    \"person_Customer\": \"14531 NE Main Street Plaza N, Apt 204, 3, California City, CA 93504\",\r\n    \"streetNumber\": \"14531\",\r\n    \"streetDirection\": \"NE\",\r\n    \"streetName\": \"Main Street\",\r\n    \"streetDesignation\": \"Plaza\",\r\n    \"streetSuffix\": \"N\",\r\n    \"suiteAptNumber\": \"Apt 204\",\r\n    \"buildingFloorNumber\": \"3\",\r\n    \"city\": \"California City\",\r\n    \"state\": \"CA\",\r\n    \"zip\": \"93504\",\r\n    \"statusId\": 1688,\r\n    \"status\": \"Pending\",\r\n    \"statusCode\": \"OP\",\r\n    \"statusLocked\": false,\r\n    \"excludeList\": false,\r\n    \"excludeSell\": false,\r\n    \"excludeDuplicate\": false,\r\n    \"special\": false,\r\n    \"shortSale\": false,\r\n    \"forclosure\": false,\r\n    \"showOnInternet\": true,\r\n    \"showAddressOnInternet\": true,\r\n    \"showPriceOnInternet\": true,\r\n    \"hideListPriceOnWeb\": false,\r\n    \"condo\": false,\r\n    \"offset\": false,\r\n    \"regionalPost\": false,\r\n    \"condoFee\": 0,\r\n    \"mlsNumber1\": \"456333\",\r\n    \"mlsNumber2\": null,\r\n    \"qaControl1\": null,\r\n    \"qaControl2\": null,\r\n    \"brokerReferenceNo\": null,\r\n    \"escrowNo\": null,\r\n    \"schemaType\": \"OtherIncomeTransaction\",\r\n    \"listDate\": \"2025/07/01\",\r\n    \"expiredDate\": \"2025/07/31\",\r\n    \"withdrawnDate\": null,\r\n    \"pendingDate\": null,\r\n    \"estimatedClosingDate\": null,\r\n    \"cancelDate\": null,\r\n    \"cancelReasonId\": null,\r\n    \"closeDate\": null,\r\n    \"processedDate\": null,\r\n    \"sellerEnglishSurvey\": false,\r\n    \"sellerDirectMail\": false,\r\n    \"sellerSendSurveyDelivery\": false,\r\n    \"sellerSurveyDeliveryMethod\": null,\r\n    \"buyerEnglishSurvey\": false,\r\n    \"buyerDirectMail\": false,\r\n    \"buyerSendSurveyDelivery\": false,\r\n    \"buyerSurveyDeliveryMethod\": null,\r\n    \"keyNumber\": null,\r\n    \"shackleCode\": null,\r\n    \"notes\": null,\r\n    \"showingInstructionsInternal\": null,\r\n    \"directionsInternal\": null,\r\n    \"alternateListOfficeId\": null,\r\n    \"alternateSellOfficeId\": null,\r\n    \"yearBuilt\": null,\r\n    \"lastSoldDate\": null,\r\n    \"taxYear\": null,\r\n    \"taxRollNumber\": null,\r\n    \"annualTaxes\": null,\r\n    \"numberOfAcres\": null,\r\n    \"lotSize\": null,\r\n    \"lotSizeUnitID\": null,\r\n    \"squareFeet\": null,\r\n    \"squareFeetUnitID\": null,\r\n    \"levelsCount\": null,\r\n    \"sequenceNumber\": \"0\",\r\n    \"transportation\": null,\r\n    \"neigborhoodName\": null,\r\n    \"propertyLocation\": null,\r\n    \"bedrooms\": null,\r\n    \"escrowHeld\": \"0.00\",\r\n    \"referralTypeId\": null,\r\n    \"numOfRooms\": null,\r\n    \"parkingSpaces\": null,\r\n    \"referralType\": null,\r\n    \"typeCode\": \"C\",\r\n    \"classificationId\": 22939,\r\n    \"propertyTypeId\": 1726,\r\n    \"incomeTypeID\": 1258,\r\n    \"propertyStyleId\": null,\r\n    \"transactionTypeId\": null,\r\n    \"propertyUseId\": null,\r\n    \"developmentId\": null,\r\n    \"appraisalDate\": null,\r\n    \"inspectionDate\": null,\r\n    \"applicationDate\": null,\r\n    \"loanRate\": null,\r\n    \"loanAmount\": null,\r\n    \"financingTypeId\": null,\r\n    \"listingPrice\": 0,\r\n    \"sellingPrice\": 0,\r\n    \"commissionPrice\": 0,\r\n    \"isFlatCommission\": false,\r\n    \"reactivate\": null,\r\n    \"listCommRate\": 0,\r\n    \"listCommission\": 0,\r\n    \"sellCommRate\": 0,\r\n    \"sellCommission\": 0,\r\n    \"totalCommission\": 0,\r\n    \"totalCommRate\": 0,\r\n    \"listingGUID\": null,\r\n    \"DASHTransactionGUID\": null,\r\n    \"payCobroke\": false,\r\n    \"refListRate\": 0,\r\n    \"refListCommission\": 0,\r\n    \"refSellRate\": 0,\r\n    \"refSellCommission\": 0,\r\n    \"companyIncome\": null,\r\n    \"balanceDue\": null,\r\n    \"trans1\": null,\r\n    \"trans2\": 0,\r\n    \"reimbursedDeposit\": null,\r\n    \"additionalincome\": null,\r\n    \"propId\": null,\r\n    \"firstTimeBuyer\": false,\r\n    \"confirmed\": false,\r\n    \"trType\": \"OF\",\r\n    \"rentalFrequency\": null,\r\n    \"fullBaths\": null,\r\n    \"halfBathsTotal\": null,\r\n    \"threeQuarterBathsTotal\": null,\r\n    \"quarterBathsTotal\": null,\r\n    \"companyID\": 54,\r\n    \"companyName\": \"ABC company\",\r\n    \"ourList\": true,\r\n    \"ourSell\": false,\r\n    \"listAgentID\": 953924,\r\n    \"sellAgentID\": null,\r\n    \"listAgent\": null,\r\n    \"sellAgent\": null,\r\n    \"listOffice\": null,\r\n    \"sellOffice\": null,\r\n    \"leadGeneratedByBuyer\": \"AG\",\r\n    \"leadGeneratedBySeller\": \"AG\",\r\n    \"leadSourceBuyer\": \"Personal/Repeat Customer\",\r\n    \"leadSourceSeller\": \"Personal/Repeat Customer\",\r\n    \"cobrokeCommRate\": 0,\r\n    \"cobrokeCommission\": 0,\r\n    \"subDivision\": null,\r\n    \"transactionNotes\": \"\",\r\n    \"agentCommissionNotes\": \"\",\r\n    \"sellerReferralNotes\": \"\",\r\n    \"buyerReferralNotes\": \"\",\r\n    \"excludeFromSubmission\": false,\r\n    \"needRecalc\": false,\r\n    \"expireDateCalculated\": false,\r\n    \"feedID\": null,\r\n    \"feedName\": null,\r\n    \"dotLoopID\": null,\r\n    \"eRELOID\": null,\r\n    \"skySlopeID\": null,\r\n    \"appFileID\": null,\r\n    \"mlsListingRID\": null,\r\n    \"submitID\": null,\r\n    \"submitDate\": null,\r\n    \"resultType\": null,\r\n    \"resultDate\": null,\r\n    \"resultMessage\": null,\r\n    \"trade_LW\": null,\r\n    \"listing_LW\": null,\r\n    \"photoCount\": 0,\r\n    \"addedManuallyPhotoCount\": 0,\r\n    \"pulledFromMLSPhotoCount\": 0,\r\n    \"photoLastUpdated\": null,\r\n    \"addedManuallyPhotoLastUpdated\": null,\r\n    \"pulledFromMLSPhotoLastUpdated\": null,\r\n    \"createDate\": \"2025/07/31\",\r\n    \"createdBy\": \"saDeploy\",\r\n    \"modifyDate\": \"2025/08/01\",\r\n    \"modifyBy\": \"saDeploy\",\r\n    \"deleteDate\": null,\r\n    \"deletedBy\": null,\r\n    \"isRentalIncome\": false,\r\n    \"isMiscIncome\": true,\r\n    \"isOtherIncome\": true,\r\n    \"isCommercialLease\": false,\r\n    \"atGUID\": \"2B520EC6-8EBE-4D54-B585-A8811C57A3DF\",\r\n    \"rulesEnabled\": true,\r\n    \"rulesToValidate\": \"ALL\",\r\n    \"agentTeamListId\": null,\r\n    \"agentTeamSellId\": null,\r\n    \"depositsInAdvance\": 0,\r\n    \"emailAddress_BuySide\": null,\r\n    \"isTaxesApply\": false,\r\n    \"taxCollected\": 0,\r\n    \"isTaxCollectedFlat\": false,\r\n    \"conditions\": null,\r\n    \"conditionExpireDate\": null,\r\n    \"mlsBoardName\": null,\r\n    \"listSubplanId\": null,\r\n    \"sellSubplanId\": null,\r\n    \"guid1\": null,\r\n    \"guid2\": null,\r\n    \"guid3\": null,\r\n    \"leaseTermID\": null,\r\n    \"leaseTypeID\": null,\r\n    \"minLease\": 0,\r\n    \"maxLease\": 0,\r\n    \"termDays\": 0,\r\n    \"dateAvailable\": null,\r\n    \"allowMapping\": false,\r\n    \"zoning\": null,\r\n    \"isOverride\": false,\r\n    \"concession\": 0,\r\n    \"leaseArea\": 0,\r\n    \"leaseRate\": 0,\r\n    \"terms\": 0,\r\n    \"commencementDate\": null,\r\n    \"leaseExpireDate\": null,\r\n    \"isRightToRenew\": false,\r\n    \"isSublease\": false,\r\n    \"taxLocked\": false,\r\n    \"agents\": null,\r\n    \"referrals\": null,\r\n    \"thirdPartyPayments\": null,\r\n    \"overrides\": null,\r\n    \"extraVouchers\": null,\r\n    \"reimbursements\": null,\r\n    \"invoice\": null,\r\n    \"invoiceDetail\": null,\r\n    \"agentVouchers\": null,\r\n    \"agentVouchersDetail\": null,\r\n    \"referralVouchers\": null,\r\n    \"referralVouchersDetail\": null,\r\n    \"thirdPartyVouchers\": null,\r\n    \"thirdPartyVouchersDetail\": null,\r\n    \"overrideVouchers\": null,\r\n    \"overrideVouchersDetail\": null,\r\n    \"reimbursementVouchers\": null,\r\n    \"reimbursementVouchersDetail\": null,\r\n    \"extraVouchersMain\": null,\r\n    \"extraVouchersDetail\": null,\r\n    \"billDeductInvoice\": null,\r\n    \"escrowCheckbooks\": null,\r\n    \"escrowCheckbooksDetail\": null\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{base_url}}/api/property/{{propertyId}}?onlyUpdateCommission=false&refreshListSide=true&refreshSellSide=true","protocol":"https","host":["{{base_url}}"],"path":["api","property","{{propertyId}}"],"query":[{"key":null,"value":null,"disabled":true},{"key":"onlyUpdateCommission","value":"false"},{"key":"refreshListSide","value":"true"},{"key":"refreshSellSide","value":"true"},{"key":"includeColumns","value":"null","disabled":true},{"key":"ignoreColumns","value":"null","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Kestrel"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 01 Aug 2025 17:29:48 GMT"},{"key":"Strict-Transport-Security","value":"max-age=157680000"}],"cookie":[],"responseTime":null,"body":"{\n    \"propertyId\": 85797,\n    \"propertyAddress\": \"14531 NE Main Street Update Plaza N, Apt 204, 3, California City, CA 93504\",\n    \"transactionGUID\": \"C6A28260-12B3-43C5-9457-61180219BC2D\",\n    \"transactionId\": null,\n    \"person_CustomerId\": 1011997,\n    \"person_Customer\": \"14531 NE Main Street Plaza N, Apt 204, 3, California City, CA 93504\",\n    \"streetNumber\": \"14531\",\n    \"streetDirection\": \"NE\",\n    \"streetName\": \"Main Street\",\n    \"streetDesignation\": \"Plaza\",\n    \"streetSuffix\": \"N\",\n    \"suiteAptNumber\": \"Apt 204\",\n    \"buildingFloorNumber\": \"3\",\n    \"city\": \"California City\",\n    \"state\": \"CA\",\n    \"zip\": \"93504\",\n    \"statusId\": 1688,\n    \"status\": \"Pending\",\n    \"statusCode\": \"OP\",\n    \"statusLocked\": false,\n    \"excludeList\": false,\n    \"excludeSell\": false,\n    \"excludeDuplicate\": false,\n    \"special\": false,\n    \"shortSale\": false,\n    \"forclosure\": false,\n    \"showOnInternet\": true,\n    \"showAddressOnInternet\": true,\n    \"showPriceOnInternet\": true,\n    \"hideListPriceOnWeb\": false,\n    \"condo\": false,\n    \"offset\": false,\n    \"regionalPost\": false,\n    \"condoFee\": 0,\n    \"mlsNumber1\": \"456333\",\n    \"mlsNumber2\": null,\n    \"qaControl1\": null,\n    \"qaControl2\": null,\n    \"brokerReferenceNo\": null,\n    \"escrowNo\": null,\n    \"schemaType\": \"OtherIncomeTransaction\",\n    \"listDate\": \"2025-07-01T00:00:00\",\n    \"expiredDate\": \"2025-07-31T00:00:00\",\n    \"withdrawnDate\": null,\n    \"pendingDate\": null,\n    \"estimatedClosingDate\": null,\n    \"cancelDate\": null,\n    \"cancelReasonId\": null,\n    \"closeDate\": null,\n    \"processedDate\": null,\n    \"sellerEnglishSurvey\": false,\n    \"sellerDirectMail\": false,\n    \"sellerSendSurveyDelivery\": false,\n    \"sellerSurveyDeliveryMethod\": null,\n    \"buyerEnglishSurvey\": false,\n    \"buyerDirectMail\": false,\n    \"buyerSendSurveyDelivery\": false,\n    \"buyerSurveyDeliveryMethod\": null,\n    \"keyNumber\": null,\n    \"shackleCode\": null,\n    \"notes\": null,\n    \"showingInstructionsInternal\": null,\n    \"directionsInternal\": null,\n    \"alternateListOfficeId\": null,\n    \"alternateSellOfficeId\": null,\n    \"yearBuilt\": null,\n    \"lastSoldDate\": null,\n    \"taxYear\": null,\n    \"taxRollNumber\": null,\n    \"annualTaxes\": null,\n    \"numberOfAcres\": null,\n    \"lotSize\": null,\n    \"lotSizeUnitID\": null,\n    \"squareFeet\": null,\n    \"squareFeetUnitID\": null,\n    \"levelsCount\": null,\n    \"sequenceNumber\": \"0\",\n    \"transportation\": null,\n    \"neigborhoodName\": null,\n    \"propertyLocation\": null,\n    \"bedrooms\": null,\n    \"escrowHeld\": \"0.00\",\n    \"referralTypeId\": null,\n    \"numOfRooms\": null,\n    \"parkingSpaces\": null,\n    \"referralType\": null,\n    \"typeCode\": \"C\",\n    \"classificationId\": 22939,\n    \"propertyTypeId\": 1726,\n    \"incomeTypeID\": 1258,\n    \"propertyStyleId\": null,\n    \"transactionTypeId\": null,\n    \"propertyUseId\": null,\n    \"developmentId\": null,\n    \"appraisalDate\": null,\n    \"inspectionDate\": null,\n    \"applicationDate\": null,\n    \"loanRate\": null,\n    \"loanAmount\": null,\n    \"financingTypeId\": null,\n    \"listingPrice\": 0,\n    \"sellingPrice\": 0,\n    \"commissionPrice\": 0,\n    \"isFlatCommission\": false,\n    \"reactivate\": null,\n    \"listCommRate\": 0,\n    \"listCommission\": 0,\n    \"sellCommRate\": 0,\n    \"sellCommission\": 0,\n    \"totalCommission\": 0,\n    \"totalCommRate\": 0,\n    \"listingGUID\": null,\n    \"DASHTransactionGUID\": null,\n    \"payCobroke\": false,\n    \"refListRate\": 0,\n    \"refListCommission\": 0,\n    \"refSellRate\": 0,\n    \"refSellCommission\": 0,\n    \"companyIncome\": null,\n    \"balanceDue\": null,\n    \"trans1\": null,\n    \"trans2\": 0,\n    \"reimbursedDeposit\": null,\n    \"additionalincome\": null,\n    \"propId\": null,\n    \"firstTimeBuyer\": false,\n    \"confirmed\": false,\n    \"trType\": \"OF\",\n    \"rentalFrequency\": null,\n    \"fullBaths\": null,\n    \"halfBathsTotal\": null,\n    \"threeQuarterBathsTotal\": null,\n    \"quarterBathsTotal\": null,\n    \"companyID\": 54,\n    \"companyName\": \"ABC company\",\n    \"ourList\": true,\n    \"ourSell\": false,\n    \"listAgentID\": 953924,\n    \"sellAgentID\": null,\n    \"listAgent\": null,\n    \"sellAgent\": null,\n    \"listOffice\": null,\n    \"sellOffice\": null,\n    \"leadGeneratedByBuyer\": \"AG\",\n    \"leadGeneratedBySeller\": \"AG\",\n    \"leadSourceBuyer\": \"Personal/Repeat Customer\",\n    \"leadSourceSeller\": \"Personal/Repeat Customer\",\n    \"cobrokeCommRate\": 0,\n    \"cobrokeCommission\": 0,\n    \"subDivision\": null,\n    \"transactionNotes\": \"\",\n    \"agentCommissionNotes\": \"\",\n    \"sellerReferralNotes\": \"\",\n    \"buyerReferralNotes\": \"\",\n    \"excludeFromSubmission\": false,\n    \"needRecalc\": false,\n    \"expireDateCalculated\": false,\n    \"feedID\": null,\n    \"feedName\": null,\n    \"dotLoopID\": null,\n    \"eRELOID\": null,\n    \"skySlopeID\": null,\n    \"appFileID\": null,\n    \"mlsListingRID\": null,\n    \"submitID\": null,\n    \"submitDate\": null,\n    \"resultType\": null,\n    \"resultDate\": null,\n    \"resultMessage\": null,\n    \"trade_LW\": null,\n    \"listing_LW\": null,\n    \"photoCount\": 0,\n    \"addedManuallyPhotoCount\": 0,\n    \"pulledFromMLSPhotoCount\": 0,\n    \"photoLastUpdated\": null,\n    \"addedManuallyPhotoLastUpdated\": null,\n    \"pulledFromMLSPhotoLastUpdated\": null,\n    \"createDate\": \"2025-07-31T17:05:15.147\",\n    \"createdBy\": \"saDeploy\",\n    \"modifyDate\": \"2025-08-01T13:29:48.277\",\n    \"modifyBy\": \"saDeploy\",\n    \"deleteDate\": null,\n    \"deletedBy\": null,\n    \"isRentalIncome\": false,\n    \"isMiscIncome\": true,\n    \"isOtherIncome\": true,\n    \"isCommercialLease\": false,\n    \"atGUID\": \"2B520EC6-8EBE-4D54-B585-A8811C57A3DF\",\n    \"rulesEnabled\": true,\n    \"rulesToValidate\": null,\n    \"agentTeamListId\": null,\n    \"agentTeamSellId\": null,\n    \"depositsInAdvance\": 0,\n    \"emailAddress_BuySide\": null,\n    \"isTaxesApply\": false,\n    \"taxCollected\": 0,\n    \"isTaxCollectedFlat\": false,\n    \"conditions\": null,\n    \"conditionExpireDate\": null,\n    \"mlsBoardName\": null,\n    \"listSubplanId\": null,\n    \"sellSubplanId\": null,\n    \"guid1\": null,\n    \"guid2\": null,\n    \"guid3\": null,\n    \"leaseTermID\": null,\n    \"leaseTypeID\": null,\n    \"minLease\": 0,\n    \"maxLease\": 0,\n    \"termDays\": 0,\n    \"dateAvailable\": null,\n    \"allowMapping\": false,\n    \"zoning\": null,\n    \"isOverride\": false,\n    \"concession\": 0,\n    \"leaseArea\": 0,\n    \"leaseRate\": 0,\n    \"terms\": 0,\n    \"commencementDate\": null,\n    \"leaseExpireDate\": null,\n    \"isRightToRenew\": false,\n    \"isSublease\": false,\n    \"taxLocked\": false,\n    \"agents\": null,\n    \"referrals\": null,\n    \"thirdPartyPayments\": null,\n    \"overrides\": null,\n    \"extraVouchers\": null,\n    \"reimbursements\": null,\n    \"invoice\": null,\n    \"invoiceDetail\": null,\n    \"agentVouchers\": null,\n    \"agentVouchersDetail\": null,\n    \"referralVouchers\": null,\n    \"referralVouchersDetail\": null,\n    \"thirdPartyVouchers\": null,\n    \"thirdPartyVouchersDetail\": null,\n    \"overrideVouchers\": null,\n    \"overrideVouchersDetail\": null,\n    \"reimbursementVouchers\": null,\n    \"reimbursementVouchersDetail\": null,\n    \"extraVouchersMain\": null,\n    \"extraVouchersDetail\": null,\n    \"billDeductInvoice\": null,\n    \"escrowCheckbooks\": null,\n    \"escrowCheckbooksDetail\": null\n}"}],"_postman_id":"0ada5789-b0e8-4c6e-af16-e14cff2bc7a8"}],"id":"d95a8c35-e6ee-4a3c-958d-2911e5afbf1a","description":"<p>The <code>Property</code> object allows you to get different types of information of properties: detailed information, summarized information, lists with minimal info, etc.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"90c1c691-c01c-4feb-b545-d578dff1ee0e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"98d896c4-9810-4b47-85f1-ce6469a1ad1f","type":"text/javascript","exec":[""]}}],"_postman_id":"d95a8c35-e6ee-4a3c-958d-2911e5afbf1a"},{"name":"Accounting","item":[{"name":"Ledger Report","id":"df6144e3-8ef3-4dea-b305-c15fb03fec3e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://{{base_url}}/api/ledgerreport/GL?dateStart={{dateStart}}&dateEnd={{dateEnd}}&companyID={{companyId}}&officeId={{officeId}}&pageIndex={{pageIndex}}&pageSize={{pageSize}}&ledgerType={{ledgerType}}","description":"<p>This Resource will allow you to pull the list of accounts (Ledger) of any given client filtered by different parameters such as date, companyId, officeId, accountId, etc.</p>\n","urlObject":{"protocol":"https","path":["api","ledgerreport","GL"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Start date to filter the ledger data.</p>\n","type":"text/plain"},"key":"dateStart","value":"{{dateStart}}"},{"description":{"content":"<p>End date to filter the ledger data.</p>\n","type":"text/plain"},"key":"dateEnd","value":"{{dateEnd}}"},{"description":{"content":"<p>Used to filter the ledger for a specific company in the system.</p>\n","type":"text/plain"},"key":"companyID","value":"{{companyId}}"},{"description":{"content":"<p>Used to filter the ledger for a specific office in the system.</p>\n","type":"text/plain"},"key":"officeId","value":"{{officeId}}"},{"description":{"content":"<p>Represents the page number that will be retrieved. Starts in zero.</p>\n<p>If nothing is passed, it will assume page zero.</p>\n<p>If -1 is passed, it will retrieve all records at once.</p>\n","type":"text/plain"},"key":"pageIndex","value":"{{pageIndex}}"},{"description":{"content":"<p>Determines the number of ledger entries that will be retrieved on every request. Could be any value from 1 to 100</p>\n<p>Default value is 100, returns maximum of 100 records</p>\n","type":"text/plain"},"key":"pageSize","value":"{{pageSize}}"},{"description":{"content":"<p>Use this to determine the type of ledger data that needs to be retrieved. There are two possible values:</p>\n<p><b>SUMMARY:</b> This is the default value. So this value will be assumed if nothing is specified. This will make all income, expenses and Cost of sale ledger entries to be summarized</p>\n<p><b>DETAIL:</b> With this value, every accounting transaction posted or unposted will be retrieved in the given date range. This is to be used in an incremental pull implementation is done with requirement to have detailed information on every transaction posted in Darwin.</p>\n","type":"text/plain"},"key":"ledgerType","value":"{{ledgerType}}"},{"disabled":true,"description":{"content":"<p>Used to filter the ledger for a specific GL account number.</p>\n","type":"text/plain"},"key":"accountID","value":"{{accountID}}"},{"disabled":true,"description":{"content":"<p>Used to filter the ledger for a specific transaction (invoice, voucher, check, deposits, etc.).</p>\n","type":"text/plain"},"key":"transactionID","value":"{{transactionID}}"},{"disabled":true,"description":{"content":"<p>Used to filter the ledger for a specific type of transaction (ex.: all invoices, all vouchers, etc.).</p>\n","type":"text/plain"},"key":"code","value":"{{code}}"}],"variable":[]}},"response":[{"id":"c1be4191-5b23-45c8-9a35-7c929c3b05f1","name":"Ledger Report - Detail","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{base_url}}/api/ledgerreport/GL?dateStart={{dateStart}}&dateEnd={{dateEnd}}&companyID={{companyId}}&officeId={{officeId}}&pageIndex={{pageIndex}}&pageSize={{pageSize}}&ledgerType={{ledgerType}}","protocol":"https","host":["{{base_url}}"],"path":["api","ledgerreport","GL"],"query":[{"key":"dateStart","value":"{{dateStart}}","description":"Start date to filter the ledger data."},{"key":"dateEnd","value":"{{dateEnd}}","description":"End date to filter the ledger data."},{"key":"companyID","value":"{{companyId}}","description":"Used to filter the ledger for a specific company in the system."},{"key":"officeId","value":"{{officeId}}","description":"Used to filter the ledger for a specific office in the system."},{"key":"pageIndex","value":"{{pageIndex}}","description":"Represents the page number that will be retrieved. Starts in zero.\n\nIf nothing is passed, it will assume page zero.\n\nIf -1 is passed, it will retrieve all records at once.\n"},{"key":"pageSize","value":"{{pageSize}}","description":"Determines the number of ledger entries that will be retrieved on every request. Could be any value from 1 to 100\n\nDefault value is 100, returns maximum of 100 records"},{"key":"ledgerType","value":"{{ledgerType}}","description":"Use this to determine the type of ledger data that needs to be retrieved. There are two possible values:\n\n<b>SUMMARY:</b> This is the default value. So this value will be assumed if nothing is specified. This will make all income, expenses and Cost of sale ledger entries to be summarized\n\n\n<b>DETAIL:</b> With this value, every accounting transaction posted or unposted will be retrieved in the given date range. This is to be used in an incremental pull implementation is done with requirement to have detailed information on every transaction posted in Darwin."},{"key":"accountID","value":"{{accountID}}","description":"Used to filter the ledger for a specific GL account number.","disabled":true},{"key":"transactionID","value":"{{transactionID}}","description":"Used to filter the ledger for a specific transaction (invoice, voucher, check, deposits, etc.).","disabled":true},{"key":"code","value":"{{code}}","description":"Used to filter the ledger for a specific type of transaction (ex.: all invoices, all vouchers, etc.).","disabled":true}]}},"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":"Server","value":"Kestrel"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 13 Dec 2023 18:00:35 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"rowNumber\": 1,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Non-Current Assets\",\n        \"headerAccountNumber\": \"1-6000\",\n        \"accountID\": 361,\n        \"accountNumber\": \"2-7777\",\n        \"accountDescription\": \"Escrow Liability\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-01-31T00:00:00\",\n        \"transactionID\": 21143,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 0.85,\n        \"debit\": 0,\n        \"postedDate\": \"2011-01-31T00:00:00\"\n    },\n    {\n        \"rowNumber\": 2,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Non-Current Assets\",\n        \"headerAccountNumber\": \"1-6000\",\n        \"accountID\": 361,\n        \"accountNumber\": \"2-7777\",\n        \"accountDescription\": \"Escrow Liability\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-01-31T00:00:00\",\n        \"transactionID\": 21665,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 0.21,\n        \"debit\": 0,\n        \"postedDate\": \"2011-01-31T00:00:00\"\n    },\n    {\n        \"rowNumber\": 3,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Escrow Assets\",\n        \"headerAccountNumber\": \"1-9900\",\n        \"accountID\": 362,\n        \"accountNumber\": \"1-9901\",\n        \"accountDescription\": \"Escrow - Interest Bearing\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-01-31T00:00:00\",\n        \"transactionID\": 21143,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 0,\n        \"debit\": 0.85,\n        \"postedDate\": \"2011-01-31T00:00:00\"\n    },\n    {\n        \"rowNumber\": 4,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Escrow Assets\",\n        \"headerAccountNumber\": \"1-9900\",\n        \"accountID\": 362,\n        \"accountNumber\": \"1-9901\",\n        \"accountDescription\": \"Escrow - Interest Bearing\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-01-31T00:00:00\",\n        \"transactionID\": 21665,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 0,\n        \"debit\": 0.21,\n        \"postedDate\": \"2011-01-31T00:00:00\"\n    },\n    {\n        \"rowNumber\": 5,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Non-Current Assets\",\n        \"headerAccountNumber\": \"1-6000\",\n        \"accountID\": 361,\n        \"accountNumber\": \"2-7777\",\n        \"accountDescription\": \"Escrow Liability\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 21315,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 1002.57,\n        \"debit\": 0,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    },\n    {\n        \"rowNumber\": 6,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Non-Current Assets\",\n        \"headerAccountNumber\": \"1-6000\",\n        \"accountID\": 361,\n        \"accountNumber\": \"2-7777\",\n        \"accountDescription\": \"Escrow Liability\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 21341,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 45000,\n        \"debit\": 0,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    },\n    {\n        \"rowNumber\": 7,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Non-Current Assets\",\n        \"headerAccountNumber\": \"1-6000\",\n        \"accountID\": 361,\n        \"accountNumber\": \"2-7777\",\n        \"accountDescription\": \"Escrow Liability\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 20329,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 21000,\n        \"debit\": 0,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    },\n    {\n        \"rowNumber\": 8,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Non-Current Assets\",\n        \"headerAccountNumber\": \"1-6000\",\n        \"accountID\": 361,\n        \"accountNumber\": \"2-7777\",\n        \"accountDescription\": \"Escrow Liability\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 20336,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 1000.22,\n        \"debit\": 0,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    },\n    {\n        \"rowNumber\": 9,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Non-Current Assets\",\n        \"headerAccountNumber\": \"1-6000\",\n        \"accountID\": 361,\n        \"accountNumber\": \"2-7777\",\n        \"accountDescription\": \"Escrow Liability\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 20506,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 1007.09,\n        \"debit\": 0,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    },\n    {\n        \"rowNumber\": 10,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Non-Current Assets\",\n        \"headerAccountNumber\": \"1-6000\",\n        \"accountID\": 361,\n        \"accountNumber\": \"2-7777\",\n        \"accountDescription\": \"Escrow Liability\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 20322,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 6000,\n        \"debit\": 0,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    },\n    {\n        \"rowNumber\": 11,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Non-Current Assets\",\n        \"headerAccountNumber\": \"1-6000\",\n        \"accountID\": 361,\n        \"accountNumber\": \"2-7777\",\n        \"accountDescription\": \"Escrow Liability\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 21340,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 5063.65,\n        \"debit\": 0,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    },\n    {\n        \"rowNumber\": 12,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Escrow Assets\",\n        \"headerAccountNumber\": \"1-9900\",\n        \"accountID\": 362,\n        \"accountNumber\": \"1-9901\",\n        \"accountDescription\": \"Escrow - Interest Bearing\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 20616,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 0,\n        \"debit\": 1000.32,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    },\n    {\n        \"rowNumber\": 13,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Escrow Assets\",\n        \"headerAccountNumber\": \"1-9900\",\n        \"accountID\": 362,\n        \"accountNumber\": \"1-9901\",\n        \"accountDescription\": \"Escrow - Interest Bearing\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 20618,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 0,\n        \"debit\": 5002.25,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    },\n    {\n        \"rowNumber\": 14,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Escrow Assets\",\n        \"headerAccountNumber\": \"1-9900\",\n        \"accountID\": 363,\n        \"accountNumber\": \"1-9902\",\n        \"accountDescription\": \"Escrow - Non Interest\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 20322,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 0,\n        \"debit\": 6000,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    },\n    {\n        \"rowNumber\": 15,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Escrow Assets\",\n        \"headerAccountNumber\": \"1-9900\",\n        \"accountID\": 363,\n        \"accountNumber\": \"1-9902\",\n        \"accountDescription\": \"Escrow - Non Interest\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 20323,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 0,\n        \"debit\": 37500,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    },\n    {\n        \"rowNumber\": 16,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Escrow Assets\",\n        \"headerAccountNumber\": \"1-9900\",\n        \"accountID\": 363,\n        \"accountNumber\": \"1-9902\",\n        \"accountDescription\": \"Escrow - Non Interest\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 20324,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 0,\n        \"debit\": 87500,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    },\n    {\n        \"rowNumber\": 17,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Escrow Assets\",\n        \"headerAccountNumber\": \"1-9900\",\n        \"accountID\": 363,\n        \"accountNumber\": \"1-9902\",\n        \"accountDescription\": \"Escrow - Non Interest\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 20326,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 0,\n        \"debit\": 1000,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    },\n    {\n        \"rowNumber\": 18,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Escrow Assets\",\n        \"headerAccountNumber\": \"1-9900\",\n        \"accountID\": 363,\n        \"accountNumber\": \"1-9902\",\n        \"accountDescription\": \"Escrow - Non Interest\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 20327,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 0,\n        \"debit\": 5000,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    },\n    {\n        \"rowNumber\": 19,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Escrow Assets\",\n        \"headerAccountNumber\": \"1-9900\",\n        \"accountID\": 363,\n        \"accountNumber\": \"1-9902\",\n        \"accountDescription\": \"Escrow - Non Interest\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 20328,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 0,\n        \"debit\": 1000,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    },\n    {\n        \"rowNumber\": 20,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Escrow Assets\",\n        \"headerAccountNumber\": \"1-9900\",\n        \"accountID\": 363,\n        \"accountNumber\": \"1-9902\",\n        \"accountDescription\": \"Escrow - Non Interest\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 20329,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 0,\n        \"debit\": 21000,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    },\n    {\n        \"rowNumber\": 21,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Escrow Assets\",\n        \"headerAccountNumber\": \"1-9900\",\n        \"accountID\": 363,\n        \"accountNumber\": \"1-9902\",\n        \"accountDescription\": \"Escrow - Non Interest\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 20330,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 0,\n        \"debit\": 13000,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    },\n    {\n        \"rowNumber\": 22,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Escrow Assets\",\n        \"headerAccountNumber\": \"1-9900\",\n        \"accountID\": 363,\n        \"accountNumber\": \"1-9902\",\n        \"accountDescription\": \"Escrow - Non Interest\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 20332,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 0,\n        \"debit\": 1000,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    },\n    {\n        \"rowNumber\": 23,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Non-Current Assets\",\n        \"headerAccountNumber\": \"1-6000\",\n        \"accountID\": 361,\n        \"accountNumber\": \"2-7777\",\n        \"accountDescription\": \"Escrow Liability\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 20323,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 37500,\n        \"debit\": 0,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    },\n    {\n        \"rowNumber\": 24,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Non-Current Assets\",\n        \"headerAccountNumber\": \"1-6000\",\n        \"accountID\": 361,\n        \"accountNumber\": \"2-7777\",\n        \"accountDescription\": \"Escrow Liability\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 21255,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 3000,\n        \"debit\": 0,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    },\n    {\n        \"rowNumber\": 25,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Escrow Assets\",\n        \"headerAccountNumber\": \"1-9900\",\n        \"accountID\": 363,\n        \"accountNumber\": \"1-9902\",\n        \"accountDescription\": \"Escrow - Non Interest\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 21255,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 0,\n        \"debit\": 3000,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    },\n    {\n        \"rowNumber\": 26,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Escrow Assets\",\n        \"headerAccountNumber\": \"1-9900\",\n        \"accountID\": 363,\n        \"accountNumber\": \"1-9902\",\n        \"accountDescription\": \"Escrow - Non Interest\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 21341,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 0,\n        \"debit\": 45000,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    },\n    {\n        \"rowNumber\": 27,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Escrow Assets\",\n        \"headerAccountNumber\": \"1-9900\",\n        \"accountID\": 363,\n        \"accountNumber\": \"1-9902\",\n        \"accountDescription\": \"Escrow - Non Interest\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 21342,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 0,\n        \"debit\": 1000,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    },\n    {\n        \"rowNumber\": 28,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Non-Current Assets\",\n        \"headerAccountNumber\": \"1-6000\",\n        \"accountID\": 361,\n        \"accountNumber\": \"2-7777\",\n        \"accountDescription\": \"Escrow Liability\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 21342,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 1000,\n        \"debit\": 0,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    },\n    {\n        \"rowNumber\": 29,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Non-Current Assets\",\n        \"headerAccountNumber\": \"1-6000\",\n        \"accountID\": 361,\n        \"accountNumber\": \"2-7777\",\n        \"accountDescription\": \"Escrow Liability\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 20333,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 1002.25,\n        \"debit\": 0,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    },\n    {\n        \"rowNumber\": 30,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Non-Current Assets\",\n        \"headerAccountNumber\": \"1-6000\",\n        \"accountID\": 361,\n        \"accountNumber\": \"2-7777\",\n        \"accountDescription\": \"Escrow Liability\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 21335,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 1001.17,\n        \"debit\": 0,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    },\n    {\n        \"rowNumber\": 31,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Escrow Assets\",\n        \"headerAccountNumber\": \"1-9900\",\n        \"accountID\": 362,\n        \"accountNumber\": \"1-9901\",\n        \"accountDescription\": \"Escrow - Interest Bearing\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 20333,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 0,\n        \"debit\": 1002.25,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    },\n    {\n        \"rowNumber\": 32,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Escrow Assets\",\n        \"headerAccountNumber\": \"1-9900\",\n        \"accountID\": 362,\n        \"accountNumber\": \"1-9901\",\n        \"accountDescription\": \"Escrow - Interest Bearing\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 20340,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 0,\n        \"debit\": 5002.07,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    },\n    {\n        \"rowNumber\": 33,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Escrow Assets\",\n        \"headerAccountNumber\": \"1-9900\",\n        \"accountID\": 362,\n        \"accountNumber\": \"1-9901\",\n        \"accountDescription\": \"Escrow - Interest Bearing\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 20336,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 0,\n        \"debit\": 1000.22,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    },\n    {\n        \"rowNumber\": 34,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Escrow Assets\",\n        \"headerAccountNumber\": \"1-9900\",\n        \"accountID\": 362,\n        \"accountNumber\": \"1-9901\",\n        \"accountDescription\": \"Escrow - Interest Bearing\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 20338,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 0,\n        \"debit\": 1001.37,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    },\n    {\n        \"rowNumber\": 35,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Non-Current Assets\",\n        \"headerAccountNumber\": \"1-6000\",\n        \"accountID\": 361,\n        \"accountNumber\": \"2-7777\",\n        \"accountDescription\": \"Escrow Liability\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 20328,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 1000,\n        \"debit\": 0,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    },\n    {\n        \"rowNumber\": 36,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Non-Current Assets\",\n        \"headerAccountNumber\": \"1-6000\",\n        \"accountID\": 361,\n        \"accountNumber\": \"2-7777\",\n        \"accountDescription\": \"Escrow Liability\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 20332,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 1000,\n        \"debit\": 0,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    },\n    {\n        \"rowNumber\": 37,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Escrow Assets\",\n        \"headerAccountNumber\": \"1-9900\",\n        \"accountID\": 362,\n        \"accountNumber\": \"1-9901\",\n        \"accountDescription\": \"Escrow - Interest Bearing\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 21317,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 0,\n        \"debit\": 1004.68,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    },\n    {\n        \"rowNumber\": 38,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Escrow Assets\",\n        \"headerAccountNumber\": \"1-9900\",\n        \"accountID\": 362,\n        \"accountNumber\": \"1-9901\",\n        \"accountDescription\": \"Escrow - Interest Bearing\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 21315,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 0,\n        \"debit\": 1002.57,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    },\n    {\n        \"rowNumber\": 39,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Escrow Assets\",\n        \"headerAccountNumber\": \"1-9900\",\n        \"accountID\": 362,\n        \"accountNumber\": \"1-9901\",\n        \"accountDescription\": \"Escrow - Interest Bearing\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 21335,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 0,\n        \"debit\": 1001.17,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    },\n    {\n        \"rowNumber\": 40,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Escrow Assets\",\n        \"headerAccountNumber\": \"1-9900\",\n        \"accountID\": 362,\n        \"accountNumber\": \"1-9901\",\n        \"accountDescription\": \"Escrow - Interest Bearing\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 21340,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 0,\n        \"debit\": 5063.65,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    },\n    {\n        \"rowNumber\": 41,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Non-Current Assets\",\n        \"headerAccountNumber\": \"1-6000\",\n        \"accountID\": 361,\n        \"accountNumber\": \"2-7777\",\n        \"accountDescription\": \"Escrow Liability\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 20616,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 1000.32,\n        \"debit\": 0,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    },\n    {\n        \"rowNumber\": 42,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Non-Current Assets\",\n        \"headerAccountNumber\": \"1-6000\",\n        \"accountID\": 361,\n        \"accountNumber\": \"2-7777\",\n        \"accountDescription\": \"Escrow Liability\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 21317,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 1004.68,\n        \"debit\": 0,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    },\n    {\n        \"rowNumber\": 43,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Escrow Assets\",\n        \"headerAccountNumber\": \"1-9900\",\n        \"accountID\": 362,\n        \"accountNumber\": \"1-9901\",\n        \"accountDescription\": \"Escrow - Interest Bearing\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 20506,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 0,\n        \"debit\": 1007.09,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    },\n    {\n        \"rowNumber\": 44,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Non-Current Assets\",\n        \"headerAccountNumber\": \"1-6000\",\n        \"accountID\": 361,\n        \"accountNumber\": \"2-7777\",\n        \"accountDescription\": \"Escrow Liability\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 20326,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 1000,\n        \"debit\": 0,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    },\n    {\n        \"rowNumber\": 45,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Non-Current Assets\",\n        \"headerAccountNumber\": \"1-6000\",\n        \"accountID\": 361,\n        \"accountNumber\": \"2-7777\",\n        \"accountDescription\": \"Escrow Liability\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 20327,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 5000,\n        \"debit\": 0,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    },\n    {\n        \"rowNumber\": 46,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Non-Current Assets\",\n        \"headerAccountNumber\": \"1-6000\",\n        \"accountID\": 361,\n        \"accountNumber\": \"2-7777\",\n        \"accountDescription\": \"Escrow Liability\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 20324,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 87500,\n        \"debit\": 0,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    },\n    {\n        \"rowNumber\": 47,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Non-Current Assets\",\n        \"headerAccountNumber\": \"1-6000\",\n        \"accountID\": 361,\n        \"accountNumber\": \"2-7777\",\n        \"accountDescription\": \"Escrow Liability\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 20340,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 5002.07,\n        \"debit\": 0,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    },\n    {\n        \"rowNumber\": 48,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Non-Current Assets\",\n        \"headerAccountNumber\": \"1-6000\",\n        \"accountID\": 361,\n        \"accountNumber\": \"2-7777\",\n        \"accountDescription\": \"Escrow Liability\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 20618,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 5002.25,\n        \"debit\": 0,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    },\n    {\n        \"rowNumber\": 49,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Non-Current Assets\",\n        \"headerAccountNumber\": \"1-6000\",\n        \"accountID\": 361,\n        \"accountNumber\": \"2-7777\",\n        \"accountDescription\": \"Escrow Liability\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 20330,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 13000,\n        \"debit\": 0,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    },\n    {\n        \"rowNumber\": 50,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Non-Current Assets\",\n        \"headerAccountNumber\": \"1-6000\",\n        \"accountID\": 361,\n        \"accountNumber\": \"2-7777\",\n        \"accountDescription\": \"Escrow Liability\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-10-01T00:00:00\",\n        \"transactionID\": 20338,\n        \"transactionType\": \"checkbook\",\n        \"action\": \"posted\",\n        \"credit\": 1001.37,\n        \"debit\": 0,\n        \"postedDate\": \"2011-10-01T00:00:00\"\n    }\n]"},{"id":"f6b46fef-254b-43e8-8cf1-0136a063f395","name":"Ledger Report - Summary","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{base_url}}/api/ledgerreport/GL?dateStart={{dateStart}}&dateEnd={{dateEnd}}&companyID={{companyId}}&officeId={{officeId}}&pageIndex={{pageIndex}}&pageSize={{pageSize}}&ledgerType={{ledgerType}}","protocol":"https","host":["{{base_url}}"],"path":["api","ledgerreport","GL"],"query":[{"key":"dateStart","value":"{{dateStart}}","description":"Start date to filter the ledger data."},{"key":"dateEnd","value":"{{dateEnd}}","description":"End date to filter the ledger data."},{"key":"companyID","value":"{{companyId}}","description":"Used to filter the ledger for a specific company in the system."},{"key":"officeId","value":"{{officeId}}","description":"Used to filter the ledger for a specific office in the system."},{"key":"pageIndex","value":"{{pageIndex}}","description":"Represents the page number that will be retrieved. Starts in zero.\n\nIf nothing is passed, it will assume page zero.\n\nIf -1 is passed, it will retrieve all records at once.\n"},{"key":"pageSize","value":"{{pageSize}}","description":"Determines the number of ledger entries that will be retrieved on every request. Could be any value from 1 to 100\n\nDefault value is 100, returns maximum of 100 records"},{"key":"ledgerType","value":"{{ledgerType}}","description":"Use this to determine the type of ledger data that needs to be retrieved. There are two possible values:\n\n<b>SUMMARY:</b> This is the default value. So this value will be assumed if nothing is specified. This will make all income, expenses and Cost of sale ledger entries to be summarized\n\n\n<b>DETAIL:</b> With this value, every accounting transaction posted or unposted will be retrieved in the given date range. This is to be used in an incremental pull implementation is done with requirement to have detailed information on every transaction posted in Darwin."},{"key":"accountID","value":"{{accountID}}","description":"Used to filter the ledger for a specific GL account number.","disabled":true},{"key":"transactionID","value":"{{transactionID}}","description":"Used to filter the ledger for a specific transaction (invoice, voucher, check, deposits, etc.).","disabled":true},{"key":"code","value":"{{code}}","description":"Used to filter the ledger for a specific type of transaction (ex.: all invoices, all vouchers, etc.).","disabled":true}]}},"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":"Server","value":"Kestrel"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 13 Dec 2023 18:01:32 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"rowNumber\": 1,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Current Assets 123\",\n        \"headerAccountNumber\": \"1-0001\",\n        \"accountID\": 16,\n        \"accountNumber\": \"1-1200\",\n        \"accountDescription\": \"Accounts Receivable\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2010-11-01T00:00:00\",\n        \"credit\": 0,\n        \"debit\": 0\n    },\n    {\n        \"rowNumber\": 2,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Current Liabilities\",\n        \"headerAccountNumber\": \"2-0001\",\n        \"accountID\": 92,\n        \"accountNumber\": \"2-1200\",\n        \"accountDescription\": \"Accounts Payable\",\n        \"accountType\": \"Liability\",\n        \"date\": \"2010-11-01T00:00:00\",\n        \"credit\": 0,\n        \"debit\": 0\n    },\n    {\n        \"rowNumber\": 3,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Boston\",\n        \"officeID\": 2,\n        \"headerAccountDescription\": \"My Commission Account\",\n        \"headerAccountNumber\": \"4-6910\",\n        \"accountID\": 522,\n        \"accountNumber\": \"4-6910\",\n        \"accountDescription\": \"My Commission Account\",\n        \"accountType\": \"Income\",\n        \"date\": \"2010-11-01T00:00:00\",\n        \"credit\": 8970,\n        \"debit\": 8970\n    },\n    {\n        \"rowNumber\": 4,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Broadway\",\n        \"officeID\": 3,\n        \"headerAccountDescription\": \"My Commission Account\",\n        \"headerAccountNumber\": \"4-6910\",\n        \"accountID\": 522,\n        \"accountNumber\": \"4-6910\",\n        \"accountDescription\": \"My Commission Account\",\n        \"accountType\": \"Income\",\n        \"date\": \"2010-11-01T00:00:00\",\n        \"credit\": 15750,\n        \"debit\": 15750\n    },\n    {\n        \"rowNumber\": 5,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Dorchester\",\n        \"officeID\": 19,\n        \"headerAccountDescription\": \"My Commission Account\",\n        \"headerAccountNumber\": \"4-6910\",\n        \"accountID\": 522,\n        \"accountNumber\": \"4-6910\",\n        \"accountDescription\": \"My Commission Account\",\n        \"accountType\": \"Income\",\n        \"date\": \"2010-11-01T00:00:00\",\n        \"credit\": 14437.5,\n        \"debit\": 14437.5\n    },\n    {\n        \"rowNumber\": 6,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Boston\",\n        \"officeID\": 2,\n        \"headerAccountDescription\": \"Agent Regional Info\",\n        \"headerAccountNumber\": \"4-9000\",\n        \"accountID\": 183,\n        \"accountNumber\": \"4-9000\",\n        \"accountDescription\": \"Agent Regional Info\",\n        \"accountType\": \"Income\",\n        \"date\": \"2010-11-01T00:00:00\",\n        \"credit\": 299001,\n        \"debit\": 299001\n    },\n    {\n        \"rowNumber\": 7,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Broadway\",\n        \"officeID\": 3,\n        \"headerAccountDescription\": \"Agent Regional Info\",\n        \"headerAccountNumber\": \"4-9000\",\n        \"accountID\": 183,\n        \"accountNumber\": \"4-9000\",\n        \"accountDescription\": \"Agent Regional Info\",\n        \"accountType\": \"Income\",\n        \"date\": \"2010-11-01T00:00:00\",\n        \"credit\": 525001,\n        \"debit\": 525001\n    },\n    {\n        \"rowNumber\": 8,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Dorchester\",\n        \"officeID\": 19,\n        \"headerAccountDescription\": \"Agent Regional Info\",\n        \"headerAccountNumber\": \"4-9000\",\n        \"accountID\": 183,\n        \"accountNumber\": \"4-9000\",\n        \"accountDescription\": \"Agent Regional Info\",\n        \"accountType\": \"Income\",\n        \"date\": \"2010-11-01T00:00:00\",\n        \"credit\": 525001,\n        \"debit\": 525001\n    },\n    {\n        \"rowNumber\": 9,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Boston\",\n        \"officeID\": 2,\n        \"headerAccountDescription\": \"Cost Of Sales\",\n        \"headerAccountNumber\": \"5-0000\",\n        \"accountID\": 188,\n        \"accountNumber\": \"5-0000\",\n        \"accountDescription\": \"Cost Of Sales\",\n        \"accountType\": \"Cost of Sales\",\n        \"date\": \"2010-11-01T00:00:00\",\n        \"credit\": 6745.44,\n        \"debit\": 6745.44\n    },\n    {\n        \"rowNumber\": 10,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Broadway\",\n        \"officeID\": 3,\n        \"headerAccountDescription\": \"Cost Of Sales\",\n        \"headerAccountNumber\": \"5-0000\",\n        \"accountID\": 188,\n        \"accountNumber\": \"5-0000\",\n        \"accountDescription\": \"Cost Of Sales\",\n        \"accountType\": \"Cost of Sales\",\n        \"date\": \"2010-11-01T00:00:00\",\n        \"credit\": 11103.75,\n        \"debit\": 11103.75\n    },\n    {\n        \"rowNumber\": 11,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Dorchester\",\n        \"officeID\": 19,\n        \"headerAccountDescription\": \"Cost Of Sales\",\n        \"headerAccountNumber\": \"5-0000\",\n        \"accountID\": 188,\n        \"accountNumber\": \"5-0000\",\n        \"accountDescription\": \"Cost Of Sales\",\n        \"accountType\": \"Cost of Sales\",\n        \"date\": \"2010-11-01T00:00:00\",\n        \"credit\": 13571.25,\n        \"debit\": 13571.25\n    },\n    {\n        \"rowNumber\": 12,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Current Assets 123\",\n        \"headerAccountNumber\": \"1-0001\",\n        \"accountID\": 16,\n        \"accountNumber\": \"1-1200\",\n        \"accountDescription\": \"Accounts Receivable\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2010-12-01T00:00:00\",\n        \"credit\": 0,\n        \"debit\": 0\n    },\n    {\n        \"rowNumber\": 13,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Current Liabilities\",\n        \"headerAccountNumber\": \"2-0001\",\n        \"accountID\": 92,\n        \"accountNumber\": \"2-1200\",\n        \"accountDescription\": \"Accounts Payable\",\n        \"accountType\": \"Liability\",\n        \"date\": \"2010-12-01T00:00:00\",\n        \"credit\": 0,\n        \"debit\": 0\n    },\n    {\n        \"rowNumber\": 14,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Bay Village\",\n        \"officeID\": 20,\n        \"headerAccountDescription\": \"My Commission Account\",\n        \"headerAccountNumber\": \"4-6910\",\n        \"accountID\": 522,\n        \"accountNumber\": \"4-6910\",\n        \"accountDescription\": \"My Commission Account\",\n        \"accountType\": \"Income\",\n        \"date\": \"2010-12-01T00:00:00\",\n        \"credit\": 89962,\n        \"debit\": 445547\n    },\n    {\n        \"rowNumber\": 15,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Boston\",\n        \"officeID\": 2,\n        \"headerAccountDescription\": \"My Commission Account\",\n        \"headerAccountNumber\": \"4-6910\",\n        \"accountID\": 522,\n        \"accountNumber\": \"4-6910\",\n        \"accountDescription\": \"My Commission Account\",\n        \"accountType\": \"Income\",\n        \"date\": \"2010-12-01T00:00:00\",\n        \"credit\": 35903.11,\n        \"debit\": 35903.11\n    },\n    {\n        \"rowNumber\": 16,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Broadway\",\n        \"officeID\": 3,\n        \"headerAccountDescription\": \"My Commission Account\",\n        \"headerAccountNumber\": \"4-6910\",\n        \"accountID\": 522,\n        \"accountNumber\": \"4-6910\",\n        \"accountDescription\": \"My Commission Account\",\n        \"accountType\": \"Income\",\n        \"date\": \"2010-12-01T00:00:00\",\n        \"credit\": 71200,\n        \"debit\": 71200\n    },\n    {\n        \"rowNumber\": 17,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Fairfield\",\n        \"officeID\": 8,\n        \"headerAccountDescription\": \"My Commission Account\",\n        \"headerAccountNumber\": \"4-6910\",\n        \"accountID\": 522,\n        \"accountNumber\": \"4-6910\",\n        \"accountDescription\": \"My Commission Account\",\n        \"accountType\": \"Income\",\n        \"date\": \"2010-12-01T00:00:00\",\n        \"credit\": 131100,\n        \"debit\": 147515\n    },\n    {\n        \"rowNumber\": 18,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Lexington\",\n        \"officeID\": 9,\n        \"headerAccountDescription\": \"My Commission Account\",\n        \"headerAccountNumber\": \"4-6910\",\n        \"accountID\": 522,\n        \"accountNumber\": \"4-6910\",\n        \"accountDescription\": \"My Commission Account\",\n        \"accountType\": \"Income\",\n        \"date\": \"2010-12-01T00:00:00\",\n        \"credit\": 372000,\n        \"debit\": 0\n    },\n    {\n        \"rowNumber\": 19,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Mansfield\",\n        \"officeID\": 12,\n        \"headerAccountDescription\": \"My Commission Account\",\n        \"headerAccountNumber\": \"4-6910\",\n        \"accountID\": 522,\n        \"accountNumber\": \"4-6910\",\n        \"accountDescription\": \"My Commission Account\",\n        \"accountType\": \"Income\",\n        \"date\": \"2010-12-01T00:00:00\",\n        \"credit\": 35172,\n        \"debit\": 35172\n    },\n    {\n        \"rowNumber\": 20,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Bay Village\",\n        \"officeID\": 20,\n        \"headerAccountDescription\": \"Agent Regional Info\",\n        \"headerAccountNumber\": \"4-9000\",\n        \"accountID\": 183,\n        \"accountNumber\": \"4-9000\",\n        \"accountDescription\": \"Agent Regional Info\",\n        \"accountType\": \"Income\",\n        \"date\": \"2010-12-01T00:00:00\",\n        \"credit\": 3172905,\n        \"debit\": 20886906\n    },\n    {\n        \"rowNumber\": 21,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Boston\",\n        \"officeID\": 2,\n        \"headerAccountDescription\": \"Agent Regional Info\",\n        \"headerAccountNumber\": \"4-9000\",\n        \"accountID\": 183,\n        \"accountNumber\": \"4-9000\",\n        \"accountDescription\": \"Agent Regional Info\",\n        \"accountType\": \"Income\",\n        \"date\": \"2010-12-01T00:00:00\",\n        \"credit\": 1358481,\n        \"debit\": 1358481\n    },\n    {\n        \"rowNumber\": 22,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Broadway\",\n        \"officeID\": 3,\n        \"headerAccountDescription\": \"Agent Regional Info\",\n        \"headerAccountNumber\": \"4-9000\",\n        \"accountID\": 183,\n        \"accountNumber\": \"4-9000\",\n        \"accountDescription\": \"Agent Regional Info\",\n        \"accountType\": \"Income\",\n        \"date\": \"2010-12-01T00:00:00\",\n        \"credit\": 2770003.5,\n        \"debit\": 2770003.5\n    },\n    {\n        \"rowNumber\": 23,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Fairfield\",\n        \"officeID\": 8,\n        \"headerAccountDescription\": \"Agent Regional Info\",\n        \"headerAccountNumber\": \"4-9000\",\n        \"accountID\": 183,\n        \"accountNumber\": \"4-9000\",\n        \"accountDescription\": \"Agent Regional Info\",\n        \"accountType\": \"Income\",\n        \"date\": \"2010-12-01T00:00:00\",\n        \"credit\": 4370006.5,\n        \"debit\": 5256007.5\n    },\n    {\n        \"rowNumber\": 24,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Lexington\",\n        \"officeID\": 9,\n        \"headerAccountDescription\": \"Agent Regional Info\",\n        \"headerAccountNumber\": \"4-9000\",\n        \"accountID\": 183,\n        \"accountNumber\": \"4-9000\",\n        \"accountDescription\": \"Agent Regional Info\",\n        \"accountType\": \"Income\",\n        \"date\": \"2010-12-01T00:00:00\",\n        \"credit\": 18600002,\n        \"debit\": 0\n    },\n    {\n        \"rowNumber\": 25,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Mansfield\",\n        \"officeID\": 12,\n        \"headerAccountDescription\": \"Agent Regional Info\",\n        \"headerAccountNumber\": \"4-9000\",\n        \"accountID\": 183,\n        \"accountNumber\": \"4-9000\",\n        \"accountDescription\": \"Agent Regional Info\",\n        \"accountType\": \"Income\",\n        \"date\": \"2010-12-01T00:00:00\",\n        \"credit\": 1274903,\n        \"debit\": 1274903\n    },\n    {\n        \"rowNumber\": 26,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Bay Village\",\n        \"officeID\": 20,\n        \"headerAccountDescription\": \"Cost Of Sales\",\n        \"headerAccountNumber\": \"5-0000\",\n        \"accountID\": 188,\n        \"accountNumber\": \"5-0000\",\n        \"accountDescription\": \"Cost Of Sales\",\n        \"accountType\": \"Cost of Sales\",\n        \"date\": \"2010-12-01T00:00:00\",\n        \"credit\": 359918.73,\n        \"debit\": 64626.76\n    },\n    {\n        \"rowNumber\": 27,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Boston\",\n        \"officeID\": 2,\n        \"headerAccountDescription\": \"Cost Of Sales\",\n        \"headerAccountNumber\": \"5-0000\",\n        \"accountID\": 188,\n        \"accountNumber\": \"5-0000\",\n        \"accountDescription\": \"Cost Of Sales\",\n        \"accountType\": \"Cost of Sales\",\n        \"date\": \"2010-12-01T00:00:00\",\n        \"credit\": 23030.81,\n        \"debit\": 23030.81\n    },\n    {\n        \"rowNumber\": 28,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Broadway\",\n        \"officeID\": 3,\n        \"headerAccountDescription\": \"Cost Of Sales\",\n        \"headerAccountNumber\": \"5-0000\",\n        \"accountID\": 188,\n        \"accountNumber\": \"5-0000\",\n        \"accountDescription\": \"Cost Of Sales\",\n        \"accountType\": \"Cost of Sales\",\n        \"date\": \"2010-12-01T00:00:00\",\n        \"credit\": 58678.79,\n        \"debit\": 58678.79\n    },\n    {\n        \"rowNumber\": 29,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Fairfield\",\n        \"officeID\": 8,\n        \"headerAccountDescription\": \"Cost Of Sales\",\n        \"headerAccountNumber\": \"5-0000\",\n        \"accountID\": 188,\n        \"accountNumber\": \"5-0000\",\n        \"accountDescription\": \"Cost Of Sales\",\n        \"accountType\": \"Cost of Sales\",\n        \"date\": \"2010-12-01T00:00:00\",\n        \"credit\": 102381.62,\n        \"debit\": 89605.5\n    },\n    {\n        \"rowNumber\": 30,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Lexington\",\n        \"officeID\": 9,\n        \"headerAccountDescription\": \"Cost Of Sales\",\n        \"headerAccountNumber\": \"5-0000\",\n        \"accountID\": 188,\n        \"accountNumber\": \"5-0000\",\n        \"accountDescription\": \"Cost Of Sales\",\n        \"accountType\": \"Cost of Sales\",\n        \"date\": \"2010-12-01T00:00:00\",\n        \"credit\": 0,\n        \"debit\": 308068.09\n    },\n    {\n        \"rowNumber\": 31,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Mansfield\",\n        \"officeID\": 12,\n        \"headerAccountDescription\": \"Cost Of Sales\",\n        \"headerAccountNumber\": \"5-0000\",\n        \"accountID\": 188,\n        \"accountNumber\": \"5-0000\",\n        \"accountDescription\": \"Cost Of Sales\",\n        \"accountType\": \"Cost of Sales\",\n        \"date\": \"2010-12-01T00:00:00\",\n        \"credit\": 26637.53,\n        \"debit\": 26637.53\n    },\n    {\n        \"rowNumber\": 32,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Current Assets 123\",\n        \"headerAccountNumber\": \"1-0001\",\n        \"accountID\": 16,\n        \"accountNumber\": \"1-1200\",\n        \"accountDescription\": \"Accounts Receivable\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-01-01T00:00:00\",\n        \"credit\": 0,\n        \"debit\": 0\n    },\n    {\n        \"rowNumber\": 33,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Escrow Assets\",\n        \"headerAccountNumber\": \"1-9900\",\n        \"accountID\": 362,\n        \"accountNumber\": \"1-9901\",\n        \"accountDescription\": \"Escrow - Interest Bearing\",\n        \"accountType\": \"Asset-Escrow\",\n        \"date\": \"2011-01-01T00:00:00\",\n        \"credit\": 0,\n        \"debit\": 1.06\n    },\n    {\n        \"rowNumber\": 34,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Current Liabilities\",\n        \"headerAccountNumber\": \"2-0001\",\n        \"accountID\": 92,\n        \"accountNumber\": \"2-1200\",\n        \"accountDescription\": \"Accounts Payable\",\n        \"accountType\": \"Liability\",\n        \"date\": \"2011-01-01T00:00:00\",\n        \"credit\": 0,\n        \"debit\": 0\n    },\n    {\n        \"rowNumber\": 35,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Corporate\",\n        \"officeID\": 6,\n        \"headerAccountDescription\": \"Non-Current Assets\",\n        \"headerAccountNumber\": \"1-6000\",\n        \"accountID\": 361,\n        \"accountNumber\": \"2-7777\",\n        \"accountDescription\": \"Escrow Liability\",\n        \"accountType\": \"Asset\",\n        \"date\": \"2011-01-01T00:00:00\",\n        \"credit\": 1.06,\n        \"debit\": 0\n    },\n    {\n        \"rowNumber\": 36,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Bay Village\",\n        \"officeID\": 20,\n        \"headerAccountDescription\": \"My Commission Account\",\n        \"headerAccountNumber\": \"4-6910\",\n        \"accountID\": 522,\n        \"accountNumber\": \"4-6910\",\n        \"accountDescription\": \"My Commission Account\",\n        \"accountType\": \"Income\",\n        \"date\": \"2011-01-01T00:00:00\",\n        \"credit\": 217585.5,\n        \"debit\": 383144.5\n    },\n    {\n        \"rowNumber\": 37,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Boston\",\n        \"officeID\": 2,\n        \"headerAccountDescription\": \"My Commission Account\",\n        \"headerAccountNumber\": \"4-6910\",\n        \"accountID\": 522,\n        \"accountNumber\": \"4-6910\",\n        \"accountDescription\": \"My Commission Account\",\n        \"accountType\": \"Income\",\n        \"date\": \"2011-01-01T00:00:00\",\n        \"credit\": 341241.06,\n        \"debit\": 341241.06\n    },\n    {\n        \"rowNumber\": 38,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Broadway\",\n        \"officeID\": 3,\n        \"headerAccountDescription\": \"My Commission Account\",\n        \"headerAccountNumber\": \"4-6910\",\n        \"accountID\": 522,\n        \"accountNumber\": \"4-6910\",\n        \"accountDescription\": \"My Commission Account\",\n        \"accountType\": \"Income\",\n        \"date\": \"2011-01-01T00:00:00\",\n        \"credit\": 282195,\n        \"debit\": 282195\n    },\n    {\n        \"rowNumber\": 39,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Dorchester\",\n        \"officeID\": 19,\n        \"headerAccountDescription\": \"My Commission Account\",\n        \"headerAccountNumber\": \"4-6910\",\n        \"accountID\": 522,\n        \"accountNumber\": \"4-6910\",\n        \"accountDescription\": \"My Commission Account\",\n        \"accountType\": \"Income\",\n        \"date\": \"2011-01-01T00:00:00\",\n        \"credit\": 125070.15,\n        \"debit\": 348498.45\n    },\n    {\n        \"rowNumber\": 40,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Fairfield\",\n        \"officeID\": 8,\n        \"headerAccountDescription\": \"My Commission Account\",\n        \"headerAccountNumber\": \"4-6910\",\n        \"accountID\": 522,\n        \"accountNumber\": \"4-6910\",\n        \"accountDescription\": \"My Commission Account\",\n        \"accountType\": \"Income\",\n        \"date\": \"2011-01-01T00:00:00\",\n        \"credit\": 179397,\n        \"debit\": 253379\n    },\n    {\n        \"rowNumber\": 41,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Lexington\",\n        \"officeID\": 9,\n        \"headerAccountDescription\": \"My Commission Account\",\n        \"headerAccountNumber\": \"4-6910\",\n        \"accountID\": 522,\n        \"accountNumber\": \"4-6910\",\n        \"accountDescription\": \"My Commission Account\",\n        \"accountType\": \"Income\",\n        \"date\": \"2011-01-01T00:00:00\",\n        \"credit\": 202041,\n        \"debit\": 0\n    },\n    {\n        \"rowNumber\": 42,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Mansfield\",\n        \"officeID\": 12,\n        \"headerAccountDescription\": \"My Commission Account\",\n        \"headerAccountNumber\": \"4-6910\",\n        \"accountID\": 522,\n        \"accountNumber\": \"4-6910\",\n        \"accountDescription\": \"My Commission Account\",\n        \"accountType\": \"Income\",\n        \"date\": \"2011-01-01T00:00:00\",\n        \"credit\": 52639.37,\n        \"debit\": 52639.37\n    },\n    {\n        \"rowNumber\": 43,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Reading\",\n        \"officeID\": 22,\n        \"headerAccountDescription\": \"My Commission Account\",\n        \"headerAccountNumber\": \"4-6910\",\n        \"accountID\": 522,\n        \"accountNumber\": \"4-6910\",\n        \"accountDescription\": \"My Commission Account\",\n        \"accountType\": \"Income\",\n        \"date\": \"2011-01-01T00:00:00\",\n        \"credit\": 87750.4,\n        \"debit\": 0\n    },\n    {\n        \"rowNumber\": 44,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Rentals\",\n        \"officeID\": 16,\n        \"headerAccountDescription\": \"My Commission Account\",\n        \"headerAccountNumber\": \"4-6910\",\n        \"accountID\": 522,\n        \"accountNumber\": \"4-6910\",\n        \"accountDescription\": \"My Commission Account\",\n        \"accountType\": \"Income\",\n        \"date\": \"2011-01-01T00:00:00\",\n        \"credit\": 17820,\n        \"debit\": 0\n    },\n    {\n        \"rowNumber\": 45,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Sarasota Projects \",\n        \"officeID\": 15,\n        \"headerAccountDescription\": \"My Commission Account\",\n        \"headerAccountNumber\": \"4-6910\",\n        \"accountID\": 522,\n        \"accountNumber\": \"4-6910\",\n        \"accountDescription\": \"My Commission Account\",\n        \"accountType\": \"Income\",\n        \"date\": \"2011-01-01T00:00:00\",\n        \"credit\": 21750,\n        \"debit\": 0\n    },\n    {\n        \"rowNumber\": 46,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Westwood\",\n        \"officeID\": 21,\n        \"headerAccountDescription\": \"My Commission Account\",\n        \"headerAccountNumber\": \"4-6910\",\n        \"accountID\": 522,\n        \"accountNumber\": \"4-6910\",\n        \"accountDescription\": \"My Commission Account\",\n        \"accountType\": \"Income\",\n        \"date\": \"2011-01-01T00:00:00\",\n        \"credit\": 45857.5,\n        \"debit\": 0\n    },\n    {\n        \"rowNumber\": 47,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Yellowstone\",\n        \"officeID\": 7,\n        \"headerAccountDescription\": \"My Commission Account\",\n        \"headerAccountNumber\": \"4-6910\",\n        \"accountID\": 522,\n        \"accountNumber\": \"4-6910\",\n        \"accountDescription\": \"My Commission Account\",\n        \"accountType\": \"Income\",\n        \"date\": \"2011-01-01T00:00:00\",\n        \"credit\": 87750.4,\n        \"debit\": 0\n    },\n    {\n        \"rowNumber\": 48,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Bay Village\",\n        \"officeID\": 20,\n        \"headerAccountDescription\": \"Agent Regional Info\",\n        \"headerAccountNumber\": \"4-9000\",\n        \"accountID\": 183,\n        \"accountNumber\": \"4-9000\",\n        \"accountDescription\": \"Agent Regional Info\",\n        \"accountType\": \"Income\",\n        \"date\": \"2011-01-01T00:00:00\",\n        \"credit\": 9202860.5,\n        \"debit\": 24483412\n    },\n    {\n        \"rowNumber\": 49,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Boston\",\n        \"officeID\": 2,\n        \"headerAccountDescription\": \"Agent Regional Info\",\n        \"headerAccountNumber\": \"4-9000\",\n        \"accountID\": 183,\n        \"accountNumber\": \"4-9000\",\n        \"accountDescription\": \"Agent Regional Info\",\n        \"accountType\": \"Income\",\n        \"date\": \"2011-01-01T00:00:00\",\n        \"credit\": 12815921.01,\n        \"debit\": 12815921.01\n    },\n    {\n        \"rowNumber\": 50,\n        \"companyID\": 1,\n        \"companyName\": \"Century 21 Mass\",\n        \"officeName\": \"Broadway\",\n        \"officeID\": 3,\n        \"headerAccountDescription\": \"Agent Regional Info\",\n        \"headerAccountNumber\": \"4-9000\",\n        \"accountID\": 183,\n        \"accountNumber\": \"4-9000\",\n        \"accountDescription\": \"Agent Regional Info\",\n        \"accountType\": \"Income\",\n        \"date\": \"2011-01-01T00:00:00\",\n        \"credit\": 13937505,\n        \"debit\": 13937505\n    }\n]"}],"_postman_id":"df6144e3-8ef3-4dea-b305-c15fb03fec3e"}],"id":"9d879fba-c682-4606-9bdb-8699b7dce990","description":"<p>The <code>Accounting</code> object allows you to get information about financial and accounting transactions that are part of any given client.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"dc857696-4498-412c-b419-f343c149f99b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d5b0cfc2-ffda-4975-b484-662299ee53eb","type":"text/javascript","exec":[""]}}],"_postman_id":"9d879fba-c682-4606-9bdb-8699b7dce990"},{"name":"Dashboards","item":[{"name":"analyticsDashboard","id":"ba8ac7cd-8b1a-4895-96bc-c94ee056ba36","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://{{base_url}}/api/AnalyticsDashboard?userID={{userID}}&applySecurity={{applySecurity}}&title={{title}}&url={{url}}","description":"<p>This Resource will allow you to pull the detailed list of analytics dashboards of any given client filtered by different parameters such as userId, apply security, title, URL.</p>\n","urlObject":{"protocol":"https","path":["api","AnalyticsDashboard"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Darwin internal ID of the user to filter on.</p>\n","type":"text/plain"},"key":"userID","value":"{{userID}}"},{"description":{"content":"<p>Possible values are 1 or 0.</p>\n<ul>\n<li><p>1 means system analytics dashboards that apply permissions will be included.</p>\n</li>\n<li><p>0 means the API will return all records.</p>\n</li>\n</ul>\n<p>If this parameter is not provided, 0 will be assumed.</p>\n","type":"text/plain"},"key":"applySecurity","value":"{{applySecurity}}"},{"description":{"content":"<p>The title for system analytics dashboards. </p>\n<p>If used, it will filter the results to only show system analytics dashboards when the title contains this value.</p>\n","type":"text/plain"},"key":"title","value":"{{title}}"},{"description":{"content":"<p>The url unique for system analytics dashboards. </p>\n<p>If used, it will filter the results to only show system analytics dashboards when the url contains this value.</p>\n","type":"text/plain"},"key":"url","value":"{{url}}"}],"variable":[]}},"response":[{"id":"3839406c-3d34-4dd4-a06e-dc640115c12c","name":"analyticsDashboard","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic {{token}}","description":"This is a value generated with 2 components:\n“Basic `{userName:token}`”\n\nThe Token will be issued to the user after a successful authentication (used can get it from the LOGIN endpoint response when this succeeds) \nThis 2-value string needs to be encoded to base64\n","type":"text"}],"url":{"raw":"https://{{base_url}}/api/AnalyticsDashboard?userID={{userID}}&applySecurity={{applySecurity}}&title={{title}}&url={{url}}","protocol":"https","host":["{{base_url}}"],"path":["api","AnalyticsDashboard"],"query":[{"key":"userID","value":"{{userID}}","description":"Darwin internal ID of the user to filter on."},{"key":"applySecurity","value":"{{applySecurity}}","description":"Possible values are 1 or 0.\n\n1 means system analytics dashboards that apply permissions will be included\n0 means the API will return all records\n\nIf this parameter is not provided, 0 will be assumed"},{"key":"title","value":"{{title}}","description":"The title for system analytics dashboards. \n\nIf used, it will filter the results to only show system analytics dashboards when the title contains this value."},{"key":"url","value":"{{url}}","description":"The url unique for system analytics dashboards. \n\nIf used, it will filter the results to only show system analytics dashboards when the url contains this value."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Thu, 09 Sep 2021 21:47:18 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"dashboardID\": 10,\n        \"title\": \"Main\",\n        \"url\": \"https://analytics.zoho.com/open-view/2111548000000376760/108571f982d59bc037bb3e71652b26f0?ZOHO_CRITERIA=%22UserOffice%22.%22userID%22=%2722248%27%20and%20%22UserOffice%22.%22databaseID%22=%27211%27\",\n        \"typeID\": 21728,\n        \"type\": \"System\",\n        \"reportGUID\": \"18AB62D1-7FAB-462D-A793-0DB15324D7B1\",\n        \"datasetID\": null,\n        \"groupID\": null,\n        \"embedToken\": null,\n        \"htmlViewer\": null,\n        \"userID\": 0,\n        \"createDate\": \"2020-10-12T23:32:24.617\",\n        \"createdBy\": \"dwinner\",\n        \"modifyDate\": \"2020-11-23T17:19:26.967\",\n        \"modifyBy\": \"dwinner\",\n        \"deleteDate\": null,\n        \"deletedBy\": null\n    },\n    {\n        \"dashboardID\": 11,\n        \"title\": \"Closings\",\n        \"url\": \"https://analytics.zoho.com/open-view/2111548000000378369/3ca22cdcd71175ceb80b9de85bacd7ac?ZOHO_CRITERIA=%22UserOffice%22.%22userID%22=%2722248%27%20and%20%22UserOffice%22.%22databaseID%22=%27211%27\",\n        \"typeID\": 21728,\n        \"type\": \"System\",\n        \"reportGUID\": \"F310B412-EE10-4185-8D98-1102E998F164\",\n        \"datasetID\": null,\n        \"groupID\": null,\n        \"embedToken\": null,\n        \"htmlViewer\": null,\n        \"userID\": 0,\n        \"createDate\": \"2020-10-12T23:32:24.663\",\n        \"createdBy\": \"dwinner\",\n        \"modifyDate\": \"2020-11-23T17:19:26.967\",\n        \"modifyBy\": \"dwinner\",\n        \"deleteDate\": null,\n        \"deletedBy\": null\n    },\n    {\n        \"dashboardID\": 12,\n        \"title\": \"Pending\",\n        \"url\": \"https://analytics.zoho.com/open-view/2111548000000390749/be2d2033340d641ac782d8fcf174f6ad?ZOHO_CRITERIA=%22UserOffice%22.%22userID%22=%2722248%27%20and%20%22UserOffice%22.%22databaseID%22=%27211%27\",\n        \"typeID\": 21728,\n        \"type\": \"System\",\n        \"reportGUID\": \"9EB9B8FF-1EE6-4EEC-92FA-88FDA3A08C13\",\n        \"datasetID\": null,\n        \"groupID\": null,\n        \"embedToken\": null,\n        \"htmlViewer\": null,\n        \"userID\": 0,\n        \"createDate\": \"2020-10-12T23:32:24.68\",\n        \"createdBy\": \"dwinner\",\n        \"modifyDate\": \"2020-11-23T17:19:26.967\",\n        \"modifyBy\": \"dwinner\",\n        \"deleteDate\": null,\n        \"deletedBy\": null\n    },\n    {\n        \"dashboardID\": 13,\n        \"title\": \"Financial\",\n        \"url\": \"https://analytics.zoho.com/open-view/2111548000000394638/2053b72a442accfba27d2208605585b9?ZOHO_CRITERIA=%22UserOffice%22.%22userID%22=%2722248%27%20and%20%22UserOffice%22.%22databaseID%22=%27211%27\",\n        \"typeID\": 21728,\n        \"type\": \"System\",\n        \"reportGUID\": \"A913DC9D-8BD4-4EE8-9EB3-B9BB8BC8B61B\",\n        \"datasetID\": null,\n        \"groupID\": null,\n        \"embedToken\": null,\n        \"htmlViewer\": null,\n        \"userID\": 0,\n        \"createDate\": \"2020-10-12T23:32:24.68\",\n        \"createdBy\": \"dwinner\",\n        \"modifyDate\": \"2020-11-23T17:19:26.967\",\n        \"modifyBy\": \"dwinner\",\n        \"deleteDate\": null,\n        \"deletedBy\": null\n    },\n    {\n        \"dashboardID\": 14,\n        \"title\": \"Recruits\",\n        \"url\": \"https://analytics.zoho.com/open-view/2111548000000389554/8f74c26de556c52ed185a3d5d34fb17d?ZOHO_CRITERIA=%22UserOffice%22.%22userID%22=%2722248%27%20and%20%22UserOffice%22.%22databaseID%22=%27211%27\",\n        \"typeID\": 21728,\n        \"type\": \"System\",\n        \"reportGUID\": \"F0ED642F-9F10-4315-B83D-23597ECA927D\",\n        \"datasetID\": null,\n        \"groupID\": null,\n        \"embedToken\": null,\n        \"htmlViewer\": null,\n        \"userID\": 0,\n        \"createDate\": \"2020-10-12T23:32:24.693\",\n        \"createdBy\": \"dwinner\",\n        \"modifyDate\": \"2020-11-23T17:19:26.967\",\n        \"modifyBy\": \"dwinner\",\n        \"deleteDate\": null,\n        \"deletedBy\": null\n    },\n    {\n        \"dashboardID\": 15,\n        \"title\": \"Performance\",\n        \"url\": \"https://analytics.zoho.com/open-view/2111548000000421507/29de01e30d5d119a8aed4df3bae45c14?ZOHO_CRITERIA=%22UserOffice%22.%22userID%22=%2722248%27%20and%20%22UserOffice%22.%22databaseID%22=%27211%27\",\n        \"typeID\": 21728,\n        \"type\": \"System\",\n        \"reportGUID\": \"1E2228AB-48A3-4E73-A85E-7E191EE1BEEF\",\n        \"datasetID\": null,\n        \"groupID\": null,\n        \"embedToken\": null,\n        \"htmlViewer\": null,\n        \"userID\": 0,\n        \"createDate\": \"2020-10-12T23:32:24.71\",\n        \"createdBy\": \"dwinner\",\n        \"modifyDate\": \"2020-11-23T17:19:26.967\",\n        \"modifyBy\": \"dwinner\",\n        \"deleteDate\": null,\n        \"deletedBy\": null\n    }\n]"}],"_postman_id":"ba8ac7cd-8b1a-4895-96bc-c94ee056ba36"}],"id":"0a478159-e5b8-4073-bd37-b10643622476","description":"<p>The <code>Dashboard</code> object allows you to get information about all the dashboards types that are part of any given client in a company.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"05c1f144-97f3-4f2a-9b08-c0dc906638b8","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"8142b6b1-06e6-4629-84a3-511c8efd5904","type":"text/javascript","exec":[""]}}],"_postman_id":"0a478159-e5b8-4073-bd37-b10643622476"},{"name":"Sandbox (beta)","item":[{"name":"Create Sandbox","id":"699fe3c9-1022-4118-9040-be3a6dfc8ab1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"url":"https://{{base_url}}/api/sandbox","description":"<p>This Resource will allow you to create a Sandbox in which to test the different Darwin RESTful API resources.</p>\n<p>A <code>{{SandboxID}}</code> will be issued in response and can be used to later query the status of the Sandbox generation.</p>\n","urlObject":{"protocol":"https","path":["api","sandbox"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"699fe3c9-1022-4118-9040-be3a6dfc8ab1"},{"name":"Drop Sandbox","id":"d8cad28b-c0f9-453a-b068-29f1a4b9903e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{token}}"}]},"isInherited":false},"method":"DELETE","header":[],"url":"https://{{base_url}}/api/sandbox","description":"<p>This Resource will allow you to delete a previously created Sandbox by passing the <code>{{SandboxID}}</code> previously issued when calling the <code>Create Sandbox</code> resource.</p>\n<p>You can only remove a Sandbox once its status is \"COMPLETED\" or \"FAILED\". If the status is \"PENDING\" or \"IN PROGRESS\", the sandbox will not be able to be removed and calling this resource will result in an error.</p>\n","urlObject":{"protocol":"https","path":["api","sandbox"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d8cad28b-c0f9-453a-b068-29f1a4b9903e"},{"name":"Get Sandbox","id":"072d114f-aa82-424d-a5b6-bb1c4561b88f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://{{base_url}}/api/sandbox/{{SandboxID}}","description":"<p>This Resource will allow you check the status of the generation of the Sandbox by passing the <code>{{SandboxID}}</code> previously issued when calling the <code>Create Sandbox</code> resource.</p>\n<p>The possible statuses are:</p>\n<ul>\n<li><strong>PENDING</strong>: If the Sandbox generation is still in the queue has not started yet</li>\n<li><strong>IN PROGRESS</strong>: If the Sandbox generation has already started but has not yet completed</li>\n<li><strong>FAILED</strong>: If the Sandbox generation has been completed but with errors</li>\n<li><strong>COMPLETED</strong>: If the Sandbox generation has been successfully completed</li>\n</ul>\n<p>Only when the Status retrieved is \"COMPLETED\", additional information will be available in the response:</p>\n<ul>\n<li>api_key</li>\n<li>client_id</li>\n<li>client_secret</li>\n<li>username</li>\n<li>password</li>\n</ul>\n<p>These will be the values and keys to use in order to connect to the Sandbox and use any of the Darwin RESTful API resources.</p>\n<p><strong>Note:</strong> Trying to create a sandbox by passing a <code>{{token}}</code> already generated using the sandbox keys, will return an error.</p>\n","urlObject":{"protocol":"https","path":["api","sandbox","{{SandboxID}}"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"072d114f-aa82-424d-a5b6-bb1c4561b88f"}],"id":"0520fe6a-40bc-43c6-8f11-9f4d2d236dbc","_postman_id":"0520fe6a-40bc-43c6-8f11-9f4d2d236dbc","description":""},{"name":"Invoice","item":[{"name":"Add Invoice","id":"211df7cd-3cd4-4f17-8edb-440de4605ee0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"invoiceId\":0,\r\n    \"personId\":174919,\r\n    \"personName\":\"12 Name Street, Boston, MA, 02210\",\r\n    \"orderDate\":\"2022-12-15T14:01:28.3724959-05:00\",\r\n    \"posted\":false,\r\n    \"postedDate\":null,\r\n    \"orderTypeId\":187,\r\n    \"orderType\":\"Customer Prepayment\",\r\n    \"termId\":19541,\"term\":null,\r\n    \"originalARPaymentId\":null,\r\n    \"checkbookId\":null,\r\n    \"depositDate\":null,\r\n    \"propertyId\":null,\r\n    \"propertyAddress\":null,\r\n    \"orderTotal\":169.5000,\r\n    \"amountPaid\":0.0,\r\n    \"datePaid\":null,\r\n    \"balance\":0.0,\r\n    \"billDeductAmount\":0.0,\r\n    \"amountToPay\":0.0,\r\n    \"select\":false,\r\n    \"paid\":false,\r\n    \"orderNumber\":null,\r\n    \"locked\":false,\r\n    \"dueDate\":null,\r\n    \"companyId\":14,\r\n    \"companyName\":\"BHG LA\",\r\n    \"isTemplate\":false,\r\n    \"templateName\":null,\r\n    \"recurring\":false,\r\n    \"recurringId\":0,\r\n    \"recurringType\":null,\r\n    \"recurringInvoiceGroupId\":null,\r\n    \"taxFlat\":false,\r\n    \"amountTaxFlat\":0.0,\r\n    \"taxRate\":0.0,\r\n    \"createDate\":null,\r\n    \"createdBy\":null,\r\n    \"modifyDate\":null,\r\n    \"modifyBy\":null,\r\n    \"deleteDate\":null,\r\n    \"deletedBy\":null,\r\n    \"detail\":[\r\n        {\r\n            \"invoiceDetailId\":0,\r\n            \"invoiceId\":0,\r\n            \"orderDate\":\"0001-01-01T00:00:00\",\r\n            \"salesPrice\":150.0,\r\n            \"description\":\"copies\",\r\n            \"reimbursementDetailId\":null,\r\n            \"reimbursementType\":null,\r\n            \"accountId\":4,\r\n            \"account\":\"1-02111 - Modify whatever\",\r\n            \"jobId\":5272,\r\n            \"job\":\"BH Test Office\",\r\n            \"deductType\":null,\r\n            \"side\":null,\r\n            \"columnNumber\":null,\r\n            \"divisionId\":null,\r\n            \"division\":null,\r\n            \"locked\":null,\r\n            \"referenceSource\":null,\r\n            \"referenceID\":null,\r\n            \"isTax\":false,\r\n            \"isTaxExempt\":false,\r\n            \"createDate\":null,\r\n            \"createdBy\":null,\r\n            \"modifyDate\":null,\r\n            \"modifyBy\":null,\r\n            \"deleteDate\":null,\r\n            \"deleteBy\":null\r\n        },\r\n        {\r\n            \"invoiceDetailId\":0,\r\n            \"invoiceId\":0,\"orderDate\":\"0001-01-01T00:00:00\",\r\n            \"salesPrice\":19.5000,\r\n            \"description\":\"taxes\",\r\n            \"reimbursementDetailId\":null,\r\n            \"reimbursementType\":null,\r\n            \"accountId\":32,\"account\":null,\r\n            \"jobId\":5249,\"job\":null,\r\n            \"deductType\":null,\r\n            \"side\":null,\"columnNumber\":null,\r\n            \"divisionId\":null,\r\n            \"division\":null,\r\n            \"locked\":null,\r\n            \"referenceSource\":null,\r\n            \"referenceID\":null,\r\n            \"isTax\":true,\r\n            \"isTaxExempt\":false,\r\n            \"createDate\":null,\r\n            \"createdBy\":null,\r\n            \"modifyDate\":null,\r\n            \"modifyBy\":null,\r\n            \"deleteDate\":null,\r\n            \"deleteBy\":null\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{base_url}}/api/invoice","description":"<p>This Resource will allow you to create an invoice record: company, customer, order type, order date, and data details as office/agent, description, account, and amount. It returns back the invoiceID generated and all registered fields.</p>\n","urlObject":{"protocol":"https","path":["api","invoice"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"d52a80df-77a0-46a5-986e-67eb35420ba0","name":"Add Invoice","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"invoiceId\":0,\r\n    \"personId\":174919,\r\n    \"personName\":\"12 Name Street, Boston, MA, 02210\",\r\n    \"orderDate\":\"2022-12-15T14:01:28.3724959-05:00\",\r\n    \"posted\":false,\r\n    \"postedDate\":null,\r\n    \"orderTypeId\":187,\r\n    \"orderType\":\"Customer Prepayment\",\r\n    \"termId\":19541,\"term\":null,\r\n    \"originalARPaymentId\":null,\r\n    \"checkbookId\":null,\r\n    \"depositDate\":null,\r\n    \"propertyId\":null,\r\n    \"propertyAddress\":null,\r\n    \"orderTotal\":169.5000,\r\n    \"amountPaid\":0.0,\r\n    \"datePaid\":null,\r\n    \"balance\":0.0,\r\n    \"billDeductAmount\":0.0,\r\n    \"amountToPay\":0.0,\r\n    \"select\":false,\r\n    \"paid\":false,\r\n    \"orderNumber\":null,\r\n    \"locked\":false,\r\n    \"dueDate\":null,\r\n    \"companyId\":14,\r\n    \"companyName\":\"BHG LA\",\r\n    \"isTemplate\":false,\r\n    \"templateName\":null,\r\n    \"recurring\":false,\r\n    \"recurringId\":0,\r\n    \"recurringType\":null,\r\n    \"recurringInvoiceGroupId\":null,\r\n    \"taxFlat\":false,\r\n    \"amountTaxFlat\":0.0,\r\n    \"taxRate\":0.0,\r\n    \"createDate\":null,\r\n    \"createdBy\":null,\r\n    \"modifyDate\":null,\r\n    \"modifyBy\":null,\r\n    \"deleteDate\":null,\r\n    \"deletedBy\":null,\r\n    \"detail\":[\r\n        {\r\n            \"invoiceDetailId\":0,\r\n            \"invoiceId\":0,\r\n            \"orderDate\":\"0001-01-01T00:00:00\",\r\n            \"salesPrice\":150.0,\r\n            \"description\":\"copies\",\r\n            \"reimbursementDetailId\":null,\r\n            \"reimbursementType\":null,\r\n            \"accountId\":4,\r\n            \"account\":\"1-02111 - Modify whatever\",\r\n            \"jobId\":5272,\r\n            \"job\":\"BH Test Office\",\r\n            \"deductType\":null,\r\n            \"side\":null,\r\n            \"columnNumber\":null,\r\n            \"divisionId\":null,\r\n            \"division\":null,\r\n            \"locked\":null,\r\n            \"referenceSource\":null,\r\n            \"referenceID\":null,\r\n            \"isTax\":false,\r\n            \"isTaxExempt\":false,\r\n            \"createDate\":null,\r\n            \"createdBy\":null,\r\n            \"modifyDate\":null,\r\n            \"modifyBy\":null,\r\n            \"deleteDate\":null,\r\n            \"deleteBy\":null\r\n        },\r\n        {\r\n            \"invoiceDetailId\":0,\r\n            \"invoiceId\":0,\"orderDate\":\"0001-01-01T00:00:00\",\r\n            \"salesPrice\":19.5000,\r\n            \"description\":\"taxes\",\r\n            \"reimbursementDetailId\":null,\r\n            \"reimbursementType\":null,\r\n            \"accountId\":32,\"account\":null,\r\n            \"jobId\":5249,\"job\":null,\r\n            \"deductType\":null,\r\n            \"side\":null,\"columnNumber\":null,\r\n            \"divisionId\":null,\r\n            \"division\":null,\r\n            \"locked\":null,\r\n            \"referenceSource\":null,\r\n            \"referenceID\":null,\r\n            \"isTax\":true,\r\n            \"isTaxExempt\":false,\r\n            \"createDate\":null,\r\n            \"createdBy\":null,\r\n            \"modifyDate\":null,\r\n            \"modifyBy\":null,\r\n            \"deleteDate\":null,\r\n            \"deleteBy\":null\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{base_url}}/api/invoice"},"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":"Server","value":"Kestrel"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 10 Jan 2023 16:46:24 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"invoiceId\": 87208,\n    \"personId\": 174919,\n    \"personName\": \"12 Name Street, Boston, MA, 02210\",\n    \"orderDate\": \"2022-12-15T00:00:00\",\n    \"posted\": false,\n    \"postedDate\": null,\n    \"orderTypeId\": 187,\n    \"orderType\": \"Customer Prepayment\",\n    \"termId\": 19541,\n    \"term\": \"0217856590s\",\n    \"originalARPaymentId\": null,\n    \"checkbookId\": null,\n    \"depositDate\": null,\n    \"propertyId\": null,\n    \"propertyAddress\": null,\n    \"orderTotal\": 169.5,\n    \"amountPaid\": 0,\n    \"datePaid\": null,\n    \"balance\": 0,\n    \"billDeductAmount\": 0,\n    \"amountToPay\": 0,\n    \"select\": false,\n    \"paid\": false,\n    \"orderNumber\": null,\n    \"locked\": false,\n    \"dueDate\": null,\n    \"companyId\": 14,\n    \"companyName\": \"BHG LA\",\n    \"isTemplate\": false,\n    \"templateName\": null,\n    \"recurring\": false,\n    \"recurringId\": 0,\n    \"recurringType\": null,\n    \"recurringInvoiceGroupId\": null,\n    \"taxFlat\": false,\n    \"amountTaxFlat\": 0,\n    \"taxRate\": 0,\n    \"createDate\": \"2023-01-10T11:46:26.603\",\n    \"createdBy\": \"saDeploy\",\n    \"modifyDate\": \"2023-01-10T11:46:26.62\",\n    \"modifyBy\": \"saDeploy\",\n    \"deleteDate\": null,\n    \"deletedBy\": null,\n    \"detail\": [\n        {\n            \"invoiceDetailId\": 479343,\n            \"invoiceId\": 87208,\n            \"orderDate\": \"0001-01-01T00:00:00\",\n            \"salesPrice\": 150,\n            \"description\": \"copies\",\n            \"reimbursementDetailId\": null,\n            \"reimbursementType\": null,\n            \"accountId\": 4,\n            \"account\": \"1-02111 - Modify whatever\",\n            \"jobId\": 5272,\n            \"job\": \"BH Test Office\",\n            \"deductType\": null,\n            \"side\": null,\n            \"columnNumber\": 0,\n            \"divisionId\": null,\n            \"division\": null,\n            \"locked\": false,\n            \"referenceSource\": null,\n            \"referenceID\": null,\n            \"isTax\": false,\n            \"isTaxExempt\": false,\n            \"createDate\": \"2023-01-10T11:46:26.637\",\n            \"createdBy\": \"saDeploy\",\n            \"modifyDate\": null,\n            \"modifyBy\": null,\n            \"deleteDate\": null,\n            \"deleteBy\": null\n        },\n        {\n            \"invoiceDetailId\": 479344,\n            \"invoiceId\": 87208,\n            \"orderDate\": \"0001-01-01T00:00:00\",\n            \"salesPrice\": 19.5,\n            \"description\": \"taxes\",\n            \"reimbursementDetailId\": null,\n            \"reimbursementType\": null,\n            \"accountId\": 32,\n            \"account\": \"1-1355 - Sales Tax Deposit\",\n            \"jobId\": 5249,\n            \"job\": \"Company03 - Corporate\",\n            \"deductType\": null,\n            \"side\": null,\n            \"columnNumber\": 0,\n            \"divisionId\": null,\n            \"division\": null,\n            \"locked\": false,\n            \"referenceSource\": null,\n            \"referenceID\": null,\n            \"isTax\": true,\n            \"isTaxExempt\": false,\n            \"createDate\": \"2023-01-10T11:46:26.637\",\n            \"createdBy\": \"saDeploy\",\n            \"modifyDate\": null,\n            \"modifyBy\": null,\n            \"deleteDate\": null,\n            \"deleteBy\": null\n        }\n    ]\n}"}],"_postman_id":"211df7cd-3cd4-4f17-8edb-440de4605ee0"},{"name":"Edit Invoice","id":"f4062f52-e2ac-4014-9030-fc16610f8cdb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{token}}"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"invoiceId\":87189,\r\n    \"personId\":174919,\r\n    \"personName\":\"12 Name Street, Boston, MA, 02210\",\r\n    \"orderDate\":\"2022-12-15T00:00:00\",\r\n    \"posted\":false,\r\n    \"postedDate\":null,\r\n    \"orderTypeId\":187,\r\n    \"orderType\":\"Customer Prepayment\",\r\n    \"termId\":19541,\"term\":\"0217856590s\",\r\n    \"originalARPaymentId\":null,\r\n    \"checkbookId\":null,\r\n    \"depositDate\":null,\r\n    \"propertyId\":null,\r\n    \"propertyAddress\":null,\r\n    \"orderTotal\":1299.500000,\r\n    \"amountPaid\":0.00,\r\n    \"datePaid\":null,\r\n    \"balance\":0.0,\r\n    \"billDeductAmount\":0.0,\r\n    \"amountToPay\":0.0,\r\n    \"select\":false,\r\n    \"paid\":false,\r\n    \"orderNumber\":null,\r\n    \"locked\":false,\r\n    \"dueDate\":null,\r\n    \"companyId\":14,\r\n    \"companyName\":\"BHG LA\",\r\n    \"isTemplate\":false,\r\n    \"templateName\":null,\r\n    \"recurring\":false,\r\n    \"recurringId\":0,\r\n    \"recurringType\":null,\r\n    \"recurringInvoiceGroupId\":null,\r\n    \"taxFlat\":false,\r\n    \"amountTaxFlat\":0.0,\r\n    \"taxRate\":0.0,\r\n    \"createDate\":\"2022-12-15T14:11:09.587\",\r\n    \"createdBy\":\"saDeploy\",\r\n    \"modifyDate\":\"2022-12-15T14:11:09.697\",\r\n    \"modifyBy\":\"saDeploy\",\r\n    \"deleteDate\":null,\r\n    \"deletedBy\":null,\r\n    \"detail\":[\r\n        {\r\n            \"invoiceDetailId\":479194,\r\n            \"invoiceId\":87189,\r\n            \"orderDate\":\"0001-01-01T00:00:00\",\r\n            \"salesPrice\":150.00,\r\n            \"description\":\"copies\",\r\n            \"reimbursementDetailId\":null,\r\n            \"reimbursementType\":null,\r\n            \"accountId\":4,\r\n            \"account\":\"1-02111 - Modify whatever\",\r\n            \"jobId\":5272,\r\n            \"job\":\"BH Test Office\",\r\n            \"deductType\":null,\r\n            \"side\":null,\r\n            \"columnNumber\":0,\r\n            \"divisionId\":null,\r\n            \"division\":null,\r\n            \"locked\":false,\r\n            \"referenceSource\":null,\r\n            \"referenceID\":null,\r\n            \"isTax\":false,\r\n            \"isTaxExempt\":false,\r\n            \"createDate\":\"2022-12-15T14:11:09.713\",\r\n            \"createdBy\":\"saDeploy\",\r\n            \"modifyDate\":null,\r\n            \"modifyBy\":null,\r\n            \"deleteDate\":null,\r\n            \"deleteBy\":null\r\n        },\r\n        {\r\n            \"invoiceDetailId\":0,\r\n            \"invoiceId\":0,\r\n            \"orderDate\":\"0001-01-01T00:00:00\",\r\n            \"salesPrice\":1000.0,\r\n            \"description\":\"printer\",\r\n            \"reimbursementDetailId\":null,\r\n            \"reimbursementType\":null,\r\n            \"accountId\":13,\r\n            \"account\":\"1-1101 - I/C Rec - Scottsdale Co\",\r\n            \"jobId\":5272,\r\n            \"job\":\"BH Test Office\",\r\n            \"deductType\":null,\r\n            \"side\":null,\r\n            \"columnNumber\":null,\r\n            \"divisionId\":null,\r\n            \"division\":null,\r\n            \"locked\":null,\r\n            \"referenceSource\":null,\r\n            \"referenceID\":null,\r\n            \"isTax\":false,\r\n            \"isTaxExempt\":false,\r\n            \"createDate\":null,\r\n            \"createdBy\":null,\r\n            \"modifyDate\":null,\r\n            \"modifyBy\":null,\r\n            \"deleteDate\":null,\r\n            \"deleteBy\":null\r\n        },\r\n        {\r\n            \"invoiceDetailId\":479195,\r\n            \"invoiceId\":87189,\"orderDate\":\"0001-01-01T00:00:00\",\r\n            \"salesPrice\":149.500000,\"description\":\"taxes\",\r\n            \"reimbursementDetailId\":null,\r\n            \"reimbursementType\":null,\r\n            \"accountId\":32,\r\n            \"account\":\"1-1355 - Sales Tax Deposit\",\r\n            \"jobId\":5249,\"job\":\"Company03 - Corporate\",\r\n            \"deductType\":null,\"side\":null,\r\n            \"columnNumber\":0,\r\n            \"divisionId\":null,\r\n            \"division\":null,\r\n            \"locked\":false,\r\n            \"referenceSource\":null,\r\n            \"referenceID\":null,\r\n            \"isTax\":true,\r\n            \"isTaxExempt\":false,\r\n            \"createDate\":\"2022-12-15T14:11:09.713\",\r\n            \"createdBy\":\"saDeploy\",\r\n            \"modifyDate\":null,\r\n            \"modifyBy\":null,\r\n            \"deleteDate\":null,\r\n            \"deleteBy\":null\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{base_url}}/api/invoice/{{invoiceId}}","description":"<p>StartFragment</p>\n<p>This resource will allow you to update a invoice and its detail, indicating the id of the record in the system.</p>\n<p>EndFragment</p>\n","urlObject":{"protocol":"https","path":["api","invoice","{{invoiceId}}"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"4da97947-cf43-4fd1-8082-89c5381e1199","name":"Edit Invoice","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"invoiceId\":87189,\r\n    \"personId\":174919,\r\n    \"personName\":\"12 Name Street, Boston, MA, 02210\",\r\n    \"orderDate\":\"2022-12-15T00:00:00\",\r\n    \"posted\":false,\r\n    \"postedDate\":null,\r\n    \"orderTypeId\":187,\r\n    \"orderType\":\"Customer Prepayment\",\r\n    \"termId\":19541,\"term\":\"0217856590s\",\r\n    \"originalARPaymentId\":null,\r\n    \"checkbookId\":null,\r\n    \"depositDate\":null,\r\n    \"propertyId\":null,\r\n    \"propertyAddress\":null,\r\n    \"orderTotal\":1299.500000,\r\n    \"amountPaid\":0.00,\r\n    \"datePaid\":null,\r\n    \"balance\":0.0,\r\n    \"billDeductAmount\":0.0,\r\n    \"amountToPay\":0.0,\r\n    \"select\":false,\r\n    \"paid\":false,\r\n    \"orderNumber\":null,\r\n    \"locked\":false,\r\n    \"dueDate\":null,\r\n    \"companyId\":14,\r\n    \"companyName\":\"BHG LA\",\r\n    \"isTemplate\":false,\r\n    \"templateName\":null,\r\n    \"recurring\":false,\r\n    \"recurringId\":0,\r\n    \"recurringType\":null,\r\n    \"recurringInvoiceGroupId\":null,\r\n    \"taxFlat\":false,\r\n    \"amountTaxFlat\":0.0,\r\n    \"taxRate\":0.0,\r\n    \"createDate\":\"2022-12-15T14:11:09.587\",\r\n    \"createdBy\":\"saDeploy\",\r\n    \"modifyDate\":\"2022-12-15T14:11:09.697\",\r\n    \"modifyBy\":\"saDeploy\",\r\n    \"deleteDate\":null,\r\n    \"deletedBy\":null,\r\n    \"detail\":[\r\n        {\r\n            \"invoiceDetailId\":479194,\r\n            \"invoiceId\":87189,\r\n            \"orderDate\":\"0001-01-01T00:00:00\",\r\n            \"salesPrice\":150.00,\r\n            \"description\":\"copies\",\r\n            \"reimbursementDetailId\":null,\r\n            \"reimbursementType\":null,\r\n            \"accountId\":4,\r\n            \"account\":\"1-02111 - Modify whatever\",\r\n            \"jobId\":5272,\r\n            \"job\":\"BH Test Office\",\r\n            \"deductType\":null,\r\n            \"side\":null,\r\n            \"columnNumber\":0,\r\n            \"divisionId\":null,\r\n            \"division\":null,\r\n            \"locked\":false,\r\n            \"referenceSource\":null,\r\n            \"referenceID\":null,\r\n            \"isTax\":false,\r\n            \"isTaxExempt\":false,\r\n            \"createDate\":\"2022-12-15T14:11:09.713\",\r\n            \"createdBy\":\"saDeploy\",\r\n            \"modifyDate\":null,\r\n            \"modifyBy\":null,\r\n            \"deleteDate\":null,\r\n            \"deleteBy\":null\r\n        },\r\n        {\r\n            \"invoiceDetailId\":0,\r\n            \"invoiceId\":0,\r\n            \"orderDate\":\"0001-01-01T00:00:00\",\r\n            \"salesPrice\":1000.0,\r\n            \"description\":\"printer\",\r\n            \"reimbursementDetailId\":null,\r\n            \"reimbursementType\":null,\r\n            \"accountId\":13,\r\n            \"account\":\"1-1101 - I/C Rec - Scottsdale Co\",\r\n            \"jobId\":5272,\r\n            \"job\":\"BH Test Office\",\r\n            \"deductType\":null,\r\n            \"side\":null,\r\n            \"columnNumber\":null,\r\n            \"divisionId\":null,\r\n            \"division\":null,\r\n            \"locked\":null,\r\n            \"referenceSource\":null,\r\n            \"referenceID\":null,\r\n            \"isTax\":false,\r\n            \"isTaxExempt\":false,\r\n            \"createDate\":null,\r\n            \"createdBy\":null,\r\n            \"modifyDate\":null,\r\n            \"modifyBy\":null,\r\n            \"deleteDate\":null,\r\n            \"deleteBy\":null\r\n        },\r\n        {\r\n            \"invoiceDetailId\":479195,\r\n            \"invoiceId\":87189,\"orderDate\":\"0001-01-01T00:00:00\",\r\n            \"salesPrice\":149.500000,\"description\":\"taxes\",\r\n            \"reimbursementDetailId\":null,\r\n            \"reimbursementType\":null,\r\n            \"accountId\":32,\r\n            \"account\":\"1-1355 - Sales Tax Deposit\",\r\n            \"jobId\":5249,\"job\":\"Company03 - Corporate\",\r\n            \"deductType\":null,\"side\":null,\r\n            \"columnNumber\":0,\r\n            \"divisionId\":null,\r\n            \"division\":null,\r\n            \"locked\":false,\r\n            \"referenceSource\":null,\r\n            \"referenceID\":null,\r\n            \"isTax\":true,\r\n            \"isTaxExempt\":false,\r\n            \"createDate\":\"2022-12-15T14:11:09.713\",\r\n            \"createdBy\":\"saDeploy\",\r\n            \"modifyDate\":null,\r\n            \"modifyBy\":null,\r\n            \"deleteDate\":null,\r\n            \"deleteBy\":null\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{base_url}}/api/invoice/{{invoiceId}}"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"Kestrel"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 10 Jan 2023 16:45:52 GMT"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"f4062f52-e2ac-4014-9030-fc16610f8cdb"},{"name":"Delete Invoice","id":"e25c8ffa-7fb4-43bc-8c9e-bbb2f0245f48","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{token}}"}]},"isInherited":false},"method":"DELETE","header":[],"url":"https://{{base_url}}/api/invoice/{{invoiceId}}","description":"<p>StartFragment</p>\n<p>This resource will allow you to delete a invoice and its detail, indicating the id of the record in the system.</p>\n<p>EndFragment</p>\n","urlObject":{"protocol":"https","path":["api","invoice","{{invoiceId}}"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"ceb65761-9af4-44f9-9bf4-7d246f22c425","name":"Delete Invoice","originalRequest":{"method":"DELETE","header":[],"url":"https://{{base_url}}/api/invoice/{{invoiceId}}"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"Kestrel"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 10 Jan 2023 16:50:02 GMT"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"e25c8ffa-7fb4-43bc-8c9e-bbb2f0245f48"}],"id":"6128d85d-7d0a-4bb9-a9fa-169464927e0b","_postman_id":"6128d85d-7d0a-4bb9-a9fa-169464927e0b","description":""},{"name":"Notification","item":[{"name":"Get entity","id":"966889bc-a9ca-4aed-95ee-1e69b3996c4c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{base_url}}/api/codeValue","urlObject":{"protocol":"https","path":["api","codeValue"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"144d070d-7e3d-4fcd-98ce-f51b6a54ee05","name":"Get entity","originalRequest":{"method":"GET","header":[],"url":"https://{{base_url}}/api/codeValue"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"966889bc-a9ca-4aed-95ee-1e69b3996c4c"}],"id":"281eb0c2-0748-48fe-a8c7-cb203643d605","_postman_id":"281eb0c2-0748-48fe-a8c7-cb203643d605","description":""}],"event":[{"listen":"prerequest","script":{"id":"495a550f-0507-4981-83ac-277f2378c1be","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f4be64e2-8472-40ab-8220-17a86805a6b4","type":"text/javascript","exec":[""]}}],"variable":[{"key":"qaControl1","value":""},{"key":"agentOfficeID","value":"0"}]}